<!-- =========================================================
     MRs TEXTILES
     BED SHEETS & COMFORTERS
     INFORMATIVE / CORPORATE PAGE
     
     Elementor HTML Widget Ready
     Color Scheme: Light Grey / White / Charcoal
     
     IMPORTANT:
     Replace the image URLs marked "REPLACE_WITH_YOUR_IMAGE_URL"
     with the actual images from your WordPress Media Library.
========================================================= -->

<div id="mrs-bed-bedding">

<style>

/* =========================================================
   GLOBAL
========================================================= */

#mrs-bed-bedding {
    --mrs-bg: #f4f5f6;
    --mrs-light: #f8f9fa;
    --mrs-white: #ffffff;
    --mrs-dark: #222629;
    --mrs-text: #4d5357;
    --mrs-muted: #747b80;
    --mrs-border: #e1e4e6;
    --mrs-accent: #777e83;
    --mrs-accent-dark: #555c61;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--mrs-text);
    background: var(--mrs-white);
    line-height: 1.7;
    width: 100%;
    overflow: hidden;
}

#mrs-bed-bedding *,
#mrs-bed-bedding *::before,
#mrs-bed-bedding *::after {
    box-sizing: border-box;
}

#mrs-bed-bedding img {
    max-width: 100%;
    display: block;
}

#mrs-bed-bedding a {
    text-decoration: none;
}

.mrs-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.mrs-hero {
    position: relative;
    min-height: 610px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(25, 28, 30, .82) 0%,
            rgba(25, 28, 30, .62) 45%,
            rgba(25, 28, 30, .18) 100%
        ),
        url("REPLACE_WITH_YOUR_BED_SHEET_HERO_IMAGE_URL")
        center center / cover no-repeat;
}

.mrs-hero-content {
    max-width: 690px;
    padding: 100px 0;
    color: #fff;
}

.mrs-small-title {
    display: inline-block;

    color: #e7e9ea;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 16px;
}

.mrs-hero h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.06;
    font-weight: 600;

    margin: 0 0 22px;
}

.mrs-hero p {
    color: #f0f1f2;
    font-size: 18px;
    line-height: 1.8;

    max-width: 620px;
    margin: 0;
}

.mrs-hero-line {
    width: 70px;
    height: 3px;

    background: #fff;

    margin: 28px 0;
}


/* =========================================================
   INTRO STRIP
========================================================= */

.mrs-intro {
    background: var(--mrs-white);
    padding: 75px 0;
}

