/* =========================================================
   RAIN SPREE
   HOME DISCOVER
   FIND WHAT FITS YOU + WHY SHOP WITH US
   ========================================================= */


/* =========================================================
   MAIN SECTION
   ========================================================= */

.rs-home-discover {
    width: 100%;
    padding: 55px 0;
    background: #ffffff;
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.rs-home-discover-container {
    width: calc(100% - 64px);
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   FIND WHAT FITS YOU — HEADER
   ========================================================= */

.rs-fit-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 0;
}

.rs-fit-eyebrow,
.rs-why-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #3d7438;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.4;

    text-transform: uppercase;
}

.rs-fit-header h2 {
    margin: 0;

    color: #29472d;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 600;
    line-height: 1.05;
}


/* =========================================================
   CATEGORY GRID
   DESKTOP — 3 CARDS
   ========================================================= */

.rs-fit-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    width: 100%;

    box-sizing: border-box;
}


/* =========================================================
   CATEGORY CARD
   ========================================================= */

.rs-fit-card {
    position: relative;

    min-width: 0;
    min-height: 390px;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    padding: 28px;

    border-radius: 24px;

    box-sizing: border-box;
}


/* =========================================================
   CATEGORY COLORS
   ========================================================= */

.rs-fit-wellness {
    background: #edf6e9;
}

.rs-fit-digital {
    background: #f3edff;
}

.rs-fit-pod {
    background: #fff1e6;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.rs-fit-card-content {
    position: relative;

    z-index: 2;

    max-width: 72%;
}


/* =========================================================
   CATEGORY ICON
   ========================================================= */

.rs-fit-icon {
    width: 44px;
    height: 44px;

    display: flex;

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

    margin-bottom: 17px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .82);

    font-size: 17px;
}


/* =========================================================
   CATEGORY ICON COLORS
   ========================================================= */

.rs-fit-wellness .rs-fit-icon,
.rs-fit-wellness .rs-fit-button {
    color: #2f7d3c;
}

.rs-fit-digital .rs-fit-icon,
.rs-fit-digital .rs-fit-button {
    color: #7138c8;
}

.rs-fit-pod .rs-fit-icon,
.rs-fit-pod .rs-fit-button {
    color: #d96518;
}


/* =========================================================
   CATEGORY TITLE
   ========================================================= */

.rs-fit-card h3 {
    margin: 0 0 12px;

    color: #29472d;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 29px;
    font-weight: 600;
    line-height: 1.05;
}

.rs-fit-digital h3 {
    color: #563092;
}

.rs-fit-pod h3 {
    color: #a94f13;
}


/* =========================================================
   CATEGORY DESCRIPTION
   ========================================================= */

.rs-fit-card p {
    margin: 0;

    color: #5e665e;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   CATEGORY BUTTON
   ========================================================= */

.rs-fit-button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    padding: 10px 15px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .82);

    font-family:
        "Inter",
        Arial,
        sans-serif;

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

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease;
}

.rs-fit-button:hover {
    transform: translateY(-2px);

    background: #ffffff;
}


/* =========================================================
   CATEGORY IMAGE
   ========================================================= */

.rs-fit-card-image {
    position: absolute;

    right: -5px;
    bottom: -5px;

    width: 54%;
    height: 55%;

    z-index: 1;

    pointer-events: none;
}

.rs-fit-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: bottom right;
}


/* =========================================================
   WHY SHOP HEADER
   ========================================================= */

.rs-why-header {
    text-align: center;

    margin-top: 55px;
    margin-bottom: 30px;
}

.rs-why-header h2 {
    margin: 0;

    color: #29472d;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 600;
    line-height: 1.05;
}


/* =========================================================
   WHY SHOP GRID
   DESKTOP — 5 COLUMNS
   ========================================================= */

.rs-why-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    width: 100%;

    border-top:
        1px solid
        rgba(50, 90, 50, .10);

    border-bottom:
        1px solid
        rgba(50, 90, 50, .10);

    box-sizing: border-box;
}


