/** Shopify CDN: Minification failed

Line 6:11 Unexpected "05"

**/
   SECTION 05 — OUR PRODUCT
   ========================================================= */

.product-section {
    position: relative;
    width: 100%;
    background: #F3F0E9;
    color: #171717;
    padding: 145px 0 100px;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.product-container {
    width: min(1440px, calc(100% - 96px));
    margin: 0 auto;
}


/* =========================================================
   SECTION MARKER
   ========================================================= */

.product-section-marker {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: #173A29;
}

.product-section-marker > span:first-child {
    font-size: 21px;
    line-height: 1;
    letter-spacing: 0;
    color: #171717;
}

.product-marker-line {
    width: 30px;
    height: 1px;
    background: #173A29;
}


/* =========================================================
   MAIN SHOWCASE
   ========================================================= */

.product-showcase {
    display: grid;

    /*
       COLUMN 1 = COMPLETE PRODUCT GALLERY
       COLUMN 2 = PRODUCT INFORMATION
       COLUMN 3 = BENEFITS
    */

    grid-template-columns:
        minmax(500px, 1.15fr)
        minmax(360px, 0.85fr)
        minmax(380px, 0.95fr);

    gap: 42px;

    margin-top: 50px;

    align-items: center;
}


/* =========================================================
   GALLERY
   ========================================================= */

.product-gallery {
    display: grid;

    grid-template-columns:
        72px
        minmax(0, 1fr);

    gap: 18px;

    width: 100%;
    min-width: 0;
}


/* =========================================================
   THUMBNAILS
   ========================================================= */

.product-thumbnails {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;

    min-width: 0;
}

.product-thumbnail {
    position: relative;

    width: 68px;
    height: 84px;

    flex: 0 0 auto;

    padding: 0;

    border: 1px solid #DDD7CC;
    border-radius: 8px;

    overflow: hidden;

    background: #E8E3DA;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-thumbnail:hover {
    transform: translateY(-2px);
}

.product-thumbnail.is-active {
    border-color: #294A38;

    box-shadow:
        0 0 0 1px #294A38;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   MAIN PRODUCT IMAGE
   ========================================================= */

.product-main-image {
    position: relative;

    width: 100%;
    min-width: 0;
}

.product-image-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 0.88 / 1;

    overflow: hidden;

    border-radius: 8px;

    background:
        radial-gradient(
            ellipse at center,
            #FAF8F3 0%,
            #E7E1D7 100%
        );

    border: 1px solid #DED8CD;

    box-shadow:
        0 18px 45px rgba(23, 58, 41, 0.06);
}

.product-image-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.3s ease,
        transform 0.5s ease;
}

.product-image-frame:hover img {
    transform: scale(1.015);
}


/* =========================================================
   GALLERY ARROWS
   ========================================================= */