.mrs-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.mrs-section-label {
    color: var(--mrs-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.mrs-intro h2 {
    color: var(--mrs-dark);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;

    margin: 10px 0 20px;
}

.mrs-intro p {
    color: var(--mrs-text);
    font-size: 16px;
    margin: 0 0 16px;
}

.mrs-intro-image {
    border-radius: 4px;
    overflow: hidden;
    background: #ddd;
}

.mrs-intro-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}


/* =========================================================
   STATS
========================================================= */

.mrs-stats {
    background: var(--mrs-bg);
    border-top: 1px solid var(--mrs-border);
    border-bottom: 1px solid var(--mrs-border);
}

.mrs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mrs-stat {
    text-align: center;
    padding: 35px 20px;

    border-right: 1px solid var(--mrs-border);
}

.mrs-stat:last-child {
    border-right: 0;
}

.mrs-stat-number {
    display: block;

    color: var(--mrs-dark);
    font-size: 30px;
    font-weight: 700;
}

.mrs-stat-text {
    color: var(--mrs-muted);
    font-size: 13px;
}


/* =========================================================
   PRODUCT INTRO
========================================================= */

.mrs-products-section {
    background: var(--mrs-light);
    padding: 85px 0;
}

.mrs-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.mrs-heading h2 {
    color: var(--mrs-dark);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;

    margin: 8px 0 15px;
}

.mrs-heading p {
    color: var(--mrs-muted);
    font-size: 15px;
    margin: 0;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.mrs-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.mrs-product-card {
    background: var(--mrs-white);

    border: 1px solid var(--mrs-border);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.mrs-product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.07);
}

.mrs-product-image {
    height: 270px;
    overflow: hidden;
    background: #e5e7e8;
}

.mrs-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.mrs-product-card:hover .mrs-product-image img {
    transform: scale(1.04);
}

.mrs-product-content {
    padding: 25px;
}

.mrs-product-content h3 {
    color: var(--mrs-dark);
    font-size: 21px;
    font-weight: 600;

    margin: 0 0 9px;
}

.mrs-product-content p {
    color: var(--mrs-muted);
    font-size: 14px;
    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   PRODUCT NUMBER
========================================================= */

.mrs-product-number {
    color: #a0a5a8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    margin-bottom: 7px;
}


/* =========================================================
   FEATURED PRODUCT
========================================================= */

.mrs-feature {
    padding: 90px 0;
    background: var(--mrs-white);
}

.mrs-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.mrs-feature-image {
    overflow: hidden;
    background: #ddd;
}

.mrs-feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.mrs-feature-content h2 {
    color: var(--mrs-dark);
    font-size: 40px;
    line-height: 1.2;

    margin: 10px 0 20px;
}

.mrs-feature-content p {
    color: var(--mrs-muted);
    font-size: 15px;
}

.mrs-feature-list {
    list-style: none;
    margin: 25px 0 0;
    padding: 0;
}

.mrs-feature-list li {
    position: relative;

    color: var(--mrs-text);
    font-size: 14px;

    padding: 8px 0 8px 27px;
}

.mrs-feature-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 8px;

    color: var(--mrs-accent-dark);
    font-weight: 700;
}


/* =========================================================
   FABRIC / PRODUCT DETAILS
========================================================= */

.mrs-details {
    background: var(--mrs-bg);
    padding: 85px 0;
}

.mrs-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mrs-detail-box {
    background: #fff;

    border: 1px solid var(--mrs-border);

    padding: 28px;
}

.mrs-detail-box h3 {
    color: var(--mrs-dark);
    font-size: 19px;
    font-weight: 600;

    margin: 0 0 10px;
}

.mrs-detail-box p {
    color: var(--mrs-muted);
    font-size: 14px;

    margin: 0;
}


/* =========================================================
   MANUFACTURING / CUSTOMIZATION
========================================================= */

.mrs-manufacturing {
    background: #25292c;
    color: #fff;

    padding: 90px 0;
}

.mrs-manufacturing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.mrs-manufacturing h2 {
    color: #fff;
    font-size: 42px;
    line-height: 1.2;

    margin: 10px 0 20px;
}

.mrs-manufacturing p {
    color: #cfd3d5;
    font-size: 15px;
}

.mrs-manufacturing-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 30px;
}

.mrs-manufacturing-item {
    border: 1px solid rgba(255,255,255,.12);
    padding: 18px;

    background: rgba(255,255,255,.04);
}

.mrs-manufacturing-item strong {
    display: block;

    color: #fff;
    font-size: 14px;

    margin-bottom: 4px;
}

.mrs-manufacturing-item span {
    color: #adb3b6;
    font-size: 12px;
}

.mrs-manufacturing-image {
    overflow: hidden;
}

.mrs-manufacturing-image img {
    width: 100%;
    height: 480px;

    object-fit: cover;
}


/* =========================================================
   QUALITY SECTION
========================================================= */

.mrs-quality {
    padding: 85px 0;
    background: #fff;
}

.mrs-quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.mrs-quality-box {
    padding: 30px 22px;

    border: 1px solid var(--mrs-border);
    background: var(--mrs-light);
}

.mrs-quality-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #cdd1d3;

    color: var(--mrs-dark);

    margin-bottom: 20px;

    font-size: 17px;
}

.mrs-quality-box h3 {
    color: var(--mrs-dark);
    font-size: 17px;

    margin: 0 0 8px;
}

.mrs-quality-box p {
    color: var(--mrs-muted);
    font-size: 13px;

    margin: 0;
}


/* =========================================================
   GALLERY
========================================================= */

.mrs-gallery {
    background: var(--mrs-light);
    padding: 85px 0;
}

.mrs-gallery-grid {
    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr;

    grid-template-rows:
        250px
        250px;

    gap: 12px;
}

.mrs-gallery-item {
    overflow: hidden;
    background: #ddd;
}