/* =========================================================
   WHY SHOP CARD
   ========================================================= */

.rs-why-card {
    min-width: 0;

    padding: 30px 22px;

    text-align: center;

    box-sizing: border-box;

    border-right:
        1px solid
        rgba(50, 90, 50, .10);
}

.rs-why-card:last-child {
    border-right: 0;
}


/* =========================================================
   WHY SHOP ICON
   ========================================================= */

.rs-why-icon {
    width: 48px;
    height: 48px;

    display: flex;

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

    margin: 0 auto 15px;

    border-radius: 50%;

    background: #edf6e9;

    color: #347437;

    font-size: 18px;
}


/* =========================================================
   WHY SHOP TITLE
   ========================================================= */

.rs-why-card h3 {
    margin: 0 0 9px;

    color: #304432;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================================
   WHY SHOP DESCRIPTION
   ========================================================= */

.rs-why-card p {
    margin: 0;

    color: #697169;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 11px;
    line-height: 1.55;
}


/* =========================================================
   TABLET + MOBILE
   COMPACT / HORIZONTAL CATEGORY EXPERIENCE
   ========================================================= */

@media (max-width: 1000px) {

    /* -----------------------------------------------------
       SECTION
       ----------------------------------------------------- */

    .rs-home-discover {
        padding: 42px 0;
    }

    .rs-home-discover-container {
        width: calc(100% - 32px);
        max-width: none;
    }


    /* -----------------------------------------------------
       FIND WHAT FITS YOU HEADER
       ----------------------------------------------------- */

    .rs-fit-header {
        margin-bottom: 22px;
        padding: 0 4px;
    }

    .rs-fit-eyebrow,
    .rs-why-eyebrow {
        font-size: 10px;
        letter-spacing: 1.7px;
    }

    .rs-fit-header h2 {
        font-size: clamp(30px, 5vw, 40px);
        line-height: 1.08;
    }


    /* -----------------------------------------------------
       CATEGORY CARDS
       HORIZONTAL SWIPE
       ----------------------------------------------------- */

    .rs-fit-grid {
        display: grid;

        grid-template-columns: none;

        grid-auto-flow: column;

        grid-auto-columns:
            minmax(285px, 78vw);

        gap: 14px;

        width: 100%;

        overflow-x: auto;
        overflow-y: hidden;

        padding: 2px 4px 14px;

        box-sizing: border-box;

        scroll-snap-type: x mandatory;

        overscroll-behavior-x: contain;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .rs-fit-grid::-webkit-scrollbar {
        display: none;
    }


    /* -----------------------------------------------------
       CATEGORY CARD
       ----------------------------------------------------- */

    .rs-fit-card {
        width: 100%;
        min-width: 0;

        min-height: 330px;
        height: 330px;

        padding: 23px;

        border-radius: 22px;

        scroll-snap-align: start;

        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       CARD CONTENT
       ----------------------------------------------------- */

    .rs-fit-card-content {
        max-width: 72%;
    }

    .rs-fit-icon {
        width: 40px;
        height: 40px;

        margin-bottom: 14px;

        font-size: 15px;
    }

    .rs-fit-card h3 {
        margin-bottom: 10px;

        font-size: 27px;

        line-height: 1.05;
    }

    .rs-fit-card p {
        font-size: 12px;
        line-height: 1.55;
    }

    .rs-fit-button {
        margin-top: 16px;

        padding: 9px 13px;

        font-size: 11px;
    }


    /* -----------------------------------------------------
       CATEGORY IMAGE
       ----------------------------------------------------- */

    .rs-fit-card-image {
        right: -4px;
        bottom: -4px;

        width: 58%;
        height: 56%;
    }


    /* -----------------------------------------------------
       WHY SHOP HEADER
       ----------------------------------------------------- */

    .rs-why-header {
        margin-top: 42px;
        margin-bottom: 22px;
    }

    .rs-why-header h2 {
        font-size: clamp(30px, 5vw, 40px);
        line-height: 1.08;
    }


    /* -----------------------------------------------------
       WHY SHOP
       COMPACT 2-COLUMN GRID
       ----------------------------------------------------- */

    .rs-why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 100%;
    }

    .rs-why-card {
        padding: 23px 16px;

        border-right:
            1px solid
            rgba(50, 90, 50, .10);

        border-bottom:
            1px solid
            rgba(50, 90, 50, .10);
    }

    .rs-why-card:nth-child(2n) {
        border-right: 0;
    }

    .rs-why-card:nth-child(4),
    .rs-why-card:nth-child(5) {
        border-top: 0;
    }

    .rs-why-icon {
        width: 42px;
        height: 42px;

        margin-bottom: 12px;

        font-size: 16px;
    }

    .rs-why-card h3 {
        margin-bottom: 7px;

        font-size: 13px;
    }

    .rs-why-card p {
        font-size: 10.5px;
        line-height: 1.5;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .rs-home-discover {
        padding: 34px 0;
    }

    .rs-home-discover-container {
        width: calc(100% - 22px);
    }


    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    .rs-fit-header {
        margin-bottom: 18px;
    }

    .rs-fit-eyebrow,
    .rs-why-eyebrow {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .rs-fit-header h2 {
        font-size: 29px;
    }


    /* -----------------------------------------------------
       CATEGORY SLIDER
       ----------------------------------------------------- */

    .rs-fit-grid {
        grid-auto-columns: 82vw;

        gap: 12px;

        padding-left: 2px;
        padding-right: 2px;
        padding-bottom: 10px;
    }


    /* -----------------------------------------------------
       CATEGORY CARD
       ----------------------------------------------------- */

    .rs-fit-card {
        min-height: 315px;
        height: 315px;

        padding: 21px;

        border-radius: 20px;
    }

    .rs-fit-card-content {
        max-width: 73%;
    }

    .rs-fit-icon {
        width: 38px;
        height: 38px;

        margin-bottom: 12px;

        font-size: 14px;
    }

    .rs-fit-card h3 {
        font-size: 25px;
    }

    .rs-fit-card p {
        font-size: 11.5px;
    }

    .rs-fit-button {
        margin-top: 14px;

        padding: 8px 12px;

        font-size: 10.5px;
    }


    /* -----------------------------------------------------
       CATEGORY IMAGE
       ----------------------------------------------------- */

    .rs-fit-card-image {
        width: 60%;
        height: 55%;
    }


    /* -----------------------------------------------------
       WHY SHOP
       ----------------------------------------------------- */

    .rs-why-header {
        margin-top: 34px;
        margin-bottom: 18px;
    }

    .rs-why-header h2 {
        font-size: 29px;
    }

    .rs-why-card {
        padding: 20px 12px;
    }

    .rs-why-icon {
        width: 38px;
        height: 38px;

        margin-bottom: 10px;

        font-size: 14px;
    }

    .rs-why-card h3 {
        font-size: 12px;
    }

    .rs-why-card p {
        font-size: 10px;
    }

}

/* =========================================================
   WHY RAIN SPREE
   Premium Glassmorphism Section
   ========================================================= */

.rs-why-rainspree {
    width: 100%;
    margin: 0;
    padding: 64px 24px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(115, 154, 92, 0.18),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(177, 202, 132, 0.14),
            transparent 34%
        ),
        #17351f;
    box-sizing: border-box;
}

.rs-why-rainspree *,
.rs-why-rainspree *::before,
.rs-why-rainspree *::after {
    box-sizing: border-box;
}


/* =========================================================
   INNER GLASS PANEL
   ========================================================= */

.rs-why-rainspree__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 44px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 24px 60px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   HEADER
   ========================================================= */

.rs-why-rainspree__header {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

.rs-why-rainspree__eyebrow {
    display: block;
    margin: 0 0 12px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.rs-why-rainspree__header h2 {
    margin: 0;

    color: #ffffff;

    font-family: inherit;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 400;
}


/* =========================================================
   HEADER DIVIDER
   ========================================================= */

.rs-why-rainspree__divider {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 22px;

    color: #dcecbf;
}

.rs-why-rainspree__divider span {
    display: block;

    width: 65px;
    height: 1px;

    background: rgba(255, 255, 255, 0.35);
}

.rs-why-rainspree__divider i {
    font-size: 11px;
}


/* =========================================================
   BENEFIT GRID
   ========================================================= */

.rs-why-rainspree__grid {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 16px;

    width: 100%;
}


/* =========================================================
   BENEFIT CARD
   ========================================================= */

.rs-why-rainspree__card {
    position: relative;

    min-width: 0;
    min-height: 330px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 30px 22px 28px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.13);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 10px 28px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.rs-why-rainspree__card:hover {
    transform: translateY(-7px);

    background: rgba(255, 255, 255, 0.19);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 18px 36px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   ICON
   ========================================================= */

.rs-why-rainspree__icon {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;

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

    margin: 0 auto 22px;

    flex-shrink: 0;

    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.72);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.08);

    font-size: 25px;
}

.rs-why-rainspree__icon i {
    line-height: 1;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.rs-why-rainspree__card h3 {
    position: relative;
    z-index: 2;

    width: 100%;

    margin: 0;

    color: #193a21;

    font-size: 21px;
    line-height: 1.12;
    font-weight: 700;

    text-align: center;
}


/* =========================================================
   CARD DIVIDER
   ========================================================= */

.rs-why-rainspree__line {
    display: block;

    width: 38px;
    height: 2px;

    margin: 17px auto;

    border-radius: 10px;

    background: currentColor;

    opacity: 0.5;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.rs-why-rainspree__card p {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 220px;

    margin: 0 auto;

    color: #304734;

    font-size: 13px;
    line-height: 1.55;

    text-align: center;
}


/* =========================================================
   DECORATIVE BACKGROUND ICON
   ========================================================= */

.rs-why-rainspree__decor {
    position: absolute;

    right: 10px;
    bottom: -10px;

    z-index: 1;

    color: currentColor;

    font-size: 92px;

    line-height: 1;

    opacity: 0.075;

    pointer-events: none;

    transform: rotate(-8deg);
}


/* =========================================================
   CARD COLOR THEMES
   ========================================================= */

/* WELLNESS */

.rs-why-rainspree__card--wellness {
    color: #3d7a35;

    background:
        linear-gradient(
            145deg,
            rgba(230, 245, 211, 0.56),
            rgba(211, 235, 192, 0.32)
        );
}

.rs-why-rainspree__card--wellness
.rs-why-rainspree__icon {
    color: #39752f;
}


/* DIGITAL */

.rs-why-rainspree__card--digital {
    color: #633db5;

    background:
        linear-gradient(
            145deg,
            rgba(228, 216, 255, 0.58),
            rgba(210, 195, 250, 0.34)
        );
}

.rs-why-rainspree__card--digital
.rs-why-rainspree__icon {
    color: #633bb4;
}


/* PRINT ON DEMAND */

.rs-why-rainspree__card--pod {
    color: #df5d18;

    background:
        linear-gradient(
            145deg,
            rgba(255, 226, 202, 0.60),
            rgba(255, 210, 176, 0.34)
        );
}

.rs-why-rainspree__card--pod
.rs-why-rainspree__icon {
    color: #dc5a13;
}


/* ONE PLACE */

.rs-why-rainspree__card--selection {
    color: #47753d;

    background:
        linear-gradient(
            145deg,
            rgba(231, 244, 220, 0.55),
            rgba(211, 235, 201, 0.32)
        );
}

.rs-why-rainspree__card--selection
.rs-why-rainspree__icon {
    color: #397039;
}


/* SUPPORT */

.rs-why-rainspree__card--support {
    color: #3c7047;

    background:
        linear-gradient(
            145deg,
            rgba(224, 240, 218, 0.55),
            rgba(203, 229, 202, 0.32)
        );
}

.rs-why-rainspree__card--support
.rs-why-rainspree__icon {
    color: #32643c;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1150px) {

    .rs-why-rainspree__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rs-why-rainspree__card {
        min-height: 300px;
    }

}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {

    .rs-why-rainspree {
        padding: 50px 18px;
    }

    .rs-why-rainspree__inner {
        padding: 36px 22px;
    }

    .rs-why-rainspree__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .rs-why-rainspree {
        padding: 38px 12px;
    }

    .rs-why-rainspree__inner {
        padding: 30px 14px;
        border-radius: 22px;
    }

    .rs-why-rainspree__header {
        margin-bottom: 30px;
    }

    .rs-why-rainspree__eyebrow {
        font-size: 9px;
        letter-spacing: 0.18em;
    }

    .rs-why-rainspree__header h2 {
        font-size: 29px;
        line-height: 1.12;
    }

    .rs-why-rainspree__divider {
        margin-top: 17px;
    }

    .rs-why-rainspree__divider span {
        width: 42px;
    }

   .rs-why-rainspree__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(260px, 78vw));
    gap: 12px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    }

    .rs-why-rainspree__grid::-webkit-scrollbar {
        display: none;
    }

    .rs-why-rainspree__card {
        width: 100%;
        min-width: 0;
        min-height: 250px;
        padding: 28px 20px;
        border-radius: 20px;
        scroll-snap-align: start;
        box-sizing: border-box;
    }

    .rs-why-rainspree__icon {
        width: 62px;
        height: 62px;
        margin-bottom: 18px;
        font-size: 23px;
    }

    .rs-why-rainspree__card h3 {
        font-size: 20px;
    }

    .rs-why-rainspree__card p {
        max-width: 280px;
        font-size: 13px;
    }

    .rs-why-rainspree__decor {
        font-size: 75px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .rs-why-rainspree {
        padding-left: 8px;
        padding-right: 8px;
    }

    .rs-why-rainspree__inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .rs-why-rainspree__header h2 {
        font-size: 26px;
    }

}


/*==================================================*
 * WHY RAIN SPREE — MAIN HEADING
 *==================================================*/

.rs-why-rainspree__header h2 {

    margin: 0 auto 14px;

    max-width: 780px;

    font-family: var(--rs-font-heading);

    font-size: 2.8rem;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -0.01em;

    color: var(--rs-primary) !important;

    text-align: center;
}


/* MOBILE */

@media (max-width: 768px) {

    .rs-why-rainspree__header h2 {

        font-size: 2.15rem;

        line-height: 1.15;

        max-width: 90%;

    }

}

/* =========================================================
   RAIN SPREE — HOME DISCOVER FINAL GLASS
   Enclosed panel like Newsletter
   ========================================================= */


/* OUTER SECTION */

.rs-home-discover {

    width: 100%;

    padding:
        18px 0;

    background:
        transparent !important;

    border:
        0 !important;

    box-shadow:
        none !important;
}


/* ENCLOSED GLASS PANEL */

.rs-home-discover-container {

    position: relative;

    width:
        calc(100% - 56px);

    max-width:
        1380px;

    margin:
        18px auto;

    padding:
        38px;

    background:
        rgba(255,255,255,.68);

    border:
        1px solid rgba(255,255,255,.88);

    border-radius:
        30px;

    box-shadow:
        0 18px 50px rgba(31,94,47,.08),
        0 5px 25px rgba(255,255,255,.30);

    backdrop-filter:
        blur(24px)
        saturate(125%);

    -webkit-backdrop-filter:
        blur(24px)
        saturate(125%);

    overflow:
        hidden;

    box-sizing:
        border-box;
}


/* INNER GLASS EDGE */

.rs-home-discover-container::before {

    content: "";

    position: absolute;

    inset: 1px;

    border:
        1px solid rgba(255,255,255,.42);

    border-radius:
        29px;

    pointer-events:
        none;

    z-index:
        0;
}


/* SUBTLE LIGHT */

.rs-home-discover-container::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.14),
            rgba(255,255,255,.025) 50%,
            rgba(255,255,255,.08)
        );

    pointer-events:
        none;

    z-index:
        0;
}


/* CONTENT ABOVE GLASS */

.rs-home-discover-container > * {

    position:
        relative;

    z-index:
        1;
}


/* =========================================================
   DISCOVER MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .rs-home-discover {

        padding:
            10px 0;
    }

    .rs-home-discover-container {

        width:
            calc(100% - 24px);

        margin:
            12px auto;

        padding:
            24px 16px;

        border-radius:
            22px;
    }

    .rs-home-discover-container::before {

        border-radius:
            21px;
    }

}

/* =========================================================
   RAIN SPREE
   WHY RAIN SPREE
   UNIFIED CLICKABLE CARDS
   ========================================================= */

/* =========================================================
   CARD BASE
   ========================================================= */

.rs-why-rainspree__card {

    position: relative !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 300px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    padding: 28px 20px 22px !important;

    box-sizing: border-box !important;

    overflow: hidden !important;

    border:
        1px solid rgba(255, 255, 255, 0.82) !important;

    border-radius: 22px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.82),
            rgba(242, 247, 239, 0.72)
        ) !important;

    color: #31563a !important;

    cursor: pointer !important;

    text-align: center !important;

    font: inherit !important;

    appearance: none !important;
    -webkit-appearance: none !important;

    box-shadow:
        0 8px 22px rgba(47, 90, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease !important;
}


/* =========================================================
   UNIFY ALL EXISTING CARD COLORS
   ========================================================= */

.rs-why-rainspree__card--wellness,
.rs-why-rainspree__card--digital,
.rs-why-rainspree__card--pod,
.rs-why-rainspree__card--selection,
.rs-why-rainspree__card--support {

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.82),
            rgba(242, 247, 239, 0.72)
        ) !important;

    color: #31563a !important;
}