.gallery-arrow {
    position: absolute;

    left: 50%;

    z-index: 5;

    transform: translateX(-50%);

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(47, 74, 54, 0.3);
    border-radius: 50%;

    background: rgba(247, 245, 242, 0.88);

    color: #173A29;

    cursor: pointer;

    font-size: 16px;

    backdrop-filter: blur(8px);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.gallery-arrow:hover {
    background: #173A29;
    color: #F7F5F2;

    transform:
        translateX(-50%)
        scale(1.05);
}

.gallery-arrow-up {
    top: 14px;
}

.gallery-arrow-down {
    bottom: 14px;
}


/* =========================================================
   MIDDLE — PRODUCT COPY
   ========================================================= */

.product-middle {
    align-self: center;

    width: 100%;

    padding: 20px 10px;
}

.product-eyebrow {
    display: block;

    margin-bottom: 28px;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.17em;

    color: #31513F;
}

.product-title {
    margin: 0;

    max-width: 440px;

    font-family:
        "Iowan Old Style",
        "Baskerville",
        "Times New Roman",
        Georgia,
        serif;

    font-size: clamp(48px, 4.2vw, 69px);
    line-height: 0.97;

    font-weight: 400;

    letter-spacing: -0.045em;
}

.product-title em {
    color: #294A38;
    font-style: italic;
}

.product-middle-rule {
    width: 48px;
    height: 1px;

    margin: 31px 0 24px;

    background: #31513F;
}

.product-intro {
    max-width: 430px;

    margin: 0;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 14px;
    line-height: 1.75;

    color: #5F5F58;
}


/* =========================================================
   MINI DETAILS
   ========================================================= */

.product-details-mini {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    max-width: 450px;

    margin-top: 30px;

    border-top: 1px solid #D8D2C7;
    border-bottom: 1px solid #D8D2C7;
}

.product-details-mini > div {
    padding: 15px 12px;

    border-right: 1px solid #D8D2C7;
}

.product-details-mini > div:first-child {
    padding-left: 0;
}

.product-details-mini > div:last-child {
    border-right: none;
}

.product-details-mini span,
.product-details-mini strong {
    display: block;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;
}

.product-details-mini span {
    margin-bottom: 6px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.12em;

    color: #73736C;
}

.product-details-mini strong {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 500;

    color: #29362F;
}


/* =========================================================
   PRODUCT BUTTONS
   ========================================================= */

.product-actions {
    display: flex;
    flex-direction: column;

    gap: 10px;

    max-width: 450px;

    margin-top: 30px;
}

.product-button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 54px;

    padding: 0 19px;

    border-radius: 5px;

    text-decoration: none;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.product-button:hover {
    transform: translateY(-2px);
}

.product-button span:last-child {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0;

    transition:
        transform 0.3s ease;
}

.product-button:hover span:last-child {
    transform: translateX(5px);
}


/* Primary */

.product-button-primary {
    background: #173A29;
    color: #F7F5F2;

    border: 1px solid #173A29;

    box-shadow:
        0 8px 20px rgba(23, 58, 41, 0.12);
}

.product-button-primary:hover {
    background: #214B36;
}


/* Secondary */

.product-button-secondary {
    background: transparent;
    color: #20221E;

    border: 1px solid #9FA69D;
}

.product-button-secondary:hover {
    background: #E8E5DD;
    border-color: #294A38;
}


/* =========================================================
   PRODUCT TRUST
   ========================================================= */

.product-trust {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 18px;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 9px;
    line-height: 1.5;

    color: #4F554F;
}

.product-trust-icon {
    width: 22px;
    height: 22px;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #718477;
    border-radius: 50%;

    color: #294A38;

    font-size: 10px;
}


/* =========================================================
   RIGHT — BENEFITS
   ========================================================= */

.product-benefits {
    align-self: center;

    width: 100%;

    padding-left: 18px;
}

.product-benefits-heading {
    margin-bottom: 9px;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;

    color: #173A29;
}

.product-benefit {
    display: grid;

    grid-template-columns:
        55px
        minmax(0, 1fr);

    gap: 15px;

    padding: 19px 0;

    border-bottom: 1px solid #D7D1C6;
}

.product-benefit:first-of-type {
    border-top: 1px solid #D7D1C6;
}

.benefit-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #AAB2A9;
    border-radius: 50%;
}

.benefit-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: #294A38;
    stroke-width: 1.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-benefit h3 {
    margin: 2px 0 5px;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;

    color: #234432;
}

.product-benefit p {
    max-width: 300px;

    margin: 0;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 10px;
    line-height: 1.6;

    color: #67675F;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.product-trust-strip {
    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr
        auto
        1fr
        auto
        1fr;

    align-items: center;

    margin-top: 55px;

    padding: 24px 25px;

    border: 1px solid #D8D1C5;
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.16);
}

.product-trust-item {
    display: grid;

    grid-template-columns:
        43px
        minmax(0, 1fr);

    gap: 13px;

    align-items: center;

    padding: 0 15px;
}

.product-trust-item:first-child {
    padding-left: 0;
}

.trust-strip-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #AEB7AE;
    border-radius: 50%;
}