.mrs-gallery-item.large {
    grid-row: span 2;
}

.mrs-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.mrs-gallery-item:hover img {
    transform: scale(1.04);
}


/* =========================================================
   CTA
========================================================= */

.mrs-cta {
    background:
        linear-gradient(
            rgba(45,48,50,.93),
            rgba(45,48,50,.93)
        ),
        url("REPLACE_WITH_YOUR_CTA_IMAGE_URL")
        center / cover no-repeat;

    text-align: center;

    padding: 90px 20px;
}

.mrs-cta h2 {
    color: #fff;

    font-size: 42px;
    line-height: 1.2;

    margin: 0 0 15px;
}

.mrs-cta p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: #d9dddf;
    font-size: 15px;
}

.mrs-cta-button {
    display: inline-block;

    border: 1px solid #fff;

    color: #fff;

    padding: 13px 28px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .5px;

    transition: .25s;
}

.mrs-cta-button:hover {
    background: #fff;
    color: #2d3032;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .mrs-intro-grid,
    .mrs-feature-grid,
    .mrs-manufacturing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mrs-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mrs-quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mrs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mrs-stat:nth-child(2) {
        border-right: 0;
    }

    .mrs-stat {
        border-bottom: 1px solid var(--mrs-border);
    }

    .mrs-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px 250px;
    }

    .mrs-gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}


@media (max-width: 650px) {

    .mrs-hero {
        min-height: 550px;
    }

    .mrs-hero-content {
        padding: 70px 0;
    }

    .mrs-hero h1 {
        font-size: 43px;
    }

    .mrs-hero p {
        font-size: 15px;
    }

    .mrs-intro,
    .mrs-feature,
    .mrs-details,
    .mrs-quality,
    .mrs-gallery,
    .mrs-manufacturing,
    .mrs-products-section {
        padding: 60px 0;
    }

    .mrs-intro h2,
    .mrs-heading h2,
    .mrs-feature-content h2,
    .mrs-manufacturing h2,
    .mrs-cta h2 {
        font-size: 31px;
    }

    .mrs-product-grid {
        grid-template-columns: 1fr;
    }

    .mrs-details-grid {
        grid-template-columns: 1fr;
    }

    .mrs-quality-grid {
        grid-template-columns: 1fr;
    }

    .mrs-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mrs-stat {
        padding: 25px 10px;
    }

    .mrs-stat-number {
        font-size: 24px;
    }

    .mrs-manufacturing-list {
        grid-template-columns: 1fr;
    }

    .mrs-gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }

    .mrs-gallery-item.large {
        grid-column: span 2;
    }

    .mrs-intro-image img,
    .mrs-feature-image img,
    .mrs-manufacturing-image img {
        height: 350px;
    }
}

</style>


<!-- =========================================================
     HERO
========================================================= -->

<section class="mrs-hero">

    <div class="mrs-container">

        <div class="mrs-hero-content">

            <span class="mrs-small-title">
                MRs Textiles
            </span>

            <h1>
                Bed Sheets &amp;<br>
                Comforters
            </h1>

            <div class="mrs-hero-line"></div>

            <p>
                Quality bedding solutions manufactured with carefully
                selected fabrics, refined finishing and attention to
                detail for wholesale, hospitality, retail and private
                label requirements.
            </p>

        </div>

    </div>

</section>


<!-- =========================================================
     INTRODUCTION
========================================================= -->

<section class="mrs-intro">

    <div class="mrs-container">

        <div class="mrs-intro-grid">

            <div>

                <span class="mrs-section-label">
                    Bedding Collection
                </span>

                <h2>
                    Bedding Made for Comfort, Quality &amp; Style
                </h2>

                <p>
                    At <strong>MRs Textiles</strong>, we manufacture and
                    supply a diverse range of bed sheets, bed linen and
                    comforter products for customers looking for dependable
                    quality and consistent production.
                </p>

                <p>
                    Our bedding range includes woven, knitted, plain,
                    striped and specialty constructions, with options for
                    different fabrics, colors, sizes and finishing
                    requirements.
                </p>

                <p>
                    We work with buyers, wholesalers, retailers,
                    hospitality businesses and private-label customers to
                    develop bedding products according to their specific
                    requirements.
                </p>

            </div>


            <div class="mrs-intro-image">

                <img
                    src="REPLACE_WITH_YOUR_BED_SHEET_HERO_IMAGE_URL"
                    alt="MRs Textiles Bed Sheets and Comforters"
                    loading="lazy"
                >

            </div>

        </div>

    </div>