/* =========================================================
   HOVER
   ========================================================= */

.rs-why-rainspree__card:hover {

    transform:
        translateY(-7px) !important;

    border-color:
        rgba(62, 128, 70, 0.30) !important;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(235, 245, 231, 0.86)
        ) !important;

    box-shadow:
        0 18px 38px rgba(47, 90, 55, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}


/* =========================================================
   KEYBOARD FOCUS
   ========================================================= */

.rs-why-rainspree__card:focus-visible {

    outline:
        3px solid rgba(62, 128, 70, 0.30) !important;

    outline-offset:
        4px !important;
}


/* =========================================================
   ICON
   ========================================================= */

.rs-why-rainspree__icon {

    width: 62px !important;
    height: 62px !important;

    flex: 0 0 62px !important;

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

    margin:
        0 auto 16px !important;

    border:
        1px solid rgba(255, 255, 255, 0.92) !important;

    border-radius:
        50% !important;

    background:
        rgba(255, 255, 255, 0.82) !important;

    color:
        #34723d !important;

    box-shadow:
        0 8px 18px rgba(47, 90, 55, 0.08) !important;

    font-size:
        22px !important;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease !important;
}


.rs-why-rainspree__card:hover
.rs-why-rainspree__icon {

    transform:
        translateY(-2px) scale(1.06) !important;

    box-shadow:
        0 10px 22px rgba(47, 90, 55, 0.14) !important;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.rs-why-rainspree__card-title {

    position: relative;
    z-index: 2;

    display: block;

    width: 100%;

    margin: 0 !important;

    color:
        #244a2d !important;

    font-size:
        18px !important;

    line-height:
        1.15 !important;

    font-weight:
        700 !important;

    text-align:
        center !important;
}


/* =========================================================
   CARD DIVIDER
   ========================================================= */

.rs-why-rainspree__line {

    display: block !important;

    width:
        34px !important;

    height:
        2px !important;

    flex: 0 0 2px !important;

    margin:
        12px auto !important;

    border-radius:
        999px !important;

    background:
        rgba(72, 130, 78, 0.45) !important;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.rs-why-rainspree__card-description {

    position: relative;
    z-index: 2;

    display: block;

    width: 100%;

    max-width:
        210px !important;

    margin: 0 auto !important;

    color:
        #536557 !important;

    font-size:
        11px !important;

    line-height:
        1.5 !important;

    text-align:
        center !important;
}


/* =========================================================
   LEARN MORE
   ========================================================= */

.rs-why-rainspree__learn-more {

    position: relative;
    z-index: 3;

    display: inline-flex !important;

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

    gap:
        7px;

    margin-top:
        auto !important;

    padding-top:
        17px !important;

    color:
        #34723d !important;

    font-size:
        10px !important;

    font-weight:
        700 !important;

    line-height:
        1 !important;

    letter-spacing:
        0.04em;

    text-transform:
        uppercase;
}


.rs-why-rainspree__learn-more i {

    transition:
        transform 0.25s ease !important;
}


.rs-why-rainspree__card:hover
.rs-why-rainspree__learn-more i {

    transform:
        translateX(4px) !important;
}


/* =========================================================
   DECORATIVE BACKGROUND ICON
   ========================================================= */

.rs-why-rainspree__decor {

    right:
        8px !important;

    bottom:
        -12px !important;

    z-index:
        1 !important;

    color:
        #4d8a55 !important;

    opacity:
        0.055 !important;

    pointer-events:
        none !important;
}


/* =========================================================
   MODAL OVERLAY
   ========================================================= */

.rs-why-modal {

    position: fixed !important;

    inset:
        0 !important;

    z-index:
        99999 !important;

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    padding:
        24px !important;

    opacity:
        0 !important;

    visibility:
        hidden !important;

    pointer-events:
        none !important;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease !important;
}


.rs-why-modal.is-open {

    opacity:
        1 !important;

    visibility:
        visible !important;

    pointer-events:
        auto !important;
}


/* =========================================================
   MODAL BACKDROP
   ========================================================= */

.rs-why-modal__backdrop {

    position:
        absolute !important;

    inset:
        0 !important;

    background:
        rgba(28, 46, 34, 0.48) !important;

    backdrop-filter:
        blur(8px) !important;

    -webkit-backdrop-filter:
        blur(8px) !important;
}


/* =========================================================
   MODAL DIALOG
   ========================================================= */

.rs-why-modal__dialog {

    position:
        relative !important;

    z-index:
        2 !important;

    width:
        min(880px, 100%) !important;

    max-height:
        min(720px, calc(100vh - 48px)) !important;

    display:
        grid !important;

    grid-template-columns:
        minmax(280px, 0.9fr)
        minmax(320px, 1.1fr) !important;

    overflow:
        hidden !important;

    border:
        1px solid rgba(255, 255, 255, 0.90) !important;

    border-radius:
        26px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(245, 248, 242, 0.95)
        ) !important;

    box-shadow:
        0 30px 80px rgba(24, 48, 31, 0.24) !important;

    transform:
        translateY(18px) scale(0.97);

    transition:
        transform 0.28s ease !important;
}


.rs-why-modal.is-open
.rs-why-modal__dialog {

    transform:
        translateY(0) scale(1) !important;
}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.rs-why-modal__close {

    position:
        absolute !important;

    top:
        14px !important;

    right:
        14px !important;

    z-index:
        10 !important;

    width:
        38px !important;

    height:
        38px !important;

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    border:
        0 !important;

    border-radius:
        50% !important;

    background:
        rgba(255, 255, 255, 0.84) !important;

    color:
        #31563a !important;

    cursor:
        pointer !important;

    box-shadow:
        0 6px 18px rgba(35, 65, 43, 0.10) !important;

    transition:
        transform 0.2s ease,
        background 0.2s ease !important;
}


.rs-why-modal__close:hover {

    transform:
        rotate(90deg) !important;

    background:
        #ffffff !important;
}


/* =========================================================
   MODAL MEDIA
   ========================================================= */

.rs-why-modal__media {

    min-height:
        360px !important;

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    padding:
        28px !important;

    background:
        linear-gradient(
            145deg,
            #eef5e9,
            #e3eee0
        ) !important;
}


.rs-why-modal__image {

    display:
        block !important;

    width:
        100% !important;

    max-width:
        100% !important;

    max-height:
        420px !important;

    object-fit:
        contain !important;

    border-radius:
        16px !important;
}


/* =========================================================
   MODAL VIDEO
   ========================================================= */

.rs-why-modal__video {

    width:
        100% !important;

    aspect-ratio:
        16 / 9 !important;

    display:
        none;

    overflow:
        hidden !important;

    border-radius:
        16px !important;

    background:
        #18351f !important;
}


.rs-why-modal__video iframe,
.rs-why-modal__video video {

    display:
        block !important;

    width:
        100% !important;

    height:
        100% !important;

    border:
        0 !important;
}


/* =========================================================
   MODAL CONTENT
   ========================================================= */

.rs-why-modal__body {

    padding:
        42px 42px 36px !important;

    display:
        flex !important;

    flex-direction:
        column !important;

    justify-content:
        center !important;
}


.rs-why-modal__eyebrow {

    display:
        block !important;

    margin:
        0 0 10px !important;

    color:
        #47804c !important;

    font-size:
        9px !important;

    line-height:
        1.2 !important;

    font-weight:
        800 !important;

    letter-spacing:
        0.18em !important;

    text-transform:
        uppercase !important;
}


.rs-why-modal__body h2 {

    margin:
        0 !important;

    color:
        #25472d !important;

    font-family:
        var(--rs-font-heading),
        "Cormorant Garamond",
        Georgia,
        serif !important;

    font-size:
        clamp(30px, 4vw, 44px) !important;

    line-height:
        1.05 !important;

    font-weight:
        600 !important;
}


.rs-why-modal__accent {

    width:
        48px !important;

    height:
        3px !important;

    margin:
        16px 0 18px !important;

    border-radius:
        999px !important;

    background:
        #57905c !important;
}


.rs-why-modal__description {

    margin:
        0 !important;

    color:
        #536357 !important;

    font-size:
        14px !important;

    line-height:
        1.75 !important;
}


/* =========================================================
   BODY LOCK WHEN MODAL IS OPEN
   ========================================================= */

body.rs-modal-open {

    overflow:
        hidden !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .rs-why-modal__dialog {

        width:
            min(760px, 100%) !important;

        grid-template-columns:
            1fr 1fr !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .rs-why-rainspree__card {

        min-height:
            250px !important;

        padding:
            22px 16px 18px !important;
    }


    .rs-why-rainspree__icon {

        width:
            56px !important;

        height:
            56px !important;

        flex-basis:
            56px !important;

        font-size:
            20px !important;
    }


    .rs-why-rainspree__card-title {

        font-size:
            17px !important;
    }


    .rs-why-modal {

        padding:
            12px !important;
    }


    .rs-why-modal__dialog {

        width:
            100% !important;

        max-height:
            calc(100vh - 24px) !important;

        grid-template-columns:
            1fr !important;

        overflow-y:
            auto !important;

        border-radius:
            22px !important;
    }


    .rs-why-modal__media {

        min-height:
            220px !important;

        padding:
            18px !important;
    }


    .rs-why-modal__body {

        padding:
            26px 22px 30px !important;
    }


    .rs-why-modal__body h2 {

        font-size:
            30px !important;
    }

}


@media (max-width: 480px) {

    .rs-why-rainspree__card {

        min-height:
            240px !important;
    }


    .rs-why-modal__media {

        min-height:
            190px !important;
    }

}

/* =========================================================
   WHY RAIN SPREE EYEBROW
   ========================================================= */

.rs-why-rainspree__eyebrow {
    color: #347437 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1.8px !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    opacity: 1 !important;
    visibility: visible !important;
}