.trust-strip-icon svg {
    width: 23px;
    height: 23px;

    fill: none;

    stroke: #294A38;
    stroke-width: 1.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-trust-item strong,
.product-trust-item span {
    display: block;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;
}

.product-trust-item strong {
    margin-bottom: 4px;

    font-size: 10px;
    font-weight: 600;

    color: #293F32;
}

.product-trust-item span {
    font-size: 9px;
    line-height: 1.4;

    color: #71716A;
}

.product-trust-divider {
    width: 1px;
    height: 45px;

    background: #D5CEC1;
}


/* =========================================================
   DISCLAIMER
   ========================================================= */

.product-disclaimer {
    max-width: 850px;

    margin: 18px auto 0;

    text-align: center;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 8px;
    line-height: 1.5;

    color: #85827A;
}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.product-section-marker,
.product-showcase,
.product-trust-strip,
.product-disclaimer {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.product-showcase {
    transition-delay: 0.08s;
}

.product-trust-strip {
    transition-delay: 0.16s;
}

.product-disclaimer {
    transition-delay: 0.22s;
}

.product-section.is-visible .product-section-marker,
.product-section.is-visible .product-showcase,
.product-section.is-visible .product-trust-strip,
.product-section.is-visible .product-disclaimer {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   ACCESSIBILITY / JS FAILURE FALLBACK
   ========================================================= */

/*
   If JavaScript is disabled, don't permanently hide
   the product section.
*/

.no-js .product-section-marker,
.no-js .product-showcase,
.no-js .product-trust-strip,
.no-js .product-disclaimer {
    opacity: 1;
    transform: none;
}


/* =========================================================
   LARGE TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1200px) {

    .product-container {
        width: min(1100px, calc(100% - 64px));
    }

    .product-showcase {
        grid-template-columns:
            minmax(400px, 1fr)
            minmax(300px, 0.85fr)
            minmax(320px, 0.9fr);

        gap: 25px;
    }

    .product-gallery {
        grid-template-columns:
            60px
            minmax(0, 1fr);

        gap: 12px;
    }

    .product-thumbnail {
        width: 56px;
        height: 70px;
    }

    .product-benefit {
        grid-template-columns:
            45px
            minmax(0, 1fr);

        gap: 12px;

        padding: 17px 0;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .product-trust-strip {
        padding: 20px 15px;
    }

    .product-trust-item {
        padding: 0 10px;
        gap: 9px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .product-container {
        width: calc(100% - 48px);
    }

    /*
       At this width, keep the gallery together
       and give it priority over the benefit column.
    */

    .product-showcase {
        grid-template-columns:
            minmax(360px, 1.05fr)
            minmax(300px, 0.95fr);

        gap: 40px;
    }

    .product-gallery {
        grid-column: 1;
    }

    .product-middle {
        grid-column: 2;
    }

    .product-benefits {
        grid-column: 1 / -1;

        padding-left: 0;
    }

    .product-benefits-heading {
        margin-top: 10px;
    }

    .product-benefit {
        grid-template-columns:
            48px
            minmax(0, 1fr);
    }

    .product-trust-strip {
        grid-template-columns:
            1fr
            1fr;

        gap: 22px;
    }

    .product-trust-divider {
        display: none;
    }
}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 850px) {

    .product-section {
        padding: 110px 0 80px;
    }

    .product-container {
        width: calc(100% - 40px);
    }

    /*
       From here onward the three major areas
       become a clean vertical sequence.
    */

    .product-showcase {
        display: flex;
        flex-direction: column;

        gap: 55px;

        margin-top: 42px;

        align-items: stretch;
    }

    .product-gallery,
    .product-middle,
    .product-benefits {
        width: 100%;
    }

    .product-gallery {
        display: grid;

        grid-template-columns:
            64px
            minmax(0, 1fr);

        gap: 16px;
    }

    .product-middle {
        padding: 0;
    }

    .product-title {
        max-width: 520px;

        font-size:
            clamp(
                48px,
                8vw,
                64px
            );
    }

    .product-intro {
        max-width: 560px;
    }

    .product-benefits {
        padding-left: 0;
    }

    .product-benefits-heading {
        margin-bottom: 12px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .product-section {
        padding: 90px 0 70px;
    }

    .product-container {
        width: calc(100% - 40px);
    }

    .product-section-marker {
        gap: 10px;

        font-size: 9px;
    }

    .product-section-marker > span:first-child {
        font-size: 19px;
    }

    .product-marker-line {
        width: 25px;
    }


    /* -----------------------------------------------------
       SHOWCASE
       ----------------------------------------------------- */

    .product-showcase {
        display: flex;
        flex-direction: column;

        gap: 48px;

        margin-top: 38px;
    }


    /* -----------------------------------------------------
       GALLERY
       ----------------------------------------------------- */

    .product-gallery {
        display: flex;
        flex-direction: column;

        width: 100%;

        gap: 13px;
    }

    .product-main-image {
        order: 1;

        width: 100%;
    }

    .product-thumbnails {
        order: 2;

        width: 100%;

        display: flex;
        flex-direction: row;

        align-items: center;
        justify-content: center;

        gap: 9px;

        overflow-x: auto;

        padding: 2px 0 4px;

        scrollbar-width: none;
    }

    .product-thumbnails::-webkit-scrollbar {
        display: none;
    }

    .product-thumbnail {
        width: 62px;
        height: 70px;

        flex: 0 0 auto;
    }

    .product-image-frame {
        width: 100%;

        aspect-ratio: 0.9 / 1;

        border-radius: 8px;
    }

    .product-image-frame img {
        width: 100%;
        height: 100%;

        object-fit: cover;

        opacity: 1;
        visibility: visible;
    }

    .gallery-arrow {
        display: none;
    }


    /* -----------------------------------------------------
       PRODUCT COPY
       ----------------------------------------------------- */

    .product-middle {
        width: 100%;

        padding: 0;
    }

    .product-eyebrow {
        margin-bottom: 20px;

        font-size: 9px;
    }

    .product-title {
        max-width: 100%;

        font-size:
            clamp(
                43px,
                12vw,
                58px
            );

        line-height: 0.98;
    }

    .product-middle-rule {
        margin: 25px 0 20px;
    }

    .product-intro {
        max-width: 100%;

        font-size: 13px;
        line-height: 1.7;
    }


    /* -----------------------------------------------------
       MINI DETAILS
       ----------------------------------------------------- */

    .product-details-mini {
        max-width: none;

        margin-top: 26px;
    }

    .product-details-mini > div {
        padding: 13px 10px;
    }

    .product-details-mini > div:first-child {
        padding-left: 0;
    }


    /* -----------------------------------------------------
       BUTTONS
       ----------------------------------------------------- */

    .product-actions {
        max-width: none;

        margin-top: 26px;
    }

    .product-button {
        min-height: 52px;

        padding: 0 17px;

        font-size: 10px;
    }


    /* -----------------------------------------------------
       TRUST
       ----------------------------------------------------- */

    .product-trust {
        margin-top: 15px;

        font-size: 8.5px;
    }


    /* -----------------------------------------------------
       BENEFITS
       ----------------------------------------------------- */

    .product-benefits {
        width: 100%;

        padding-left: 0;
    }

    .product-benefit {
        grid-template-columns:
            48px
            minmax(0, 1fr);

        gap: 15px;

        padding: 18px 0;
    }

    .product-benefit p {
        max-width: none;

        font-size: 10px;
    }


    /* -----------------------------------------------------
       TRUST STRIP
       ----------------------------------------------------- */

    .product-trust-strip {
        display: grid;

        grid-template-columns: 1fr;

        gap: 0;

        margin-top: 40px;

        padding: 5px 18px;
    }

    .product-trust-item,
    .product-trust-item:first-child {
        padding: 17px 0;

        border-bottom: 1px solid #D8D1C5;
    }

    .product-trust-item:last-child {
        border-bottom: none;
    }

    .product-trust-divider {
        display: none;
    }

    .product-disclaimer {
        padding: 0 10px;

        font-size: 7.5px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .product-container {
        width: calc(100% - 30px);
    }

    .product-section {
        padding: 80px 0 60px;
    }

    .product-title {
        font-size: 40px;
    }

    .product-gallery {
        gap: 11px;
    }

    .product-thumbnail {
        width: 55px;
        height: 62px;
    }

    .product-details-mini {
        grid-template-columns: 1fr;
    }

    .product-details-mini > div,
    .product-details-mini > div:first-child {
        padding: 12px 0;

        border-right: none;
        border-bottom: 1px solid #D8D2C7;
    }

    .product-details-mini > div:last-child {
        border-bottom: none;
    }

    .product-button {
        min-height: 50px;
    }

    .product-trust-strip {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .product-container {
        width: calc(100% - 26px);
    }

    .product-title {
        font-size: 37px;
    }

    .product-thumbnail {
        width: 51px;
        height: 58px;
    }

    .product-benefit {
        grid-template-columns:
            42px
            minmax(0, 1fr);

        gap: 12px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }
}
/* ========================================================= */


/* =========================================================
   SHOPIFY VISIBILITY
   Preserve the static design without depending on the
   static site's intersection observer.
========================================================= */

#product .product-section-marker,
#product .product-showcase,
#product .product-trust-strip,
#product .product-disclaimer {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

#product .product-image-frame img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block;
}

/* Neutral fallback when an image has not yet been selected
   in the Shopify theme editor. */
#product .product-image-fallback {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background:
        radial-gradient(
            ellipse at center,
            #FAF8F3 0%,
            #E7E1D7 100%
        );
}


/* =========================================================
   SANJEEVANI PRODUCT — FINAL VISUAL POLISH
   Scoped to #product so it cannot affect other sections.
   ========================================================= */

#product {
    padding: 185px 0 105px;
    background: #F3F0E9;
}

#product .product-container {
    width: min(1420px, calc(100% - 96px));
}