</section>


<!-- =========================================================
     STATS
========================================================= -->

<section class="mrs-stats">

    <div class="mrs-container">

        <div class="mrs-stats-grid">

            <div class="mrs-stat">
                <span class="mrs-stat-number">01</span>
                <span class="mrs-stat-text">
                    Quality Focus
                </span>
            </div>

            <div class="mrs-stat">
                <span class="mrs-stat-number">02</span>
                <span class="mrs-stat-text">
                    Custom Requirements
                </span>
            </div>

            <div class="mrs-stat">
                <span class="mrs-stat-number">03</span>
                <span class="mrs-stat-text">
                    Bulk Supply
                </span>
            </div>

            <div class="mrs-stat">
                <span class="mrs-stat-number">04</span>
                <span class="mrs-stat-text">
                    Textile Expertise
                </span>
            </div>

        </div>

    </div>

</section>


<!-- =========================================================
     PRODUCTS
========================================================= -->

<section class="mrs-products-section">

    <div class="mrs-container">

        <div class="mrs-heading">

            <span class="mrs-section-label">
                Our Bedding Range
            </span>

            <h2>
                Bed Sheets &amp; Comforter Products
            </h2>

            <p>
                Our product range covers a variety of bedding constructions
                suitable for different markets, applications and customer
                specifications.
            </p>

        </div>


        <div class="mrs-product-grid">


            <!-- 01 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_PERCALE_IMAGE_URL"
                        alt="Percale Bed Sheets"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 01
                    </div>

                    <h3>
                        Percale Bed Sheets
                    </h3>

                    <p>
                        Percale bed sheets offer a clean, crisp and
                        comfortable feel. They are suitable for everyday
                        bedding as well as hospitality applications where
                        durability and presentation are important.
                    </p>

                </div>

            </article>


            <!-- 02 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_SATIN_STRIPE_PILLOW_IMAGE_URL"
                        alt="Satin Stripe Pillow Covers"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 02
                    </div>

                    <h3>
                        Satin Stripe Pillow Covers
                    </h3>

                    <p>
                        Satin stripe pillow covers combine a smooth fabric
                        appearance with subtle woven stripes, providing a
                        neat and refined finish for coordinated bedding
                        collections.
                    </p>

                </div>

            </article>


            <!-- 03 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_SATIN_STRIPE_DUVET_IMAGE_URL"
                        alt="Satin Stripe Duvets"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 03
                    </div>

                    <h3>
                        Satin Stripe Duvets
                    </h3>

                    <p>
                        Satin stripe duvets are designed with an elegant
                        stripe effect, creating a polished bedding
                        appearance for hotels, residential collections
                        and premium hospitality requirements.
                    </p>

                </div>

            </article>


            <!-- 04 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_SATIN_STRIPE_BEDSHEET_IMAGE_URL"
                        alt="Satin Stripe Bed Sheets"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 04
                    </div>

                    <h3>
                        Satin Stripe Bed Sheets
                    </h3>

                    <p>
                        Satin stripe bed sheets provide a sophisticated
                        woven appearance with subtle stripes, making them
                        suitable for professional and premium bedding
                        collections.
                    </p>

                </div>

            </article>


            <!-- 05 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_PLAIN_BED_SET_IMAGE_URL"
                        alt="Plain Bed Sets"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 05
                    </div>

                    <h3>
                        Plain Bed Sets
                    </h3>

                    <p>
                        Plain bed sets offer a clean and versatile look.
                        They can be produced in different shades and
                        specifications to coordinate with a wide range of
                        bedroom interiors.
                    </p>

                </div>

            </article>


            <!-- 06 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_MICROFIBER_IMAGE_URL"
                        alt="Microfiber Bed Sets"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 06
                    </div>

                    <h3>
                        Microfiber Bed Sets
                    </h3>

                    <p>
                        Microfiber bed sets provide a lightweight and
                        smooth bedding option with practical care and
                        everyday usability.
                    </p>

                </div>

            </article>


            <!-- 07 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_KNITTED_FITTED_IMAGE_URL"
                        alt="Knitted Fitted Sheets"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 07
                    </div>

                    <h3>
                        Knitted Fitted Sheets
                    </h3>

                    <p>
                        Knitted fitted sheets are designed to provide a
                        comfortable fit around the mattress while offering
                        stretch, softness and practical everyday use.
                    </p>

                </div>

            </article>


            <!-- 08 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_FILLED_PILLOW_IMAGE_URL"
                        alt="Filled Pillows"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 08
                    </div>

                    <h3>
                        Filled Pillows
                    </h3>

                    <p>
                        Filled pillows can be supplied in different
                        constructions and filling specifications to provide
                        comfortable support for residential and hospitality
                        applications.
                    </p>

                </div>

            </article>


            <!-- 09 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_QUILTED_COMFORTER_IMAGE_URL"
                        alt="Quilted Comforters"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 09
                    </div>

                    <h3>
                        Quilted Comforters
                    </h3>

                    <p>
                        Quilted comforters combine a soft outer fabric with
                        structured quilting to provide warmth, comfort and
                        an attractive finished appearance.
                    </p>

                </div>

            </article>


            <!-- 10 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_DUVET_INSERT_IMAGE_URL"
                        alt="Duvet Inserts"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 10
                    </div>

                    <h3>
                        Duvet Inserts
                    </h3>

                    <p>
                        Duvet inserts provide a practical inner layer for
                        duvet covers and can be produced according to
                        required dimensions, filling and weight.
                    </p>

                </div>

            </article>


            <!-- 11 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_DOWN_COMFORTER_IMAGE_URL"
                        alt="Down Comforters"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 11
                    </div>

                    <h3>
                        Down Comforters
                    </h3>

                    <p>
                        Down comforters provide a lightweight and warm
                        bedding solution, with specifications that can be
                        adapted to market and customer requirements.
                    </p>

                </div>

            </article>


            <!-- 12 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_BED_SKIRT_IMAGE_URL"
                        alt="Bed Skirts"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 12
                    </div>

                    <h3>
                        Bed Skirts
                    </h3>

                    <p>
                        Bed skirts add a finished decorative appearance to
                        the bed while helping create a coordinated overall
                        bedding presentation.
                    </p>

                </div>

            </article>


            <!-- 13 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_PILLOWCASE_IMAGE_URL"
                        alt="Pillowcases"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 13
                    </div>

                    <h3>
                        Pillowcases
                    </h3>

                    <p>
                        Pillowcases can be produced to coordinate with
                        different bed sheet collections, offering practical
                        functionality with a clean finished appearance.
                    </p>

                </div>

            </article>


            <!-- 14 -->

            <article class="mrs-product-card">

                <div class="mrs-product-image">

                    <img
                        src="REPLACE_WITH_FLAT_BEDSHEET_IMAGE_URL"
                        alt="Flat Bed Sheets"
                        loading="lazy"
                    >

                </div>

                <div class="mrs-product-content">

                    <div class="mrs-product-number">
                        BEDDING 14
                    </div>

                    <h3>
                        Flat Bed Sheets
                    </h3>

                    <p>
                        Flat bed sheets provide a versatile bedding option
                        for hotels, homes and institutional applications,
                        available in different fabrics and dimensions.
                    </p>

                </div>

            </article>


        </div>

    </div>

