:root {

    --cm-green: #083D2B;
    --cm-green-dark: #052C20;
    --cm-green-light: #0B5A40;

    --cm-gold: #F4BF19;
    --cm-gold-dark: #DFA900;

    --cm-text: #10251E;
    --cm-muted: #68736E;

    --cm-border: #E4E9E6;
    --cm-bg: #F8FAF9;

    --cm-white: #FFFFFF;

    --cm-container: 1240px;

    --cm-shadow:
        0 8px 25px rgba(8,61,43,.07);

}


/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    color: var(--cm-text);

    background: #fff;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input {

    font: inherit;

}


img {

    max-width: 100%;

    display: block;

}


.cm-container {

    width:
        min(
            calc(100% - 48px),
            var(--cm-container)
        );

    margin-inline: auto;

}


/* =====================================================
   HEADER
===================================================== */

.cm-header {

    height: 72px;

    background:
        var(--cm-green);

    color: #fff;

    position: sticky;

    top: 0;

    z-index: 1000;

}


.cm-header-inner {

    height: 100%;

    width:
        min(
            calc(100% - 48px),
            1380px
        );

    margin-inline: auto;

    display: flex;

    align-items: center;

    gap: 28px;

}


.cm-logo {

    flex-shrink: 0;

}


.cm-logo img {

    width: auto;

    height: 54px;

}


.cm-nav {

    display: flex;

    align-items: center;

    gap: 27px;

    margin-left: auto;

}


.cm-nav a {

    color: rgba(255,255,255,.95);

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition: .2s ease;

}


.cm-nav a:hover,
.cm-nav a.active {

    color: var(--cm-gold);

}


.cm-nav i {

    margin-left: 4px;

    font-size: 9px;

}


.cm-header-right {

    display: flex;

    align-items: center;

    gap: 17px;

}


.cm-search {

    width: 240px;

    height: 42px;

    background: #fff;

    border-radius: 9px;

    display: flex;

    align-items: center;

    padding-left: 15px;

}


.cm-search input {

    flex: 1;

    min-width: 0;

    border: 0;

    outline: 0;

    font-size: 11px;

    color: var(--cm-text);

}


.cm-search button {

    width: 42px;

    height: 100%;

    border: 0;

    background: transparent;

    color: var(--cm-green);

    cursor: pointer;

}


.cm-icon-btn,
.cm-cart {

    color: #fff;

    font-size: 22px;

    position: relative;

}


.cm-cart {

    font-size: 23px;

}


.cart-count {

    position: absolute;

    top: -9px;

    right: -10px;

    width: 18px;

    height: 18px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--cm-gold);

    color: var(--cm-green);

    font-size: 9px;

    font-weight: 800;

}


.cm-mobile-menu {

    display: none;

    margin-left: auto;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 28px;

}


/* =====================================================
   TRUST STRIP
===================================================== */

.cm-trust {

    height: 48px;

    border-bottom:
        1px solid var(--cm-border);

    background: #fff;

}


.cm-trust .cm-container {

    height: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.cm-trust-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    font-size: 11px;

    font-weight: 600;

}


.cm-trust-item i {

    color: var(--cm-gold-dark);

    font-size: 16px;

}


/* =====================================================
   HERO
===================================================== */

.cm-hero {

    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            #fff 0%,
            #fff 42%,
            #F1F5F2 100%
        );

}


.cm-hero-grid {

    min-height: 420px;

    display: grid;

    grid-template-columns:
        43% 57%;

    align-items: center;

}


.cm-hero-content {

    position: relative;

    z-index: 2;

    padding:
        55px 0 58px;

}