#product .product-section-marker {
    gap: 11px;
    margin-bottom: 0;
}

#product .product-section-marker > span:first-child {
    font-size: 18px;
}

#product .product-marker-line {
    width: 34px;
}

#product .product-showcase {
    grid-template-columns:
        minmax(430px, 1.08fr)
        minmax(330px, 0.82fr)
        minmax(330px, 0.88fr);
    gap: clamp(38px, 4vw, 68px);
    margin-top: 44px;
    align-items: center;
}

#product .product-gallery {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
}

#product .product-thumbnails {
    gap: 11px;
    padding-top: 2px;
}

#product .product-thumbnail {
    width: 58px;
    height: 72px;
    border-radius: 6px;
}

#product .product-image-frame {
    aspect-ratio: 0.94 / 1;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(23, 58, 41, 0.07);
}

#product .product-image-frame img {
    object-fit: cover;
}

#product .product-middle {
    padding: 8px 0;
}

#product .product-eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
    letter-spacing: 0.20em;
}

#product .product-title {
    max-width: 420px;
    font-size: clamp(48px, 3.8vw, 64px);
    line-height: 0.98;
}

#product .product-middle-rule {
    width: 42px;
    margin: 27px 0 21px;
}

#product .product-intro {
    max-width: 390px;
    font-size: 12.5px;
    line-height: 1.72;
}