</section>


<!-- =========================================================
     FEATURED BEDDING IMAGE / DESCRIPTION
========================================================= -->

<section class="mrs-feature">

    <div class="mrs-container">

        <div class="mrs-feature-grid">

            <div class="mrs-feature-image">

                <img
                    src="REPLACE_WITH_YOUR_BEST_BEDDING_IMAGE_URL"
                    alt="MRs Textiles Premium Bedding"
                    loading="lazy"
                >

            </div>


            <div class="mrs-feature-content">

                <span class="mrs-section-label">
                    Product Capabilities
                </span>

                <h2>
                    Bedding Solutions Developed Around Your Requirements
                </h2>

                <p>
                    MRs Textiles works with customers to develop bedding
                    products according to their intended market and
                    specifications.
                </p>

                <p>
                    From fabric selection and dimensions to colors,
                    construction and finishing, bedding products can be
                    developed to meet individual project requirements.
                </p>

                <ul class="mrs-feature-list">

                    <li>
                        Different fabric and construction options
                    </li>

                    <li>
                        Custom sizes and dimensions
                    </li>

                    <li>
                        Plain and stripe constructions
                    </li>

                    <li>
                        Coordinated bedding collections
                    </li>

                    <li>
                        Wholesale and bulk production
                    </li>

                    <li>
                        Private-label requirements
                    </li>

                </ul>

            </div>

        </div>

    </div>