.cm-kicker {

    color: var(--cm-gold-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;

    margin-bottom: 12px;

}


.cm-hero h1 {

    margin: 0;

    color: var(--cm-green);

    font-family:
        "Manrope",
        sans-serif;

    font-size: clamp(
        40px,
        4vw,
        59px
    );

    line-height: 1.06;

    letter-spacing: -2px;

    font-weight: 800;

}


.cm-hero h1 span {

    display: block;

    color: var(--cm-gold);

}


.cm-hero p {

    max-width: 440px;

    margin:
        20px 0 24px;

    color: var(--cm-muted);

    font-size: 14px;

    line-height: 1.7;

}


.cm-hero-actions {

    display: flex;

    align-items: center;

    gap: 23px;

}


.cm-primary-btn {

    height: 46px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: var(--cm-green);

    color: #fff;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 800;

}


.cm-primary-btn:hover {

    background: var(--cm-green-light);

}


.cm-free-delivery {

    display: flex;

    align-items: center;

    gap: 10px;

}


.cm-free-delivery > i {

    color: var(--cm-gold-dark);

    font-size: 24px;

}


.cm-free-delivery strong,
.cm-free-delivery span {

    display: block;

}


.cm-free-delivery strong {

    font-size: 12px;

}


.cm-free-delivery span {

    color: var(--cm-muted);

    margin-top: 3px;

    font-size: 10px;

}


.cm-hero-image {

    height: 100%;

    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: flex-end;

}


.cm-hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


/* =====================================================
   BENEFITS
===================================================== */

.cm-benefits-wrap {

    margin-top: -2px;

}


.cm-benefits {

    min-height: 105px;

    background: var(--cm-green);

    border-radius: 13px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    overflow: hidden;

    box-shadow:
        0 12px 30px rgba(8,61,43,.14);

}


.cm-benefit {

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        20px 25px;

    border-right:
        1px solid
        rgba(255,255,255,.12);

}


.cm-benefit:last-child {

    border-right: 0;

}


.cm-benefit > i {

    flex-shrink: 0;

    font-size: 31px;

    color: var(--cm-gold);

}


.cm-benefit strong,
.cm-benefit span {

    display: block;

}


.cm-benefit strong {

    color: #fff;

    font-size: 13px;

    margin-bottom: 5px;

}


.cm-benefit span {

    max-width: 170px;

    color:
        rgba(255,255,255,.70);

    font-size: 10px;

    line-height: 1.45;

}


/* =====================================================
   SECTION
===================================================== */

.cm-section {

    padding:
        72px 0;

}


.cm-section-heading {

    text-align: center;

    margin-bottom: 35px;

}


.cm-section-heading h2,
.cm-section-title-row h2 {

    margin: 0;

    color: var(--cm-green);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 31px;

    line-height: 1.2;

    letter-spacing: -1px;

    font-weight: 800;

}


/* =====================================================
   CATEGORY
===================================================== */

.cm-category-grid {

    display: grid;

    grid-template-columns:
        repeat(8, 1fr);

    gap: 18px;

}


.cm-category {

    text-align: center;

}


.cm-category-image {

    width: 112px;

    height: 112px;

    margin: 0 auto 13px;

    border:
        1px solid #C7CFCA;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #fff;

    overflow: hidden;

    transition: .25s ease;

}


.cm-category-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.cm-category:hover
.cm-category-image {

    border-color: var(--cm-gold);

    transform: translateY(-5px);

    box-shadow:
        0 8px 20px
        rgba(8,61,43,.08);

}


.cm-category h3 {

    margin: 0;

    color: var(--cm-text);

    font-size: 11px;

    font-weight: 700;

}


/* =====================================================
   PRODUCTS
===================================================== */

.cm-products {

    padding-top: 10px;

}


.cm-section-title-row {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 28px;

}


.cm-view-all {

    padding:
        10px 17px;

    border:
        1px solid #AEB9B4;

    border-radius: 7px;

    font-size: 11px;

    font-weight: 600;

}


.cm-product-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 11px;

}


.cm-product-card {

    background: #fff;

    border:
        1px solid var(--cm-border);

    border-radius: 10px;

    overflow: hidden;

    transition: .25s ease;

}


.cm-product-card:hover {

    transform: translateY(-5px);

    box-shadow:
        var(--cm-shadow);

}


.cm-product-image {

    height: 210px;

    position: relative;

    display: grid;

    place-items: center;

    background: #fff;

    padding: 18px;

}


.cm-product-image img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


.cm-badge {

    position: absolute;

    top: 9px;

    left: 8px;

    z-index: 2;

    background: var(--cm-gold);

    color: var(--cm-green);

    padding:
        4px 7px;

    border-radius: 4px;

    font-size: 7px;

    font-weight: 900;

}


.cm-badge-new {

    background: #E9C400;

}


.cm-wishlist {

    position: absolute;

    right: 9px;

    top: 9px;

    z-index: 2;

    width: 26px;

    height: 26px;

    border: 0;

    background: transparent;

    color: #82908A;

    cursor: pointer;

    font-size: 16px;

}


.cm-product-body {

    padding:
        0 12px 12px;

}


.cm-product-body h3 {

    min-height: 35px;

    margin:
        0 0 7px;

    color: var(--cm-text);

    font-size: 10px;

    line-height: 1.45;

    font-weight: 700;

}


.cm-rating {

    color: #F2B400;

    font-size: 10px;

    letter-spacing: -1px;

}


.cm-rating span {

    color: #7A8580;

    letter-spacing: 0;

    margin-left: 3px;

    font-size: 8px;

}


.cm-price {

    display: flex;

    align-items: center;

    gap: 6px;

    margin:
        8px 0 10px;

}


.cm-price strong {

    font-size: 14px;

}


.cm-price del {

    color: #9AA39F;

    font-size: 8px;

}


.cm-price span {

    background: #FFF5D5;

    color: #9A7600;

    padding:
        3px 4px;

    border-radius: 3px;

    font-size: 7px;

    font-weight: 700;

}


.cm-add-cart {

    width: 100%;

    height: 32px;

    border: 0;

    border-radius: 5px;

    background: var(--cm-green);

    color: #fff;

    cursor: pointer;

    font-size: 9px;

    font-weight: 700;

}


.cm-add-cart i {

    margin-left: 4px;

}


/* =====================================================
   OFFER
===================================================== */

.cm-offer-section {

    padding:
        0 0 60px;

}


.cm-offer {

    min-height: 145px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            105deg,
            var(--cm-green) 0%,
            var(--cm-green) 47%,
            #F0F0EE 47.2%,
            #F0F0EE 100%
        );

    border-radius: 10px;

}


.cm-offer-content {

    position: relative;

    z-index: 3;

    padding-left: 55px;

}