#product .product-details-mini {
    max-width: 390px;
    margin-top: 24px;
}

#product .product-details-mini > div {
    padding: 13px 10px;
}

#product .product-details-mini > div:first-child {
    padding-left: 0;
}

#product .product-actions {
    max-width: 390px;
    margin-top: 23px;
}

#product .product-form {
    width: 100%;
}

/* Keep the homepage product CTA intentionally simple: one action,
   with no quantity picker occupying the editorial layout. */
#product .product-form input[type="number"],
#product .product-form .quantity,
#product .product-form quantity-input,
#product .product-form .quantity-selector {
    display: none !important;
}

#product .product-button {
    min-height: 50px;
    padding: 0 17px;
    border-radius: 4px;
    font-size: 10px;
}

#product .product-button span:last-child {
    font-size: 18px;
}

#product .product-trust {
    margin-top: 14px;
    font-size: 8.5px;
}

#product .product-benefits {
    padding-left: 4px;
}

#product .product-benefits-heading {
    margin-bottom: 7px;
    font-size: 9px;
    letter-spacing: 0.20em;
}

#product .product-benefit {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 13px;
    padding: 16px 0;
}

#product .benefit-icon {
    width: 40px;
    height: 40px;
}

#product .benefit-icon svg {
    width: 22px;
    height: 22px;
}