</section>


<!-- =========================================================
     PRODUCT SPECIFICATIONS
========================================================= -->

<section class="mrs-details">

    <div class="mrs-container">

        <div class="mrs-heading">

            <span class="mrs-section-label">
                Product Details
            </span>

            <h2>
                Flexible Specifications
            </h2>

            <p>
                Bedding specifications can be developed according to the
                requirements of the customer, destination market and
                intended application.
            </p>

        </div>


        <div class="mrs-details-grid">


            <div class="mrs-detail-box">

                <h3>
                    Fabrics
                </h3>

                <p>
                    Depending on the product, bedding can be developed using
                    cotton, microfiber, blended and other suitable textile
                    constructions.
                </p>

            </div>


            <div class="mrs-detail-box">

                <h3>
                    Sizes
                </h3>

                <p>
                    Single, double, queen, king and custom dimensions can be
                    considered according to buyer requirements.
                </p>

            </div>


            <div class="mrs-detail-box">

                <h3>
                    Colors
                </h3>

                <p>
                    Plain colors, coordinated shades, classic neutrals and
                    customized color requirements can be accommodated.
                </p>

            </div>


            <div class="mrs-detail-box">

                <h3>
                    Designs
                </h3>

                <p>
                    Options include plain, satin stripe, woven constructions
                    and other designs developed for specific collections.
                </p>

            </div>


            <div class="mrs-detail-box">

                <h3>
                    Finishing
                </h3>

                <p>
                    Products can be finished according to the required
                    appearance, dimensions, packaging and application.
                </p>

            </div>


            <div class="mrs-detail-box">

                <h3>
                    Packaging
                </h3>

                <p>
                    Packaging specifications can be coordinated according
                    to wholesale, retail, hospitality or private-label
                    requirements.
                </p>

            </div>


        </div>

    </div>

</section>


<!-- =========================================================
     MANUFACTURING / CUSTOMIZATION
========================================================= -->

<section class="mrs-manufacturing">

    <div class="mrs-container">

        <div class="mrs-manufacturing-grid">


            <div>

                <span class="mrs-section-label">
                    Manufacturing
                </span>

                <h2>
                    From Textile Production to Finished Bedding
                </h2>

                <p>
                    Our approach focuses on maintaining consistency across
                    the manufacturing process, from fabric selection and
                    preparation through stitching, finishing and final
                    inspection.
                </p>

                <p>
                    MRs Textiles can work with customers on product
                    specifications and customized requirements for bulk
                    bedding programs.
                </p>


                <div class="mrs-manufacturing-list">

                    <div class="mrs-manufacturing-item">
                        <strong>
                            Fabric Selection
                        </strong>

                        <span>
                            Material and construction according to product
                            requirements.
                        </span>
                    </div>


                    <div class="mrs-manufacturing-item">
                        <strong>
                            Cutting &amp; Stitching
                        </strong>

                        <span>
                            Accurate construction and consistent finishing.
                        </span>
                    </div>


                    <div class="mrs-manufacturing-item">
                        <strong>
                            Quality Checking
                        </strong>

                        <span>
                            Inspection throughout production.
                        </span>
                    </div>


                    <div class="mrs-manufacturing-item">
                        <strong>
                            Final Finishing
                        </strong>

                        <span>
                            Preparation according to customer requirements.
                        </span>
                    </div>

                </div>

            </div>


            <div class="mrs-manufacturing-image">

                <img
                    src="REPLACE_WITH_YOUR_FACTORY_OR_BEDDING_IMAGE_URL"
                    alt="MRs Textiles Manufacturing"
                    loading="lazy"
                >

            </div>

        </div>

    </div>