.cm-offer-kicker {

    color: var(--cm-gold);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.cm-offer h2 {

    margin: 4px 0 0;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 28px;

}


.cm-offer p {

    margin: 2px 0 12px;

    color: #fff;

    font-size: 11px;

}


.cm-offer-btn {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        9px 15px;

    background: var(--cm-gold);

    color: var(--cm-green);

    border-radius: 5px;

    font-size: 9px;

    font-weight: 800;

}


.cm-offer-products {

    position: absolute;

    right: 10%;

    top: 0;

    width: 43%;

    height: 100%;

}


.cm-offer-products img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.cm-offer-badge {

    position: absolute;

    right: 5%;

    top: 50%;

    transform: translateY(-50%);

    width: 68px;

    height: 68px;

    display: grid;

    place-items: center;

    align-content: center;

    border-radius: 50%;

    background: var(--cm-gold);

    color: var(--cm-green);

    font-size: 20px;

    font-weight: 900;

    line-height: .8;

}


.cm-offer-badge small {

    font-size: 9px;

}


/* =====================================================
   WHY
===================================================== */

.cm-why {

    padding:
        0 0 65px;

}


.cm-why .cm-section-heading {

    margin-bottom: 30px;

}


.cm-why-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

}


.cm-why-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-right:
        1px solid var(--cm-border);

}


.cm-why-item:last-child {

    border-right: 0;

}


.cm-why-item > i {

    color: var(--cm-green);

    font-size: 25px;

}


.cm-why-item strong,
.cm-why-item span {

    display: block;

}


.cm-why-item strong {

    font-size: 10px;

}


.cm-why-item span {

    color: var(--cm-muted);

    margin-top: 2px;

    font-size: 9px;

}


/* =====================================================
   NEWSLETTER
===================================================== */

.cm-newsletter {

    padding:
        35px 0;

    background: var(--cm-green);

    color: #fff;

}


.cm-newsletter-grid {

    display: grid;

    grid-template-columns:
        1.4fr 1.6fr
        1fr 1fr 1fr;

    gap: 22px;

    align-items: center;

}


.cm-newsletter h3 {

    margin: 0 0 6px;

    font-size: 15px;

}


.cm-newsletter p {

    margin: 0;

    color:
        rgba(255,255,255,.68);

    font-size: 9px;

    line-height: 1.5;

}


.cm-newsletter-form {

    height: 38px;

    display: flex;

    background: #fff;

    border-radius: 6px;

    overflow: hidden;

}


.cm-newsletter-form input {

    min-width: 0;

    flex: 1;

    border: 0;

    outline: 0;

    padding: 0 11px;

    font-size: 9px;

}


.cm-newsletter-form button {

    width: 80px;

    border: 0;

    background: var(--cm-gold);

    color: var(--cm-green);

    font-size: 9px;

    font-weight: 800;

}


.cm-newsletter-benefit {

    display: flex;

    align-items: center;

    gap: 10px;

}


.cm-newsletter-benefit > i {

    color: var(--cm-gold);

    font-size: 23px;

}


.cm-newsletter-benefit strong,
.cm-newsletter-benefit span {

    display: block;

}


.cm-newsletter-benefit strong {

    font-size: 9px;

}


.cm-newsletter-benefit span {

    color:
        rgba(255,255,255,.58);

    margin-top: 3px;

    font-size: 8px;

}

/* =====================================================
   CLEANMART FOOTER — FINAL
   SAME STYLE AS CLEANNORA FOOTER
===================================================== */

.cm-footer {
    width: 100%;
    background: #083D2B;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* GOLD TOP LINE */

.cm-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F4BF19;
}


/* =====================================================
   CONTAINER
===================================================== */

.cm-container {
    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;
}


/* =====================================================
   MAIN FOOTER
===================================================== */

.cm-footer {
    padding: 42px 0 0;
}

.cm-footer-grid {
    display: grid;

    grid-template-columns:
        1.45fr
        1fr
        1.1fr
        .9fr
        1.25fr;

    gap: 0;

    padding-bottom: 24px;
}


/* =====================================================
   BRAND SECTION
===================================================== */

.cm-footer-brand {
    padding-right: 38px;
}

.cm-footer-brand img {
    width: 180px;
    height: auto;
    max-height: 55px;

    object-fit: contain;
    object-position: left center;

    margin-bottom: 14px;
}