#product .product-benefit h3 {
    margin: 1px 0 4px;
    font-size: 11.5px;
}

#product .product-benefit p {
    max-width: 280px;
    font-size: 9px;
    line-height: 1.52;
}

#product .product-trust-strip {
    margin-top: 48px;
    padding: 21px 22px;
    border-radius: 6px;
}

#product .product-trust-item {
    padding: 0 13px;
    gap: 10px;
}

#product .trust-strip-icon {
    width: 36px;
    height: 36px;
}

#product .trust-strip-icon svg {
    width: 20px;
    height: 20px;
}

#product .product-trust-item strong {
    font-size: 9px;
}

#product .product-trust-item span {
    font-size: 8px;
}

#product .product-disclaimer {
    margin-top: 14px;
    font-size: 7.5px;
}


/* ------------------------- TABLET ------------------------- */

@media (max-width: 1180px) {
    #product {
        padding-top: 170px;
    }

    #product .product-container {
        width: calc(100% - 64px);
    }

    #product .product-showcase {
        grid-template-columns:
            minmax(360px, 1.05fr)
            minmax(300px, 0.95fr);
        gap: 42px;
    }

    #product .product-gallery {
        grid-column: 1;
    }

    #product .product-middle {
        grid-column: 2;
    }

    #product .product-benefits {
        grid-column: 1 / -1;
        padding-left: 0;
    }

    #product .product-benefits-heading {
        margin-top: 4px;
    }
}


/* -------------------------- MOBILE ------------------------- */

@media (max-width: 760px) {
    #product {
        padding: 115px 0 70px;
    }

    #product .product-container {
        width: calc(100% - 40px);
    }

    #product .product-showcase {
        gap: 42px;
        margin-top: 34px;
    }

    #product .product-gallery {
        gap: 11px;
    }

    #product .product-image-frame {
        aspect-ratio: 0.92 / 1;
    }

    #product .product-thumbnail {
        width: 58px;
        height: 66px;
    }

    #product .product-title {
        font-size: clamp(42px, 11vw, 56px);
    }

    #product .product-intro {
        max-width: 100%;
        font-size: 12.5px;
    }

    #product .product-details-mini {
        max-width: 100%;
    }

    #product .product-actions {
        max-width: 100%;
    }

    #product .product-benefits {
        padding-left: 0;
    }

    #product .product-trust-strip {
        margin-top: 38px;
        padding: 5px 17px;
    }
}


/* ---------------------- SMALL MOBILE ----------------------- */

@media (max-width: 420px) {
    #product {
        padding-top: 105px;
    }

    #product .product-container {
        width: calc(100% - 30px);
    }

    #product .product-title {
        font-size: 39px;
    }

    #product .product-thumbnail {
        width: 53px;
        height: 61px;
    }
}
/* =========================================================
   SANJEEVANI — OUR PRODUCT
   FINAL MOBILE LAYOUT
   Compact editorial product flow
   ========================================================= */