</section>


<!-- =========================================================
     QUALITY
========================================================= -->

<section class="mrs-quality">

    <div class="mrs-container">

        <div class="mrs-heading">

            <span class="mrs-section-label">
                Why MRs Textiles
            </span>

            <h2>
                A Professional Approach to Bedding
            </h2>

            <p>
                We focus on quality, consistency and practical solutions
                for customers requiring reliable textile products.
            </p>

        </div>


        <div class="mrs-quality-grid">


            <div class="mrs-quality-box">

                <div class="mrs-quality-icon">
                    ✓
                </div>

                <h3>
                    Consistent Quality
                </h3>

                <p>
                    Attention to fabric, construction and finishing helps
                    maintain consistent product standards.
                </p>

            </div>


            <div class="mrs-quality-box">

                <div class="mrs-quality-icon">
                    ◆
                </div>

                <h3>
                    Custom Solutions
                </h3>

                <p>
                    Products can be developed around specific dimensions,
                    colors, fabrics and application requirements.
                </p>

            </div>


            <div class="mrs-quality-box">

                <div class="mrs-quality-icon">
                    ◇
                </div>

                <h3>
                    Bulk Production
                </h3>

                <p>
                    Suitable for wholesalers, retailers, hospitality buyers
                    and larger bedding programs.
                </p>

            </div>


            <div class="mrs-quality-box">

                <div class="mrs-quality-icon">
                    +
                </div>

                <h3>
                    Reliable Service
                </h3>

                <p>
                    Clear communication and attention to customer
                    specifications throughout the order process.
                </p>

            </div>


        </div>

    </div>

</section>


<!-- =========================================================
     IMAGE GALLERY
========================================================= -->

<section class="mrs-gallery">

    <div class="mrs-container">

        <div class="mrs-heading">

            <span class="mrs-section-label">
                Bedding Collection
            </span>

            <h2>
                Selected Bedding Products
            </h2>

            <p>
                A selection of bedding styles and products supplied by
                MRs Textiles.
            </p>

        </div>


        <div class="mrs-gallery-grid">


            <div class="mrs-gallery-item large">

                <img
                    src="REPLACE_WITH_GALLERY_IMAGE_01"
                    alt="MRs Textiles Bedding Collection"
                    loading="lazy"
                >

            </div>


            <div class="mrs-gallery-item">

                <img
                    src="REPLACE_WITH_GALLERY_IMAGE_02"
                    alt="MRs Textiles Bed Sheet"
                    loading="lazy"
                >

            </div>


            <div class="mrs-gallery-item">

                <img
                    src="REPLACE_WITH_GALLERY_IMAGE_03"
                    alt="MRs Textiles Bedding Product"
                    loading="lazy"
                >

            </div>


            <div class="mrs-gallery-item">

                <img
                    src="REPLACE_WITH_GALLERY_IMAGE_04"
                    alt="MRs Textiles Comforter"
                    loading="lazy"
                >

            </div>


            <div class="mrs-gallery-item">

                <img
                    src="REPLACE_WITH_GALLERY_IMAGE_05"
                    alt="MRs Textiles Bed Linen"
                    loading="lazy"
                >

            </div>


        </div>

    </div>

</section>


<!-- =========================================================
     CTA
========================================================= -->

<section class="mrs-cta">

    <div class="mrs-container">

        <h2>
            Looking for a Bedding Manufacturing Partner?
        </h2>

        <p>
            Talk to MRs Textiles about your bed sheet, comforter and
            bedding requirements. We can discuss product specifications,
            quantities, customization and supply requirements.
        </p>

        <!-- Replace # with your actual Contact page URL -->

        <a
            href="#"
            class="mrs-cta-button"
        >
            CONTACT MRs TEXTILES
        </a>

    </div>

</section>


</div>

<!-- =========================================================
     END OF MRs TEXTILES BED SHEETS & COMFORTERS PAGE
========================================================= -->