.cm-footer-brand p {
    max-width: 245px;
    margin: 0;

    color: rgba(255, 255, 255, .72);

    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   SOCIAL ICONS
===================================================== */

.cm-socials {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 26px;

    padding-top: 2px;
}

.cm-socials a {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;

    color: #ffffff;

    font-size: 11px;

    text-decoration: none;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.cm-socials a:hover {
    background: #F4BF19;
    border-color: #F4BF19;
    color: #083D2B;

    transform: translateY(-2px);
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.cm-footer-column {
    min-height: 150px;

    padding-left: 30px;

    border-left: 1px solid rgba(244, 191, 25, .16);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* =====================================================
   COLUMN HEADINGS
===================================================== */

.cm-footer-column h4 {
    margin: 2px 0 15px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
}


/* =====================================================
   FOOTER LINKS
===================================================== */

.cm-footer-column a,
.cm-footer-column > span {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, .72);

    font-size: 13px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.cm-footer-column a:hover {
    color: #F4BF19;

    transform: translateX(3px);
}


/* =====================================================
   CONTACT SECTION
===================================================== */

.cm-footer-column:last-child a,
.cm-footer-column:last-child > span {
    display: flex;
    align-items: center;

    gap: 9px;
}


/* CONTACT ICONS */

.cm-footer-column:last-child i {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 0;

    border: 1px solid rgba(244, 191, 25, .38);
    border-radius: 50%;

    color: #F4BF19;

    font-size: 11px;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.cm-footer-bottom {
    width: 100%;

    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, .10);
}


/* COPYRIGHT */

.cm-footer-bottom > span {
    color: rgba(255, 255, 255, .62);

    font-size: 12px;
    line-height: 1.4;
}


/* PAYMENT METHODS */

.cm-footer-bottom > div {
    display: flex;
    align-items: center;

    gap: 8px;
}

.cm-footer-bottom > div span {
    padding: 5px 9px;

    background: rgba(255, 255, 255, .92);
    color: #083D2B;

    border-radius: 3px;

    font-size: 9px;
    font-weight: 700;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .cm-container {
        width: min(92%, 760px);
    }

    .cm-footer {
        padding-top: 40px;
    }

    .cm-footer-grid {
        grid-template-columns:
            1.3fr
            1fr
            1fr;

        row-gap: 30px;
    }

    .cm-footer-brand {
        padding-right: 30px;
    }

    .cm-footer-column {
        min-height: auto;
    }

    .cm-footer-bottom {
        min-height: 60px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .cm-container {
        width: calc(100% - 32px);
    }

    .cm-footer {
        padding-top: 38px;
    }

    .cm-footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px 0;

        padding-bottom: 20px;
    }

    .cm-footer-brand {
        grid-column: 1 / -1;

        padding-right: 15px;
    }

    .cm-footer-brand p {
        max-width: 330px;
    }

    .cm-footer-column {
        min-height: auto;

        padding-left: 18px;
    }

    /* FIRST COLUMN NO LEFT BORDER */

    .cm-footer-column:nth-of-type(2) {
        padding-left: 0;

        border-left: 0;
    }

    .cm-footer-column h4 {
        margin-bottom: 12px;

        font-size: 14px;
    }

    .cm-footer-column a,
    .cm-footer-column > span {
        font-size: 12px;

        margin-bottom: 7px;
    }

    .cm-footer-brand img {
        width: 165px;
    }


    /* BOTTOM */

    .cm-footer-bottom {
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;

        padding: 14px 0 16px;

        gap: 12px;
    }

    .cm-footer-bottom > span {
        font-size: 10px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .cm-footer-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .cm-footer-column {
        padding-left: 0;

        border-left: 0;
    }

    .cm-footer-brand {
        grid-column: auto;
    }

    .cm-footer-brand img {
        width: 155px;
    }

}

/* =====================================================
   SOCIAL ICONS
===================================================== */

.cm-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.cm-socials a {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.cm-socials a:hover {
    background: #F4BF19;
    border-color: #F4BF19;

    color: #083D2B;

    transform: translateY(-2px);
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.cm-footer-column {
    min-height: 150px;

    padding-left: 30px;

    border-left: 1px solid rgba(244,191,25,.16);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* =====================================================
   HEADINGS
===================================================== */

.cm-footer-column h4 {
    margin: 2px 0 15px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
}


/* =====================================================
   LINKS
===================================================== */

.cm-footer-column a,
.cm-footer-column span {
    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,.72);

    font-size: 13px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.cm-footer-column a:hover {
    color: #F4BF19;

    transform: translateX(3px);
}


/* =====================================================
   CONTACT SECTION
===================================================== */

.cm-footer-column:last-child a,
.cm-footer-column:last-child span {
    display: flex;
    align-items: center;

    gap: 9px;
}

.cm-footer-column a i,
.cm-footer-column span i {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 0;

    color: #F4BF19;

    font-size: 15px;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.cm-footer-bottom {
    width: 100%;
    min-height: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 13px 0 12px;

    border-top: 1px solid rgba(255,255,255,.10);
}

.cm-footer-bottom > span {
    color: rgba(255,255,255,.62);

    font-size: 12px;
    line-height: 1.4;
}


/* PAYMENT METHODS */

.cm-footer-bottom > div {
    display: flex;
    align-items: center;

    gap: 8px;
}

.cm-footer-bottom > div span {
    padding: 5px 9px;

    background: rgba(255,255,255,.92);

    color: #083D2B;

    border-radius: 3px;

    font-size: 9px;
    font-weight: 700;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .cm-footer {
        padding-top: 40px;
    }

    .cm-container {
        width: min(92%, 760px);
    }

    .cm-footer-grid {
        grid-template-columns:
            1.3fr
            1fr
            1fr;

        row-gap: 30px;
    }

    .cm-footer-brand {
        padding-right: 30px;
    }

    .cm-footer-column {
        min-height: auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .cm-footer {
        padding-top: 38px;
    }

    .cm-container {
        width: calc(100% - 32px);
    }

    .cm-footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px 0;

        padding-bottom: 20px;
    }

    .cm-footer-brand {
        grid-column: 1 / -1;

        padding-right: 15px;
    }

    .cm-footer-brand p {
        max-width: 330px;
    }

    .cm-footer-column {
        min-height: auto;

        padding-left: 18px;
    }

    /* FIRST COLUMN LEFT SIDE */
    .cm-footer-column:nth-child(2) {
        padding-left: 0;
        border-left: 0;
    }

    .cm-footer-column h4 {
        margin-bottom: 12px;

        font-size: 14px;
    }

    .cm-footer-column a,
    .cm-footer-column span {
        font-size: 12px;

        margin-bottom: 7px;
    }

    .cm-footer-brand img {
        width: 165px;
    }

    .cm-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        padding: 12px 0 14px;
    }

    .cm-footer-bottom > span {
        font-size: 10px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .cm-footer-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .cm-footer-column {
        padding-left: 0;

        border-left: 0;
    }

    .cm-footer-brand {
        grid-column: auto;
    }

    .cm-footer-brand img {
        width: 155px;
    }

}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .cm-nav {

        gap: 15px;

    }


    .cm-nav a {

        font-size: 11px;

    }


    .cm-search {

        width: 190px;

    }


    .cm-category-grid {

        grid-template-columns:
            repeat(4, 1fr);

    }


    .cm-product-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .cm-newsletter-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .cm-footer-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .cm-container {

        width:
            calc(100% - 30px);

    }


    .cm-header {

        height: 64px;

    }


    .cm-header-inner {

        width:
            calc(100% - 30px);

    }


    .cm-logo img {

        height: 46px;

    }


    .cm-nav,
    .cm-header-right {

        display: none;

    }


    .cm-mobile-menu {

        display: block;

    }


    .cm-trust {

        height: auto;

    }


    .cm-trust .cm-container {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .cm-trust-item {

        min-height: 42px;

        font-size: 8px;

    }


    /* HERO */

    .cm-hero-grid {

        min-height: auto;

        grid-template-columns: 1fr;

    }


    .cm-hero-content {

        padding:
            45px 0 25px;

    }


    .cm-hero h1 {

        font-size: 40px;

    }


    .cm-hero p {

        font-size: 12px;

    }


    .cm-hero-image {

        min-height: 300px;

        max-height: 350px;

    }


    .cm-hero-actions {

        flex-wrap: wrap;

    }


    /* BENEFITS */

    .cm-benefits {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .cm-benefit {

        padding:
            17px 13px;

    }


    .cm-benefit:nth-child(2) {

        border-right: 0;

    }


    .cm-benefit:nth-child(3),
    .cm-benefit:nth-child(4) {

        border-top:
            1px solid
            rgba(255,255,255,.12);

    }


    /* CATEGORY */

    .cm-section {

        padding:
            55px 0;

    }


    .cm-category-grid {

        grid-template-columns:
            repeat(4, 1fr);

        gap: 17px 8px;

    }


    .cm-category-image {

        width: 72px;

        height: 72px;

    }


    .cm-category h3 {

        font-size: 8px;

    }


    /* PRODUCTS */

    .cm-section-title-row {

        align-items: flex-start;

        gap: 15px;

    }


    .cm-section-title-row h2 {

        font-size: 26px;

    }


    .cm-view-all {

        font-size: 9px;

        padding:
            8px 10px;

    }


    .cm-product-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;

    }


    .cm-product-image {

        height: 180px;

    }


    /* OFFER */

    .cm-offer {

        min-height: 220px;

        background:
            var(--cm-green);

    }


    .cm-offer-content {

        padding-left: 25px;

        z-index: 5;

    }


    .cm-offer-products {

        right: -10%;

        width: 65%;

        opacity: .42;

    }


    .cm-offer-badge {

        right: 5%;

        width: 58px;

        height: 58px;

    }


    /* WHY */

    .cm-why-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 22px 10px;

    }


    .cm-why-item {

        justify-content: flex-start;

        border-right: 0;

    }


    /* NEWSLETTER */

    .cm-newsletter-grid {

        grid-template-columns: 1fr;

    }


    /* FOOTER */

    .cm-footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px 20px;

    }


    .cm-footer-brand {

        grid-column:
            span 2;

    }


    .cm-footer-bottom {

        min-height: auto;

        padding:
            18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .cm-hero h1 {

        font-size: 35px;

    }


    .cm-category-grid {

        grid-template-columns:
            repeat(4, 1fr);

    }


    .cm-category-image {

        width: 62px;

        height: 62px;

    }


    .cm-category h3 {

        font-size: 7px;

    }


    .cm-product-image {

        height: 150px;

        padding: 12px;

    }


    .cm-product-body h3 {

        font-size: 9px;

    }


    .cm-price strong {

        font-size: 12px;

    }


    .cm-footer-grid {

        grid-template-columns: 1fr;

    }


    .cm-footer-brand {

        grid-column: auto;

    }

}

/* =========================================================
   FINAL CLEANMART HEADER + HERO FIX
   ========================================================= */

/* ---------- FLOATING HEADER ---------- */

.cm-header {
    width: min(calc(100% - 72px), 1280px);
    height: 88px;

    margin: 22px auto 0;

    border-radius: 20px;

    position: relative;
    top: auto;

    background: #083D2B;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.14);

    border-bottom: 2px solid #F4BF19;

    overflow: hidden;
}


/* ---------- HEADER INNER ---------- */

.cm-header-inner {
    width: 100%;
    height: 100%;

    max-width: none;

    padding: 0 28px;
}


/* ---------- HERO ---------- */

.cm-hero {
    margin-top: 22px;

    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            #ffffff 0%,
            #ffffff 42%,
            #f1f5f2 100%
        );
}


/* ---------- HERO GRID ---------- */

.cm-hero-grid {
    min-height: 500px;

    display: grid;

    grid-template-columns: 43% 57%;

    align-items: stretch;
}


/* ---------- HERO CONTENT ---------- */

.cm-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        55px
        35px
        55px
        0;
}


/* ---------- HERO IMAGE AREA ---------- */

.cm-hero-image {
    min-height: 500px;

    height: 500px;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    overflow: hidden;
}


/* ---------- HERO IMAGE ---------- */

.cm-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: right center;
}


/* =========================================================
   DESKTOP HERO — KEEP PRODUCTS VISIBLE
   ========================================================= */

@media (min-width: 1200px) {

    .cm-hero-grid {
        min-height: 520px;
    }

    .cm-hero-image {
        min-height: 520px;
        height: 520px;
    }

    .cm-hero-image img {
        object-position: right center;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .cm-header {
        width: calc(100% - 32px);
        height: 78px;

        margin-top: 16px;

        border-radius: 18px;
    }

    .cm-header-inner {
        padding: 0 20px;
    }

    .cm-hero {
        margin-top: 18px;
    }

    .cm-hero-grid {
        grid-template-columns: 1fr 1fr;

        min-height: 450px;
    }

    .cm-hero-content {
        padding:
            40px
            20px
            40px
            0;
    }

    .cm-hero-image {
        min-height: 450px;
        height: 450px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .cm-header {
        width: calc(100% - 24px);

        height: 68px;

        margin-top: 12px;

        border-radius: 16px;
    }

    .cm-header-inner {
        padding: 0 14px;
    }

    .cm-hero {
        margin-top: 14px;
    }

    .cm-hero-grid {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .cm-hero-content {
        padding:
            40px
            20px
            30px;
    }

    .cm-hero-image {
        min-height: 300px;
        height: 300px;
    }

    .cm-hero-image img {
        object-position: right center;
    }

}

/* =========================================================
   CLEANMART FINAL HEADER + HERO
   ========================================================= */


/* =========================
   FLOATING NAVBAR
   ========================= */

.cm-header {
    width: min(calc(100% - 72px), 1280px);
    height: 88px;

    margin: 22px auto 0;

    border-radius: 20px;

    background: #083D2B;

    border-bottom: 2px solid #F4BF19;

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.14);

    position: relative;
    top: auto;

    overflow: hidden;
}


.cm-header-inner {
    width: 100%;
    max-width: none;

    height: 100%;

    padding: 0 28px;
}


/* NAV TEXT */

.cm-nav a,
.cm-header nav a {
    font-size: 16px !important;
    font-weight: 700 !important;

    line-height: 1;

    white-space: nowrap;
}


/* NAV SPACING */

.cm-nav {
    gap: 30px;
}


/* SEARCH */

.cm-search {
    height: 44px;
}


/* =========================================================
   HERO
   ========================================================= */

.cm-hero {
    margin-top: 18px;

    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            #ffffff 0%,
            #ffffff 42%,
            #f1f5f2 100%
        );
}


/* HERO HEIGHT */

.cm-hero-grid {
    min-height: 430px;

    height: 430px;

    display: grid;

    grid-template-columns: 43% 57%;

    align-items: stretch;
}


/* LEFT CONTENT */

.cm-hero-content {
    min-height: 430px;

    padding:
        38px
        35px
        38px
        0;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.cm-hero-image {
    width: 100%;

    height: 430px;

    min-height: 0;

    display: block;

    overflow: hidden;

    background: #f1f5f2;
}


/* IMPORTANT:
   Fill the hero area.
   No grey bars.
   Keep products on right.
*/

.cm-hero-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: right center;
}


/* =========================================================
   BENEFITS — NO OVERLAP
   ========================================================= */

.cm-benefits-wrap {
    margin-top: 0 !important;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .cm-header {
        width: min(calc(100% - 72px), 1280px);
    }

    .cm-nav {
        gap: 32px;
    }

    .cm-nav a,
    .cm-header nav a {
        font-size: 16px !important;
    }

    .cm-hero-grid {
        height: 430px;
        min-height: 430px;
    }

    .cm-hero-content {
        min-height: 430px;
    }

    .cm-hero-image {
        height: 430px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .cm-header {
        width: calc(100% - 32px);

        height: 78px;

        margin-top: 16px;

        border-radius: 18px;
    }

    .cm-nav {
        gap: 20px;
    }

    .cm-nav a,
    .cm-header nav a {
        font-size: 14px !important;
    }

    .cm-hero {
        margin-top: 16px;
    }

    .cm-hero-grid {
        height: 400px;

        min-height: 400px;

        grid-template-columns: 1fr 1fr;
    }

    .cm-hero-content {
        min-height: 400px;

        padding:
            30px
            20px
            30px
            0;
    }

    .cm-hero-image {
        height: 400px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .cm-header {
        width: calc(100% - 24px);

        height: 68px;

        margin-top: 12px;

        border-radius: 16px;
    }

    .cm-header-inner {
        padding: 0 14px;
    }

    .cm-nav {
        gap: 12px;
    }

    .cm-nav a,
    .cm-header nav a {
        font-size: 13px !important;
    }

    .cm-hero {
        margin-top: 14px;
    }

    .cm-hero-grid {
        height: auto;

        min-height: auto;

        grid-template-columns: 1fr;
    }

    .cm-hero-content {
        min-height: auto;

        padding:
            35px
            20px
            25px;
    }

    .cm-hero-image {
        width: 100%;

        height: auto;

        min-height: 0;
    }

    .cm-hero-image img {
        width: 100%;

        height: auto;

        object-fit: cover;

        object-position: right center;
    }

}

/* =========================================================
   FINAL HERO ALIGNMENT FIX
   ========================================================= */

/* Full-width hero */
.cm-hero {
    width: 100%;
    max-width: none !important;
    margin-left: 0;
    margin-right: 0;

    overflow: hidden;
}


/* Hero grid full viewport */
.cm-hero-grid {
    width: 100%;
    max-width: none !important;

    grid-template-columns: 43% 57%;

    height: 430px;
    min-height: 430px;

    margin: 0;
}


/* Move left content slightly upward */
.cm-hero-content {
    justify-content: center;

    transform: translateY(-28px);

    padding-left: 55px;
    padding-right: 35px;
}


/* Image area */
.cm-hero-image {
    width: 100%;
    height: 430px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: transparent;

    display: block;
}


/* Image fills its complete right section */
.cm-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: right center;
}


/* Remove any possible wrapper spacing */
.cm-hero-image::before,
.cm-hero-image::after {
    display: none !important;
}


/* Benefits should sit directly below hero */
.cm-benefits-wrap {
    margin-top: 0 !important;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .cm-hero-grid {
        grid-template-columns: 43% 57%;
        height: 430px;
        min-height: 430px;
    }

    .cm-hero-content {
        transform: translateY(-32px);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .cm-hero-grid {
        grid-template-columns: 44% 56%;
        height: 400px;
        min-height: 400px;
    }

    .cm-hero-content {
        transform: translateY(-18px);

        padding-left: 30px;
        padding-right: 20px;
    }

    .cm-hero-image {
        height: 400px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .cm-hero-grid {
        grid-template-columns: 1fr;

        height: auto;
        min-height: auto;
    }

    .cm-hero-content {
        transform: none;

        padding:
            35px
            20px
            25px;
    }

    .cm-hero-image {
        height: auto;
    }

    .cm-hero-image img {
        width: 100%;
        height: auto;

        object-fit: cover;
    }

}

/* =========================================================
   CLEANMART - FINAL SECTION SPACING
   ========================================================= */

/* ---------------------------------------------------------
   HERO → BENEFITS
   Give hero image a little breathing room
   --------------------------------------------------------- */

.cm-benefits-wrap {
    margin-top: 14px !important;
}


/* ---------------------------------------------------------
   BENEFITS → CATEGORIES
   Reduce the large empty gap
   --------------------------------------------------------- */

.cm-categories {
    padding-top: 32px !important;
    padding-bottom: 28px !important;
}


/* ---------------------------------------------------------
   CATEGORY HEADING
   --------------------------------------------------------- */

.cm-categories .cm-section-heading {
    margin-bottom: 22px !important;
}


/* ---------------------------------------------------------
   CATEGORY IMAGES
   --------------------------------------------------------- */

.cm-category-grid {
    margin-top: 0 !important;
}


/* ---------------------------------------------------------
   CATEGORIES → PRODUCTS
   --------------------------------------------------------- */

.cm-products {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}


/* Product heading */
.cm-products .cm-section-title-row {
    margin-bottom: 20px !important;
}


/* ---------------------------------------------------------
   PRODUCTS → OFFER
   --------------------------------------------------------- */

.cm-offer-section {
    margin-top: 0 !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}


/* ---------------------------------------------------------
   OFFER → WHY CHOOSE
   --------------------------------------------------------- */

.cm-why {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}


/* Why heading */
.cm-why .cm-section-heading {
    margin-bottom: 18px !important;
}


/* ---------------------------------------------------------
   WHY → NEWSLETTER
   --------------------------------------------------------- */

.cm-newsletter {
    margin-top: 0 !important;
}


/* =========================================================
   DESKTOP — tighter professional layout
   ========================================================= */

@media (min-width: 992px) {

    /* Categories */
    .cm-categories {
        padding-top: 30px !important;
        padding-bottom: 25px !important;
    }

    /* Products */
    .cm-products {
        padding-top: 25px !important;
        padding-bottom: 22px !important;
    }

    /* Offer */
    .cm-offer-section {
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }

    /* Why */
    .cm-why {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .cm-benefits-wrap {
        margin-top: 10px !important;
    }

    .cm-categories {
        padding-top: 28px !important;
        padding-bottom: 22px !important;
    }

    .cm-products {
        padding-top: 22px !important;
        padding-bottom: 20px !important;
    }

    .cm-offer-section {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .cm-why {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
    }

}

/* =========================================================
   CLEANMART HERO - TIGHT PRODUCT CROP
   ========================================================= */

@media (min-width: 992px) {

    .cm-hero-image {
        overflow: hidden !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }

    .cm-hero-image img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: 88% center !important;

        transform: scale(1.28) !important;
        transform-origin: right center !important;
    }

}

/* =========================================================
   CLEANMART - CONTENT SIZE BOOST
   Desktop only
   ========================================================= */

@media (min-width: 992px) {

    /* =========================
       CATEGORY SECTION
       ========================= */

    .cm-section-heading h2 {
        font-size: 32px !important;
        line-height: 1.15 !important;
    }

    .cm-section-heading .cm-eyebrow {
        font-size: 11px !important;
        letter-spacing: 1.5px !important;
    }

    .cm-category-item img {
        width: 118px !important;
        height: 118px !important;
    }

    .cm-category-item span,
    .cm-category-item strong,
    .cm-category-item a {
        font-size: 12px !important;
        font-weight: 700 !important;
    }


    /* =========================
       PRODUCTS
       ========================= */

    .cm-products .cm-section-title-row h2 {
        font-size: 32px !important;
        line-height: 1.15 !important;
    }

    .cm-products .cm-section-title-row .cm-eyebrow {
        font-size: 11px !important;
    }


    /* Product image area */
    .cm-product-image {
        height: 205px !important;
    }

    .cm-product-image img {
        max-height: 190px !important;
        width: auto !important;
        max-width: 88% !important;
    }


    /* Product name */
    .cm-product-card h3,
    .cm-product-card .cm-product-name {
        font-size: 13px !important;
        line-height: 1.45 !important;
    }


    /* Rating */
    .cm-product-card .cm-rating,
    .cm-product-card .cm-stars {
        font-size: 11px !important;
    }


    /* Price */
    .cm-product-card .cm-price,
    .cm-product-card strong {
        font-size: 15px !important;
    }


    /* Old price */
    .cm-product-card del,
    .cm-product-card .cm-old-price {
        font-size: 9px !important;
    }


    /* Discount */
    .cm-product-card .cm-discount {
        font-size: 9px !important;
        padding: 3px 6px !important;
    }


    /* Add cart button */
    .cm-product-card .cm-add-cart {
        height: 42px !important;
        font-size: 11px !important;
    }


    /* Product cards */
    .cm-product-card {
        min-height: 390px !important;
    }


    /* =========================
       OFFER BANNER
       ========================= */

    .cm-offer h2 {
        font-size: 30px !important;
        line-height: 1.1 !important;
    }

    .cm-offer p {
        font-size: 12px !important;
    }

    .cm-offer .cm-eyebrow {
        font-size: 10px !important;
    }

    .cm-offer .cm-primary-btn {
        font-size: 11px !important;
        height: 42px !important;
    }


    /* =========================
       WHY CHOOSE
       ========================= */

    .cm-why .cm-section-heading h2 {
        font-size: 28px !important;
    }

    .cm-why-item strong {
        font-size: 12px !important;
    }

    .cm-why-item span {
        font-size: 10px !important;
    }

    .cm-why-item i,
    .cm-why-item svg {
        font-size: 25px !important;
    }

}


/* =========================================================
   TABLET / MOBILE
   Keep current responsive sizing
   ========================================================= */

@media (max-width: 991px) {

    .cm-section-heading h2 {
        font-size: 28px !important;
    }

    .cm-product-image {
        height: 180px !important;
    }

}

/* =========================================================
   CATEGORY → PRODUCTS FINAL SPACING
   ========================================================= */

@media (min-width: 992px) {

    /* Category section ko compact karo */
    .cm-categories {
        padding-top: 20px !important;
        padding-bottom: 18px !important;
    }

    /* Category heading ke neeche gap */
    .cm-categories .cm-section-heading {
        margin-bottom: 16px !important;
    }

    /* Category grid */
    .cm-category-grid {
        margin-bottom: 0 !important;
    }


    /* =========================================
       TOP PICKS SECTION
       ========================================= */

    .cm-products {
        padding-top: 18px !important;
        padding-bottom: 22px !important;
    }

    .cm-products .cm-section-title-row {
        margin-bottom: 18px !important;
    }

    .cm-products .cm-section-title-row h2 {
        font-size: 32px !important;
        font-weight: 800 !important;
        line-height: 1.15 !important;
    }

    .cm-products .cm-section-title-row .cm-eyebrow {
        font-size: 11px !important;
        margin-bottom: 6px !important;
    }


    /* View All Products button */
    .cm-products .cm-view-all,
    .cm-products .cm-section-title-row a {
        min-height: 38px !important;
        padding: 0 18px !important;
        font-size: 11px !important;
    }

}

/* ================================
   CLEANMART OFFER BANNER - FINAL
================================ */

.cleanmart-offer {
    min-height: 220px;
}

.cleanmart-offer .offer-content {
    padding: 32px 55px;
}

.cleanmart-offer .offer-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.cleanmart-offer h2 {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 8px;
}

.cleanmart-offer p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.cleanmart-offer .offer-btn {
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
}

/* =====================================================
   CLEANMART FOOTER SOCIAL ICON FINAL FIX
===================================================== */

.cm-footer .cm-footer-brand .cm-socials {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    margin-top: 24px !important;
    padding-top: 0 !important;
}

.cm-footer .cm-footer-brand p {
    margin-bottom: 0 !important;
}

.cm-footer .cm-footer-brand .cm-socials a {
    width: 30px !important;
    height: 30px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex-shrink: 0 !important;

    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 50% !important;

    font-size: 12px !important;
    line-height: 1 !important;
}

/* FINAL SOCIAL ICON GAP FIX */

.cm-footer-brand p {
    margin-bottom: 35px !important;
}

.cm-footer-brand .cm-socials {
    margin-top: 0 !important;
}

/* =========================================
   CLEANMART SOCIAL ICON SPACING - FINAL FIX
========================================= */

.cm-footer-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.cm-footer-brand p {
    margin: 0 !important;
}

.cm-footer-brand .cm-socials {
    display: flex !important;
    margin-top: 30px !important;
}