@media (max-width: 760px) {

    /* -----------------------------------------------------
       SECTION
       ----------------------------------------------------- */

    #product {
        padding: 62px 0 52px;
    }

    #product .product-container {
        width: calc(100% - 32px);
    }


    /* -----------------------------------------------------
       SECTION MARKER
       ----------------------------------------------------- */

    #product .product-section-marker {
        gap: 7px;

        font-size: 8px;

        letter-spacing: 0.17em;
    }

    #product .product-section-marker > span:first-child {
        font-size: 18px;
    }

    #product .product-marker-line {
        width: 26px;
    }


    /* =====================================================
       SHOWCASE
       ===================================================== */

    #product .product-showcase {
        display: flex;

        flex-direction: column;

        gap: 0;

        margin-top: 25px;

        align-items: stretch;
    }


    /* =====================================================
       01 — PRODUCT GALLERY
       ===================================================== */

    #product .product-gallery {
        order: 1;

        display: flex;

        flex-direction: column;

        width: 100%;

        gap: 10px;
    }

    #product .product-main-image {
        order: 1;

        width: 100%;
    }

    #product .product-image-frame {
        width: 100%;

        /*
         * Slightly shorter than the current
         * 0.92 / 1 ratio.
         */
        aspect-ratio: 1 / 1;

        border-radius: 7px;

        box-shadow:
            0 12px 32px rgba(23, 58, 41, 0.055);
    }

    #product .product-image-frame img {
        width: 100%;
        height: 100%;

        object-fit: cover;

        display: block;
    }


    /* -----------------------------------------------------
       THUMBNAILS
       ----------------------------------------------------- */

    #product .product-thumbnails {
        order: 2;

        width: 100%;

        display: flex;

        flex-direction: row;

        align-items: center;

        justify-content: center;

        gap: 8px;

        overflow-x: auto;

        padding: 1px 0 3px;

        scrollbar-width: none;
    }

    #product .product-thumbnails::-webkit-scrollbar {
        display: none;
    }

    #product .product-thumbnail {
        width: 54px;
        height: 62px;

        flex: 0 0 auto;

        border-radius: 5px;
    }

    #product .gallery-arrow {
        display: none;
    }


    /* =====================================================
       02 — CTA
       
       IMPORTANT:
       product-middle becomes display: contents so its
       children can participate directly in the mobile
       flex layout.

       This allows the buttons to visually move directly
       underneath the product gallery without changing
       the desktop markup.
       ===================================================== */

    #product .product-middle {
        display: contents;
    }


    /* -----------------------------------------------------
       CTA BUTTONS
       ----------------------------------------------------- */

    #product .product-actions {
        order: 2;

        width: 100%;

        max-width: none;

        margin-top: 17px;

        display: flex;

        flex-direction: column;

        gap: 8px;
    }

    #product .product-actions .product-form {
        width: 100%;
    }

    #product .product-button {
        width: 100%;

        min-height: 49px;

        padding: 0 15px;

        border-radius: 4px;

        font-size: 9px;

        letter-spacing: 0.075em;
    }

    #product .product-button span:last-child {
        font-size: 17px;
    }


    /* -----------------------------------------------------
       TRUST STATEMENT
       Immediately after CTA
       ----------------------------------------------------- */

    #product .product-trust {
        order: 3;

        width: 100%;

        margin-top: 12px;

        display: flex;

        align-items: center;

        gap: 8px;

        font-size: 8px;

        line-height: 1.4;
    }

    #product .product-trust-icon {
        width: 20px;
        height: 20px;

        font-size: 9px;
    }


    /* =====================================================
       03 — PRODUCT EDITORIAL COPY
       ===================================================== */

    #product .product-eyebrow {
        order: 4;

        width: 100%;

        margin-top: 37px;

        margin-bottom: 13px;

        font-size: 8px;

        letter-spacing: 0.18em;
    }

    #product .product-title {
        order: 5;

        width: 100%;

        max-width: 100%;

        margin: 0;

        font-size: clamp(
            39px,
            11vw,
            52px
        );

        line-height: 0.97;

        letter-spacing: -0.04em;
    }

    #product .product-middle-rule {
        order: 6;

        width: 35px;

        height: 1px;

        margin: 20px 0 15px;

        background: #31513F;
    }

    #product .product-intro {
        order: 7;

        width: 100%;

        max-width: 100%;

        margin: 0;

        font-size: 11px;

        line-height: 1.58;

        color: #5F5F58;
    }


    /* =====================================================
       04 — MINI PRODUCT DETAILS
       ===================================================== */

    #product .product-details-mini {
        order: 8;

        width: 100%;

        max-width: none;

        margin-top: 20px;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        border-top: 1px solid #D8D2C7;

        border-bottom: 1px solid #D8D2C7;
    }

    #product .product-details-mini > div,
    #product .product-details-mini > div:first-child {
        padding: 11px 7px;

        border-right: 1px solid #D8D2C7;

        border-bottom: none;
    }

    #product .product-details-mini > div:first-child {
        padding-left: 0;
    }

    #product .product-details-mini > div:last-child {
        border-right: none;
    }

    #product .product-details-mini span {
        margin-bottom: 4px;

        font-size: 7px;

        letter-spacing: 0.1em;
    }

    #product .product-details-mini strong {
        font-size: 9px;

        line-height: 1.3;
    }


    /* =====================================================
       05 — BENEFITS
       ===================================================== */

    #product .product-benefits {
        order: 10;

        width: 100%;

        margin-top: 38px;

        padding-left: 0;
    }

    #product .product-benefits-heading {
        margin-bottom: 5px;

        font-size: 8px;

        letter-spacing: 0.18em;
    }

    #product .product-benefit {
        display: grid;

        grid-template-columns: 40px minmax(0, 1fr);

        gap: 12px;

        padding: 13px 0;

        border-bottom: 1px solid #D7D1C6;
    }

    #product .product-benefit:first-of-type {
        border-top: 1px solid #D7D1C6;
    }

    #product .benefit-icon {
        width: 36px;
        height: 36px;
    }

    #product .benefit-icon svg {
        width: 20px;
        height: 20px;
    }

    #product .product-benefit h3 {
        margin: 0 0 3px;

        font-size: 10.5px;

        line-height: 1.3;
    }

    #product .product-benefit p {
        max-width: none;

        font-size: 8.5px;

        line-height: 1.45;
    }


    /* =====================================================
       06 — TRUST STRIP
       ===================================================== */

    #product .product-trust-strip {
        order: 11;

        width: 100%;

        margin-top: 27px;

        padding: 3px 14px;

        border-radius: 6px;
    }

    #product .product-trust-item,
    #product .product-trust-item:first-child {
        padding: 13px 0;

        border-bottom: 1px solid #D8D1C5;
    }

    #product .product-trust-item:last-child {
        border-bottom: none;
    }

    #product .product-trust-divider {
        display: none;
    }

    #product .trust-strip-icon {
        width: 34px;
        height: 34px;
    }

    #product .trust-strip-icon svg {
        width: 18px;
        height: 18px;
    }

    #product .product-trust-item strong {
        margin-bottom: 3px;

        font-size: 8.5px;
    }

    #product .product-trust-item span {
        font-size: 7.5px;
    }


    /* =====================================================
       DISCLAIMER
       ===================================================== */

    #product .product-disclaimer {
        order: 12;

        margin-top: 11px;

        padding: 0 8px;

        font-size: 7px;

        line-height: 1.45;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    #product {
        padding: 54px 0 45px;
    }

    #product .product-container {
        width: calc(100% - 28px);
    }

    #product .product-showcase {
        margin-top: 22px;
    }

    #product .product-image-frame {
        aspect-ratio: 1.02 / 1;
    }

    #product .product-thumbnail {
        width: 50px;
        height: 57px;
    }

    #product .product-actions {
        margin-top: 15px;
    }

    #product .product-button {
        min-height: 47px;

        font-size: 8.5px;
    }

    #product .product-eyebrow {
        margin-top: 32px;
    }

    #product .product-title {
        font-size: 37px;
    }

    #product .product-intro {
        font-size: 10.5px;
    }

    #product .product-details-mini > div,
    #product .product-details-mini > div:first-child {
        padding: 10px 5px;
    }

    #product .product-details-mini span {
        font-size: 6.5px;
    }

    #product .product-details-mini strong {
        font-size: 8.5px;
    }

    #product .product-benefits {
        margin-top: 32px;
    }

    #product .product-benefit {
        grid-template-columns: 37px minmax(0, 1fr);

        gap: 10px;

        padding: 12px 0;
    }

    #product .benefit-icon {
        width: 34px;
        height: 34px;
    }

    #product .product-benefit h3 {
        font-size: 10px;
    }

    #product .product-benefit p {
        font-size: 8px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    #product .product-container {
        width: calc(100% - 24px);
    }

    #product .product-image-frame {
        aspect-ratio: 1.04 / 1;
    }

    #product .product-thumbnail {
        width: 47px;
        height: 54px;
    }

    #product .product-title {
        font-size: 35px;
    }

    #product .product-button {
        min-height: 45px;
    }
}
/* =========================================================
   MOBILE — HIDE "WHY SANJEEVANI" FEATURES
   Keep the mobile product section compact.
   ========================================================= */

@media (max-width: 760px) {

    #product .product-benefits {
        display: none !important;
    }

}