:root {
    --ink: #18231e;
    --paper: #f5f1e9;
    --cream: #ebe4d8;
    --accent: #b65f3a;
    --sage: #93a58e;
    --dark: #17261f;
    --line: rgba(24,35,30,.15);
    --display: 'Playfair Display',serif;
    --sans: 'DM Sans',sans-serif;
    --radius: 0;
    --max: 1440px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55
}

a {
    color: inherit;
    text-decoration: none
}

button, input, select {
    font: inherit
}

button {
    cursor: pointer
}

img {
    max-width: 100%;
    display: block
}

.announcement {
    height: 34px;
    background: var(--dark);
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 6vw;
    align-items: center;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.site-header {
    height: 86px;
    padding: 0 clamp(24px,4vw,70px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 30;
    background: rgba(245,241,233,.94);
    backdrop-filter: blur(16px)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content
}

.brand-symbol {
    width: 34px;
    height: 34px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-style: italic;
    font-size: 21px
}

.brand-name {
    font-size: 15px;
    letter-spacing: .28em;
    font-weight: 700
}

.main-nav {
    display: flex;
    gap: 34px;
    font-size: 13px
}

    .main-nav a {
        position: relative
    }

        .main-nav a:after {
            content: '';
            position: absolute;
            height: 1px;
            left: 0;
            right: 100%;
            bottom: -7px;
            background: currentColor;
            transition: .25s
        }

        .main-nav a:hover:after {
            right: 0
        }

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 7px
}

.icon-btn, .cart-trigger {
    border: 0;
    background: none;
    padding: 10px
}

.cart-trigger {
    border: 1px solid var(--ink);
    border-radius: 99px;
    padding: 9px 15px
}

    .cart-trigger span {
        display: inline-grid;
        place-items: center;
        margin-left: 6px;
        background: var(--ink);
        color: #fff;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        font-size: 11px
    }

.menu-toggle {
    display: none
}

.section-pad {
    padding: 110px max(5vw,24px)
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .2em;
    font-weight: 700;
    margin: 0 0 20px
}

.section-heading h2, .story-copy h2, .bundle-copy h2, .community-section h2, .join-banner h2, .shop-hero h1, .product-info h1, .opportunity-copy h1, .comp-hero h1 {
    font: 500 clamp(42px,5.6vw,82px)/.98 var(--display);
    letter-spacing: -.035em;
    margin: 0
}

.section-heading em, .hero-content em, .story-copy em, .community-section em, .join-banner em, .shop-hero em, .product-info em, .opportunity-copy em, .comp-hero em {
    font-weight: 500;
    color: var(--accent)
}

.section-heading.inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 55px
}

.section-heading.centered {
    text-align: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border: 1px solid var(--ink);
    background: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .03em;
    transition: .25s
}

    .btn.primary {
        background: var(--ink);
        color: #fff
    }

        .btn.primary:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: translateY(-2px)
        }

    .btn.secondary:hover {
        background: var(--ink);
        color: #fff
    }

    .btn.light {
        border-color: #fff;
        color: #fff
    }

    .btn.full {
        width: 100%
    }

.text-link {
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid;
    display: inline-block;
    padding-bottom: 3px
}

.home-hero {
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: 55% 45%;
    overflow: hidden
}

.hero-visual {
    position: relative;
    background: radial-gradient(circle at 30% 30%,#e9d7c8,transparent 42%),linear-gradient(145deg,#c9d4c3,#efe7db);
    display: grid;
    place-items: center
}

    .hero-visual img {
        height: 78vh;
        max-height: 760px;
        filter: drop-shadow(0 40px 35px rgba(23,38,31,.18));
        z-index: 2
    }

.hero-orb {
    position: absolute;
    width: 58%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #f2e5d3;
    box-shadow: 0 0 0 70px rgba(255,255,255,.18)
}

.floating-note {
    position: absolute;
    background: rgba(255,255,255,.88);
    padding: 13px 18px;
    font-size: 11px;
    letter-spacing: .05em;
    z-index: 3;
    box-shadow: 0 12px 40px rgba(0,0,0,.08)
}

.note-one {
    left: 7%;
    bottom: 14%
}

.note-two {
    right: 5%;
    top: 16%
}

.hero-content {
    padding: 8vh 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center
}

    .hero-content h1 {
        font: 500 clamp(60px,7vw,105px)/.89 var(--display);
        letter-spacing: -.055em;
        margin: 0
    }

.hero-intro {
    font-size: 18px;
    max-width: 570px;
    margin: 34px 0
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px
}

.hero-proof {
    display: flex;
    gap: 40px;
    margin-top: 12vh;
    padding-top: 24px;
    border-top: 1px solid var(--line)
}

    .hero-proof div {
        display: flex;
        flex-direction: column
    }

    .hero-proof strong {
        font: 500 24px var(--display)
    }

    .hero-proof span {
        font-size: 11px;
        opacity: .65;
        text-transform: uppercase;
        letter-spacing: .08em
    }

.ticker {
    overflow: hidden;
    background: var(--accent);
    color: #fff;
    padding: 15px 0;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: .15em
}

    .ticker div {
        animation: ticker 22s linear infinite;
        width: max-content
    }

    .ticker i {
        margin: 0 35px
    }

@keyframes ticker {
    to {
        transform: translateX(-40%)
    }
}

.category-story {
    display: grid;
    grid-template-columns: 32% 68%;
    gap: 6vw
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px
}

.category-card {
    min-height: 480px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .35s;
    overflow: hidden;
    position: relative
}

    .category-card:after {
        content: '';
        position: absolute;
        inset: 35% -20% -20%;
        border-radius: 50% 50% 0 0;
        background: rgba(255,255,255,.4);
        transform: rotate(-8deg)
    }

    .category-card > * {
        z-index: 1
    }

    .category-card:hover {
        transform: translateY(-10px)
    }

    .category-card.energy {
        background: #d6c3aa
    }

    .category-card.glow {
        background: #d8aaa0
    }

    .category-card.restore {
        background: #a9b7a3
    }

    .category-card span {
        font-size: 11px
    }

    .category-card h3 {
        font: 500 48px var(--display);
        margin: 4px 0
    }

    .category-card p {
        font-size: 13px;
        max-width: 180px
    }

.featured-products {
    background: #f9f7f2
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.product-card {
    position: relative
}

.product-image {
    background: #ece7dd;
    position: relative;
    overflow: hidden;
    aspect-ratio: .86
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s
    }

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

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    padding: 7px 11px;
    font-size: 9px;
    letter-spacing: .1em;
    z-index: 2
}

.quick-add {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: var(--ink);
    color: #fff;
    border: 0;
    padding: 14px;
    transform: translateY(70px);
    transition: .3s
}

.product-card:hover .quick-add {
    transform: none
}

.product-meta {
    padding: 16px 2px
}

    .product-meta h3 {
        font: 500 23px var(--display);
        margin: 0 0 4px
    }

    .product-meta p {
        font-size: 12px;
        opacity: .65;
        margin: 0 0 12px
    }

.product-price {
    display: flex;
    justify-content: space-between
}

    .product-price small {
        color: var(--accent)
    }

.brand-story {
    display: grid;
    grid-template-columns: 55% 45%;
    background: var(--dark);
    color: #fff
}

.story-image {
    padding: 7vw;
    background: linear-gradient(135deg,#c8b39d,#899b8b)
}

.story-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end
}

    .story-collage img:first-child {
        transform: translate(12%,8%)
    }

    .story-collage img:last-child {
        transform: translate(-7%,-8%) scale(.83)
    }

.story-copy {
    padding: 8vw 7vw
}

    .story-copy p {
        max-width: 520px
    }

    .story-copy ul {
        list-style: none;
        padding: 20px 0;
        margin: 30px 0;
        border-top: 1px solid rgba(255,255,255,.2)
    }

    .story-copy li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,.2)
    }

        .story-copy li span {
            display: inline-block;
            width: 50px;
            opacity: .45
        }

    .story-copy .btn {
        border-color: #fff
    }

.bundle-spotlight {
    display: grid;
    grid-template-columns: 40% 60%;
    background: #d9c8b0
}

.mini-tag {
    background: var(--accent);
    color: #fff;
    padding: 8px 12px;
    font-size: 10px
}

.bundle-copy p {
    max-width: 500px
}

.bundle-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0
}

    .bundle-price strong {
        font-size: 28px
    }

    .bundle-price span {
        font-size: 12px
    }

.bundle-products {
    display: flex;
    align-items: center;
    justify-content: center
}

    .bundle-products img {
        width: 37%;
        margin-left: -10%;
        filter: drop-shadow(0 24px 18px rgba(0,0,0,.15))
    }

.community-wall {
    display: grid;
    grid-template-columns: 1fr .7fr 1.1fr;
    gap: 15px;
    margin-top: 60px
}

.quote-card, .stat-card {
    min-height: 330px;
    padding: 40px;
    background: #e5ddd0;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

    .quote-card.dark {
        background: var(--dark);
        color: #fff
    }

    .quote-card p {
        font: 500 25px/1.35 var(--display)
    }

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #c6a894;
    display: grid;
    place-items: center
}

.stat-card {
    background: var(--accent);
    color: #fff;
    text-align: center;
    justify-content: center
}

    .stat-card strong {
        font: 500 80px var(--display)
    }

.center-action {
    text-align: center;
    margin-top: 42px
}

.join-banner {
    background: #9dad99;
    padding: 90px max(5vw,24px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end
}

.site-footer {
    background: #111a16;
    color: #fff;
    padding: 80px max(5vw,24px) 25px;
    display: grid;
    grid-template-columns: 2fr repeat(3,1fr);
    gap: 55px
}

    .site-footer h2 {
        font: 500 42px/1.05 var(--display)
    }

    .site-footer h4 {
        font-size: 11px;
        letter-spacing: .15em
    }

    .site-footer > div:not(.footer-lead):not(.footer-bottom) {
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-size: 13px
    }

.newsletter {
    display: flex;
    border-bottom: 1px solid #fff
}

    .newsletter input {
        background: none;
        border: 0;
        color: #fff;
        padding: 12px 0;
        width: 100%
    }

    .newsletter button {
        background: none;
        border: 0;
        color: #fff;
        font-size: 24px
    }

.footer-bottom {
    grid-column: 1/-1;
    border-top: 1px solid rgba(255,255,255,.17);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: .06em;
    opacity: .65
}

.powered strong {
    letter-spacing: .1em
}

.demo-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    border: 0;
    background: #fff;
    color: #111;
    padding: 13px 17px;
    border-radius: 99px;
    box-shadow: 0 8px 35px rgba(0,0,0,.18);
    font-size: 12px
}

    .demo-fab span {
        color: var(--accent)
    }

.demo-panel {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: min(410px,calc(100vw - 40px));
    background: #fff;
    z-index: 100;
    padding: 27px;
    box-shadow: 0 20px 80px rgba(0,0,0,.25);
    transform: translateY(calc(100% + 40px));
    transition: .35s
}

    .demo-panel.open {
        transform: none
    }

.demo-panel-head {
    display: flex;
    justify-content: space-between
}

.demo-panel h3 {
    margin: 2px 0;
    font: 500 27px var(--display)
}

.demo-panel-head button, .drawer-head button {
    border: 0;
    background: none;
    font-size: 28px
}

.demo-panel > p {
    font-size: 12px;
    opacity: .65
}

.design-options {
    display: grid;
    gap: 8px;
    margin: 20px 0
}

    .design-options button {
        border: 1px solid #ddd;
        background: #fafafa;
        padding: 13px;
        display: flex;
        text-align: left;
        gap: 15px
    }

        .design-options button.active {
            border-color: var(--ink);
            background: #f1eee8
        }

    .design-options b {
        font: 500 20px var(--display)
    }

    .design-options span {
        display: flex;
        flex-direction: column;
        font-weight: 700
    }

    .design-options small {
        font-weight: 400;
        opacity: .6
    }

.demo-panel label {
    font-size: 11px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.demo-panel select {
    padding: 12px;
    border: 1px solid #ccc;
    background: #fff
}

.reset-link {
    margin-top: 18px;
    border: 0;
    background: none;
    text-decoration: underline;
    font-size: 11px
}

.cart-drawer {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(470px,100%);
    background: #faf8f3;
    z-index: 80;
    padding: 30px;
    transform: translateX(100%);
    transition: .35s;
    display: flex;
    flex-direction: column
}

    .cart-drawer.open {
        transform: none
    }

.drawer-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px
}

    .drawer-head h2 {
        font: 500 34px var(--display);
        margin: 0
    }

.drawer-items {
    overflow: auto;
    flex: 1
}

.drawer-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line)
}

    .drawer-item img {
        background: #eee
    }

    .drawer-item h4 {
        margin: 3px 0
    }

    .drawer-item small {
        opacity: .6
    }

.qty {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 9px
}

    .qty button {
        width: 25px;
        height: 25px;
        border: 1px solid #bbb;
        background: none
    }

.drawer-summary {
    border-top: 1px solid var(--line);
    padding-top: 18px
}

    .drawer-summary > div {
        display: flex;
        justify-content: space-between
    }

.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 70;
    opacity: 0;
    pointer-events: none;
    transition: .25s
}

    .backdrop.open {
        opacity: 1;
        pointer-events: auto
    }
 .shop-hero {
    padding: 90px max(5vw,24px) 65px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    border-bottom: 1px solid var(--line)
}

    .shop-hero > p {
        max-width: 500px
    }

.shop-promo {
    background: var(--accent);
    color: #fff;
    padding: 15px 5vw;
    text-align: center;
    font-size: 13px
}

    .shop-promo span {
        background: #fff;
        color: var(--accent);
        padding: 4px 7px;
        margin-right: 10px
    }

    .shop-promo button {
        background: none;
        border: 0;
        color: #fff;
        text-decoration: underline
    }

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 55px;
    padding-top: 55px
}

.filter-block {
    padding: 22px 0;
    border-bottom: 1px solid var(--line)
}

    .filter-block h3 {
        font: 500 20px var(--display)
    }

    .filter-block label, .filter-list button {
        display: block;
        border: 0;
        background: none;
        padding: 7px 0;
        font-size: 13px
    }

        .filter-list button.active {
            font-weight: 700;
            color: var(--accent)
        }

.filter-mobile {
    display: none
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px
}

    .shop-toolbar input, .shop-toolbar select {
        padding: 11px;
        border: 1px solid var(--line);
        background: transparent
    }

.shop-grid {
    grid-template-columns: repeat(3,1fr)
}

.routine-builder {
    background: var(--dark);
    color: #fff;
    padding: 90px max(5vw,24px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center
}

    .routine-builder h2 {
        font: 500 55px/1 var(--display)
    }

.quiz-visual {
    height: 350px;
    position: relative
}

    .quiz-visual span {
        position: absolute;
        border: 1px solid rgba(255,255,255,.45);
        border-radius: 50%;
        padding: 25px
    }

        .quiz-visual span:nth-child(1) {
            left: 15%;
            top: 10%
        }

        .quiz-visual span:nth-child(2) {
            right: 15%;
            top: 5%
        }

        .quiz-visual span:nth-child(3) {
            left: 35%;
            top: 42%
        }

        .quiz-visual span:nth-child(4) {
            right: 5%;
            bottom: 5%
        }

        .quiz-visual span:nth-child(5) {
            left: 5%;
            bottom: 8%
        }
 .product-detail {
    display: grid;
    grid-template-columns: 56% 44%;
    gap: 6vw;
    padding-top: 55px
}

.gallery-main {
    position: relative;
    background: #e7e0d5
}

    .gallery-main img {
        width: 100%;
        max-height: 720px
    }

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3,110px);
    gap: 10px;
    margin-top: 12px
}

    .gallery-thumbs button {
        height: 110px;
        border: 1px solid var(--line);
        background: #eee8dd
    }

.ingredient-thumb, .result-thumb {
    font: 500 30px var(--display)
}

.gallery-thumbs small {
    font: 10px var(--sans)
}

.rating-line {
    font-size: 12px;
    margin-bottom: 20px
}

    .rating-line a {
        text-decoration: underline
    }

.product-info {
    padding-right: 5vw
}

.product-lead {
    font-size: 18px
}

.benefit-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 25px 0
}

    .benefit-pills span {
        border: 1px solid var(--line);
        padding: 8px 12px;
        border-radius: 99px;
        font-size: 11px
    }

.purchase-options {
    display: grid;
    gap: 8px;
    margin: 25px 0
}

.purchase-option {
    border: 1px solid var(--line);
    padding: 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center
}

    .purchase-option:has(input:checked) {
        border-color: var(--ink);
        background: #eee9df
    }

    .purchase-option span {
        display: flex;
        flex-direction: column
    }

    .purchase-option small {
        opacity: .6
    }

.shipping-note {
    display: flex;
    justify-content: space-around;
    font-size: 11px;
    padding: 17px
}

.product-info details {
    border-top: 1px solid var(--line);
    padding: 17px 0
}

.product-info summary {
    font-weight: 700
}

.together-section {
    background: #e9e1d4
}

.together-row {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 30px
}

.together-products {
    display: flex
}

    .together-products .product-card {
        width: 33%
    }

.together-total {
    background: #fff;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

    .together-total strong {
        font: 500 35px var(--display)
    }

.results-section {
    background: var(--dark);
    color: #fff;
    padding: 90px max(5vw,24px);
    display: grid;
    grid-template-columns: 1fr 1.4fr
}

    .results-section h2 {
        font: 500 55px/1 var(--display)
    }

.result-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px
}

    .result-stats strong {
        font: 500 55px var(--display);
        color: #d9b69f
    }
 .checkout-shell {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 6vw;
    background: #faf8f4
}

.checkout-main {
    max-width: 760px
}

.back-link {
    font-size: 12px
}

.checkout-main h1 {
    font: 500 52px var(--display)
}

.checkout-steps {
    display: flex;
    gap: 25px;
    font-size: 11px;
    margin: 25px 0 45px
}

    .checkout-steps span:not(.active) {
        opacity: .4
    }

.form-section {
    padding: 28px 0;
    border-top: 1px solid var(--line)
}

.form-title {
    display: flex;
    gap: 18px;
    align-items: center
}

    .form-title span {
        font-size: 11px
    }

    .form-title h2 {
        font: 500 26px var(--display)
    }

.field-grid, .fake-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

    .field-grid label, .fake-card label {
        font-size: 11px;
        display: flex;
        flex-direction: column;
        gap: 6px
    }

    .field-grid input, .field-grid select, .fake-card input {
        border: 1px solid #ccc;
        padding: 13px;
        background: #fff
    }

.wide {
    grid-column: 1/-1
}

.delivery-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 1px solid #ccc;
    margin-bottom: 8px
}

    .delivery-option span {
        display: flex;
        flex-direction: column
    }

.secure-note {
    text-align: center;
    font-size: 11px;
    opacity: .6
}

.order-summary {
    background: #eee8df;
    padding: 35px;
    position: sticky;
    top: 20px;
    height: max-content
}

.summary-head {
    display: flex;
    justify-content: space-between
}

    .summary-head h2 {
        font: 500 32px var(--display)
    }

.cart-line {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line)
}

    .cart-line img {
        background: #fff
    }

.promo-entry {
    display: flex;
    margin: 20px 0
}

    .promo-entry input {
        flex: 1;
        padding: 12px;
        border: 1px solid #bbb
    }

    .promo-entry button {
        border: 0;
        background: var(--ink);
        color: #fff
    }

.total-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0
}

    .total-line.grand {
        font-size: 21px;
        border-top: 1px solid var(--line);
        margin-top: 10px;
        padding-top: 15px
    }

.cart-upsell {
    margin-top: 25px;
    background: #fff;
    padding: 10px;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 10px
}

    .cart-upsell img {
        width: 50px
    }

    .cart-upsell div {
        display: flex;
        flex-direction: column;
        font-size: 11px
    }

    .cart-upsell button {
        border: 1px solid;
        width: 30px;
        height: 30px;
        background: none
    }

.confirmation {
    display: none;
    text-align: center;
    padding: 80px 20px
}

    .confirmation.show {
        display: block
    }

    .confirmation span {
        display: grid;
        place-items: center;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: #9bb399;
        color: #fff;
        font-size: 35px;
        margin: auto
    }

    .confirmation h2 {
        font: 500 45px var(--display)
    }
 .enroll-hero {
    min-height: 420px;
    background: linear-gradient(120deg,#a9b6a1,#e5d7c2);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 70px
}

    .enroll-hero h1 {
        font: 500 70px/.95 var(--display)
    }

.path-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.path-card {
    border: 0;
    text-align: left;
    padding: 55px;
    background: #dfd4c4;
    min-height: 470px
}

    .path-card.dark {
        background: var(--dark);
        color: #fff
    }

    .path-card h2 {
        font: 500 45px var(--display)
    }

    .path-card ul {
        padding-left: 20px
    }

    .path-card b {
        display: block;
        margin-top: 35px
    }

.enrollment-wizard {
    display: none
}

    .enrollment-wizard.open {
        display: block
    }

.wizard-progress {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px
}

    .wizard-progress span {
        font-size: 11px;
        opacity: .4
    }

        .wizard-progress span.active {
            opacity: 1;
            font-weight: 700
        }

.wizard-panel {
    max-width: 850px;
    margin: 60px auto
}

    .wizard-panel h2 {
        font: 500 48px var(--display)
    }

.package-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px
}

.package-card {
    border: 1px solid var(--line);
    padding: 20px;
    background: #fff
}

    .package-card.selected {
        border: 2px solid var(--ink)
    }

.opportunity-hero {
    min-height: 680px;
    background: var(--accent);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 100px max(5vw,24px);
    overflow: hidden
}

.opportunity-copy {
    max-width: 650px
}

    .opportunity-copy p {
        max-width: 500px
    }

.opportunity-art {
    position: relative
}

.social-card {
    position: absolute;
    background: #fff;
    color: var(--ink);
    padding: 25px;
    box-shadow: 0 20px 45px rgba(0,0,0,.18)
}

    .social-card b, .social-card span {
        display: block
    }

.sc-one {
    width: 320px;
    left: 5%;
    top: 10%;
    transform: rotate(-5deg)
}

.sc-two {
    width: 220px;
    right: 5%;
    top: 35%;
    transform: rotate(7deg)
}

    .sc-two strong {
        font: 500 52px var(--display)
    }

.sc-three {
    left: 20%;
    bottom: 8%;
    transform: rotate(3deg)
}

.opportunity-values {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 4vw
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px
}

    .value-grid article {
        padding: 30px;
        background: #e5ddd1;
        min-height: 330px
    }

    .value-grid h3 {
        font: 500 30px var(--display)
    }

.income-scenarios {
    background: #f9f7f2
}

.scenario-tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0
}

    .scenario-tabs button {
        border: 1px solid var(--ink);
        background: none;
        padding: 12px 20px
    }

        .scenario-tabs button.active {
            background: var(--ink);
            color: #fff
        }

.scenario-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #d9c8b0;
    padding: 45px
}

    .scenario-display strong {
        font: 500 70px var(--display)
    }

.join-cta {
    text-align: center;
    padding: 110px 20px
}

    .join-cta h2 {
        font: 500 65px var(--display)
    }
 .comp-hero {
    text-align: center
}

    .comp-hero p:last-child {
        max-width: 700px;
        margin: 25px auto
    }

.earnings-map {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    padding-top: 0
}

    .earnings-map article {
        background: #ded5c8;
        padding: 40px;
        min-height: 330px
    }

    .earnings-map strong {
        font: 500 45px var(--display);
        color: var(--accent)
    }

.calculator {
    background: var(--dark);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    gap: 60px;
    align-items: center
}

    .calculator h2 {
        font: 500 48px var(--display)
    }

.calc-controls label {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: 22px 0
}

.calc-controls input {
    grid-column: 1/-1;
    width: 100%
}

.calc-result {
    background: #fff;
    color: var(--ink);
    padding: 35px;
    text-align: center
}

    .calc-result strong {
        display: block;
        font: 500 65px var(--display)
    }
 body[data-theme="wellness"] {
    --paper: #f4f1e7;
    --accent: #617d5d;
    --dark: #25372b;
    --display: 'Manrope',sans-serif;
    --radius: 28px
}

    body[data-theme="wellness"] .home-hero {
        grid-template-columns: 1fr 1fr
    }

    body[data-theme="wellness"] .hero-visual {
        order: 2;
        border-radius: 0 0 0 90px;
        background: linear-gradient(145deg,#cbd8c1,#f0dfbd)
    }

    body[data-theme="wellness"] .hero-content h1, body[data-theme="wellness"] .section-heading h2 {
        font-weight: 600
    }

    body[data-theme="wellness"] .category-card, body[data-theme="wellness"] .product-image, body[data-theme="wellness"] .quote-card, body[data-theme="wellness"] .path-card, body[data-theme="wellness"] .value-grid article {
        border-radius: var(--radius)
    }

    body[data-theme="wellness"] .btn {
        border-radius: 99px
    }

    body[data-theme="wellness"] .site-header {
        border-radius: 0 0 30px 30px
    }

body[data-theme="social"] {
    --paper: #fff7eb;
    --ink: #161616;
    --accent: #f04f32;
    --dark: #2520a8;
    --display: 'Syne',sans-serif
}

    body[data-theme="social"] .site-header {
        background: #fff;
        border-bottom: 3px solid #161616
    }

    body[data-theme="social"] .brand-symbol {
        background: #ffdc45;
        border: 2px solid
    }

    .social .announcement, body[data-theme="social"] .announcement {
        background: #ffdc45;
        color: #111;
        font-weight: 700
    }

    body[data-theme="social"] .home-hero {
        grid-template-columns: 45% 55%;
        background: #b6e1ff
    }

    body[data-theme="social"] .hero-visual {
        order: 2;
        background: #ff8db5;
        border-left: 3px solid #111
    }

    body[data-theme="social"] .hero-content h1 {
        font-size: clamp(55px,7vw,100px);
        text-transform: uppercase
    }

    body[data-theme="social"] .hero-content em {
        color: var(--dark)
    }

    body[data-theme="social"] .btn {
        border: 2px solid #111;
        box-shadow: 5px 5px 0 #111
    }

        body[data-theme="social"] .btn:hover {
            transform: translate(3px,3px);
            box-shadow: 2px 2px 0 #111
        }

    body[data-theme="social"] .category-card, body[data-theme="social"] .product-image, body[data-theme="social"] .quote-card, body[data-theme="social"] .stat-card {
        border: 2px solid #111;
        box-shadow: 7px 7px 0 #111
    }

    body[data-theme="social"] .ticker {
        background: var(--dark)
    }

    body[data-theme="social"] .featured-products {
        background: #dff9c5
    }

    body[data-theme="social"] .brand-story {
        background: #2520a8
    }

    body[data-theme="social"] .bundle-spotlight {
        background: #ffdc45
    }

@media(max-width:900px) {
    .announcement span:nth-child(n+2) {
        display: none
    }

    .site-header {
        grid-template-columns: 1fr auto;
        height: 72px
    }

    .menu-toggle {
        display: block;
        border: 0;
        background: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%)
    }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 1px;
            background: currentColor;
            margin: 6px
        }

    .main-nav {
        position: fixed;
        inset: 106px 0 auto;
        background: var(--paper);
        display: none;
        flex-direction: column;
        padding: 35px;
        font-size: 25px
    }

        .main-nav.open {
            display: flex
        }

    .account-link, .icon-btn {
        display: none
    }

    .home-hero, .category-story, .brand-story, .bundle-spotlight, .join-banner, .shop-hero, .routine-builder, .product-detail, .results-section, .checkout-shell, .opportunity-hero, .opportunity-values, .calculator {
        grid-template-columns: 1fr
    }

    .home-hero {
        min-height: auto
    }

    .hero-visual {
        min-height: 55vh;
        order: 0 !important
    }

        .hero-visual img {
            height: 52vh
        }

    .hero-content {
        padding: 65px 25px
    }

    .hero-proof {
        margin-top: 60px;
        gap: 18px
    }

    .section-pad {
        padding: 75px 24px
    }

    .category-cards, .product-grid, .value-grid, .earnings-map {
        grid-template-columns: 1fr 1fr
    }

    .category-story {
        gap: 40px
    }

    .category-card {
        min-height: 330px
    }

    .community-wall {
        grid-template-columns: 1fr
    }

    .site-footer {
        grid-template-columns: 1fr 1fr
    }

    .footer-lead, .footer-bottom {
        grid-column: 1/-1
    }

    .shop-layout {
        grid-template-columns: 1fr
    }

    .shop-filters {
        display: none
    }

    .shop-toolbar {
        align-items: flex-start;
        gap: 10px
    }

        .shop-toolbar > div {
            display: flex;
            flex-direction: column
        }

    .product-detail {
        padding-top: 30px
    }

    .together-row {
        grid-template-columns: 1fr
    }

    .checkout-shell {
        padding-top: 30px
    }

    .order-summary {
        position: static;
        grid-row: 1
    }

    .path-cards {
        grid-template-columns: 1fr
    }

    .opportunity-art {
        min-height: 450px
    }

    .calculator {
        grid-template-columns: 1fr
    }

    .result-stats {
        grid-template-columns: 1fr
    }

    .site-footer {
        gap: 30px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px
    }
}

@media(max-width:560px) {
    .header-actions {
        gap: 0
    }

    .brand-name {
        font-size: 12px
    }

    .section-heading.inline {
        align-items: start;
        gap: 25px;
        flex-direction: column
    }

    .category-cards, .product-grid, .shop-grid, .value-grid, .earnings-map {
        grid-template-columns: 1fr
    }

    .home-hero .hero-content h1 {
        font-size: 58px
    }

    .hero-proof {
        flex-wrap: wrap
    }

    .category-card {
        min-height: 260px
    }

    .bundle-products img {
        width: 48%
    }

    .community-wall {
        margin-top: 35px
    }

    .site-footer {
        grid-template-columns: 1fr
    }

    .shop-toolbar {
        flex-direction: column
    }

    .gallery-thumbs {
        grid-template-columns: repeat(3,1fr)
    }

    .product-info {
        padding-right: 0
    }

    .together-products {
        overflow-x: auto
    }

        .together-products .product-card {
            min-width: 75%
        }

    .field-grid, .fake-card {
        grid-template-columns: 1fr
    }

    .wide {
        grid-column: auto
    }

    .path-card {
        padding: 35px
    }

    .scenario-display {
        grid-template-columns: 1fr
    }

    .join-cta h2, .enroll-hero h1 {
        font-size: 48px
    }

    .demo-fab {
        right: 12px;
        bottom: 12px
    }

    .cart-drawer {
        padding: 20px
    }
}


.hero-photo {
    display: block;
    min-height: 620px;
    background: #d8d1c7
}

    .hero-photo picture, .hero-photo > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .hero-photo > img {
        display: none
    }

.hero-photo-editorial {
    object-position: center 35%
}

.hero-photo-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(10,20,15,.02),rgba(10,20,15,.18));
    z-index: 1
}

.hero-photo .floating-note {
    z-index: 3
}

.photo-story .story-image {
    padding: 0;
    position: relative;
    min-height: 720px;
    background: #7c8b79;
    overflow: hidden
}

    .photo-story .story-image > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0
    }

.story-image-caption {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
    padding: 22px 25px;
    background: rgba(250,248,243,.9);
    color: var(--ink);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

    .story-image-caption span {
        font-size: 10px;
        letter-spacing: .16em;
        font-weight: 700
    }

    .story-image-caption strong {
        font: 500 25px var(--display)
    }

.routine-feature {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 7vw;
    align-items: center;
    background: #ede7dc
}

.routine-photo {
    height: 650px;
    overflow: hidden
}

    .routine-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center
    }

.routine-copy {
    max-width: 580px
}

    .routine-copy h2 {
        font: 500 clamp(42px,5.2vw,76px)/.98 var(--display);
        letter-spacing: -.035em;
        margin: 0
    }

    .routine-copy em {
        font-weight: 500;
        color: var(--accent)
    }

    .routine-copy > p:not(.eyebrow) {
        font-size: 18px;
        margin: 28px 0
    }

.routine-points {
    display: grid;
    gap: 0;
    margin: 28px 0 35px;
    border-top: 1px solid var(--line)
}

    .routine-points span {
        padding: 15px 0;
        border-bottom: 1px solid var(--line);
        font-size: 13px
    }

.photo-community {
    grid-template-columns: 1.4fr .65fr 1fr
}

.community-photo {
    position: relative;
    min-height: 430px;
    overflow: hidden
}

    .community-photo img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .community-photo:after {
        content: '';
        position: absolute;
        inset: 35% 0 0;
        background: linear-gradient(transparent,rgba(12,20,16,.78))
    }

    .community-photo div {
        position: absolute;
        z-index: 2;
        left: 30px;
        right: 30px;
        bottom: 28px;
        color: #fff
    }

    .community-photo span {
        display: block;
        font-size: 10px;
        letter-spacing: .16em;
        margin-bottom: 8px
    }

    .community-photo strong {
        font: 500 26px/1.2 var(--display)
    }

.photo-join {
    padding: 0;
    grid-template-columns: 55% 45%;
    background: var(--dark);
    color: #fff;
    min-height: 620px
}

.join-photo {
    min-height: 620px;
    overflow: hidden
}

    .join-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center
    }

.join-copy {
    padding: 70px max(5vw,55px);
    align-self: center;
    max-width: 650px
}

    .join-copy p:not(.eyebrow) {
        max-width: 480px;
        margin: 25px 0
    }

    .join-copy .btn.light:hover {
        background: #fff;
        color: var(--ink)
    }

body[data-theme="wellness"] .hero-photo picture {
    display: none
}

body[data-theme="wellness"] .hero-photo-wellness {
    display: block;
    object-position: center
}

body[data-theme="wellness"] .hero-photo {
    border-radius: 0 0 0 90px
}

body[data-theme="wellness"] .routine-photo, body[data-theme="wellness"] .community-photo, body[data-theme="wellness"] .story-image-caption {
    border-radius: 28px
}

body[data-theme="social"] .hero-photo picture {
    display: none
}

body[data-theme="social"] .hero-photo-social {
    display: block;
    object-position: center
}

body[data-theme="social"] .hero-photo {
    border-left: 3px solid #111
}

body[data-theme="social"] .hero-photo-shade {
    background: linear-gradient(180deg,rgba(37,32,168,.04),rgba(37,32,168,.22))
}

body[data-theme="social"] .routine-feature {
    background: #b6e1ff
}

body[data-theme="social"] .routine-photo, body[data-theme="social"] .community-photo {
    border: 3px solid #111;
    box-shadow: 8px 8px 0 #111
}

body[data-theme="social"] .photo-join {
    background: #2520a8
}

body[data-theme="social"] .story-image-caption {
    border: 2px solid #111;
    box-shadow: 5px 5px 0 #111
}

@media(max-width:900px) {
    .hero-photo {
        min-height: 58vh
    }

    .routine-feature, .photo-join {
        grid-template-columns: 1fr
    }

    .routine-photo {
        height: 520px
    }

    .photo-community {
        grid-template-columns: 1fr
    }

    .join-photo {
        min-height: 500px
    }

    .photo-story .story-image {
        min-height: 560px
    }

    .story-image-caption {
        left: 20px;
        right: 20px;
        bottom: 20px
    }

    .photo-join .join-copy {
        padding: 65px 25px
    }
}

@media(max-width:560px) {
    .hero-photo {
        min-height: 62vh
    }

    .hero-photo-editorial {
        object-position: 54% center
    }

    .hero-photo-wellness {
        object-position: 58% center !important
    }

    .hero-photo-social {
        object-position: 56% center !important
    }

    .routine-photo {
        height: 430px
    }

    .photo-story .story-image {
        min-height: 480px
    }

    .story-image-caption {
        display: block
    }

        .story-image-caption strong {
            display: block;
            margin-top: 7px;
            font-size: 21px
        }

    .community-photo {
        min-height: 390px
    }

    .join-photo {
        min-height: 420px
    }
}


html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.home-hero,
.home-hero > *,
.category-story,
.category-story > *,
.category-cards,
.category-card,
.routine-feature,
.photo-join {
    min-width: 0;
}


.home-hero {
    grid-template-columns: minmax(0, 54%) minmax(0, 46%);
    width: 100%;
}

.hero-content {
    width: 100%;
    padding-inline: clamp(42px, 5.25vw, 92px);
}


.hero-photo {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

    .hero-photo picture {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
    }

        .hero-photo picture > img,
        .hero-photo > img {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            max-width: none;
            max-height: none;
            object-fit: cover;
            filter: none;
        }

.hero-photo-editorial {
    object-position: 52% center;
}


.category-story {
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.65fr);
    gap: clamp(42px, 5vw, 88px);
    width: 100%;
}

.category-cards {
    width: 100%;
}


.ticker {
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: elevara-ticker 24s linear infinite;
}

    .ticker-track span {
        flex: 0 0 auto;
        padding-left: 35px;
        padding-right: 35px;
    }

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes elevara-ticker {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
        transform: none;
    }
}


body[data-theme="social"] .btn {
    box-shadow: 3px 3px 0 rgba(17,17,17,.95);
}

    body[data-theme="social"] .btn:hover {
        transform: translate(2px, 2px);
        box-shadow: 1px 1px 0 rgba(17,17,17,.95);
    }

body[data-theme="social"] .category-card,
body[data-theme="social"] .product-image,
body[data-theme="social"] .quote-card,
body[data-theme="social"] .stat-card {
    box-shadow: 4px 4px 0 rgba(17,17,17,.92), 10px 14px 26px rgba(37,32,168,.08);
}

body[data-theme="social"] .routine-photo,
body[data-theme="social"] .community-photo {
    box-shadow: 4px 4px 0 rgba(17,17,17,.92), 10px 14px 28px rgba(37,32,168,.10);
}

body[data-theme="social"] .story-image-caption {
    box-shadow: 3px 3px 0 rgba(17,17,17,.92);
}

@media (max-width: 1100px) {
    .home-hero {
        grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    }

    .hero-content {
        padding-inline: clamp(30px, 4vw, 54px);
    }

    .category-story {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .home-hero {
        grid-template-columns: 1fr;
    }

    .hero-photo picture > img,
    .hero-photo > img {
        height: 100%;
    }

    body[data-theme="social"] .category-card,
    body[data-theme="social"] .product-image,
    body[data-theme="social"] .quote-card,
    body[data-theme="social"] .stat-card,
    body[data-theme="social"] .routine-photo,
    body[data-theme="social"] .community-photo {
        box-shadow: 3px 3px 0 rgba(17,17,17,.9), 7px 9px 18px rgba(37,32,168,.08);
    }
}


.hero-photo > .hero-photo-wellness,
.hero-photo > .hero-photo-social {
    display: none;
}

body[data-theme="wellness"] .hero-photo > .hero-photo-wellness,
body[data-theme="social"] .hero-photo > .hero-photo-social {
    display: block;
}

body[data-theme="wellness"] .hero-photo picture,
body[data-theme="social"] .hero-photo picture {
    display: none;
}



.hero-title-social {
    display: none;
}

body[data-theme="social"] {
    --display: 'Sora', sans-serif;
    --sans: 'Plus Jakarta Sans', sans-serif;
    --mono: 'DM Mono', monospace;
}

    body[data-theme="social"] .hero-title-default {
        display: none;
    }

    body[data-theme="social"] .hero-title-social {
        display: block;
    }

    body[data-theme="social"] .hero-content h1,
    body[data-theme="social"] .section-heading h2,
    body[data-theme="social"] .story-copy h2,
    body[data-theme="social"] .bundle-copy h2,
    body[data-theme="social"] .community-section h2,
    body[data-theme="social"] .join-banner h2,
    body[data-theme="social"] .shop-hero h1,
    body[data-theme="social"] .product-info h1,
    body[data-theme="social"] .opportunity-copy h1,
    body[data-theme="social"] .comp-hero h1 {
        font-family: var(--display);
        font-style: normal;
        font-weight: 650;
        letter-spacing: -.045em;
        text-transform: none;
    }

    body[data-theme="social"] .hero-content h1 {
        max-width: 680px;
        font-size: clamp(52px, 6.3vw, 96px);
        line-height: .98;
    }

    body[data-theme="social"] .hero-content em,
    body[data-theme="social"] .section-heading em,
    body[data-theme="social"] .story-copy em,
    body[data-theme="social"] .community-section em,
    body[data-theme="social"] .join-banner em,
    body[data-theme="social"] .shop-hero em,
    body[data-theme="social"] .product-info em,
    body[data-theme="social"] .opportunity-copy em,
    body[data-theme="social"] .comp-hero em {
        font-family: inherit;
        font-style: normal;
        font-weight: inherit;
        color: var(--accent);
    }

    body[data-theme="social"] .eyebrow,
    body[data-theme="social"] .product-badge,
    body[data-theme="social"] .mini-tag,
    body[data-theme="social"] .hero-proof span,
    body[data-theme="social"] .ticker,
    body[data-theme="social"] .story-image-caption span,
    body[data-theme="social"] .community-photo span,
    body[data-theme="social"] .site-footer h4 {
        font-family: var(--mono);
        font-weight: 500;
        letter-spacing: .1em;
    }

    body[data-theme="social"] .eyebrow,
    body[data-theme="social"] .hero-proof span,
    body[data-theme="social"] .site-footer h4 {
        text-transform: uppercase;
    }

    body[data-theme="social"] .hero-intro {
        max-width: 610px;
        font-size: clamp(16px, 1.2vw, 19px);
        line-height: 1.65;
    }

    body[data-theme="social"] .brand-symbol {
        font-family: var(--display);
        font-style: normal;
        font-weight: 700;
    }

    body[data-theme="social"] .brand-name,
    body[data-theme="social"] .main-nav,
    body[data-theme="social"] .header-actions,
    body[data-theme="social"] .btn,
    body[data-theme="social"] .text-link {
        font-family: var(--sans);
    }

    body[data-theme="social"] .btn {
        min-height: 50px;
        padding-inline: 24px;
        border-radius: 8px;
        font-weight: 700;
        letter-spacing: -.01em;
        text-transform: none;
    }

    body[data-theme="social"] .text-link {
        font-weight: 700;
        letter-spacing: -.015em;
    }

    body[data-theme="social"] .category-card h3,
    body[data-theme="social"] .product-meta h3,
    body[data-theme="social"] .quote-card p,
    body[data-theme="social"] .stat-card strong,
    body[data-theme="social"] .hero-proof strong,
    body[data-theme="social"] .community-photo strong,
    body[data-theme="social"] .story-image-caption strong {
        font-family: var(--display);
        font-style: normal;
        font-weight: 600;
        letter-spacing: -.035em;
    }

    body[data-theme="social"] .category-card h3 {
        font-size: clamp(34px, 3vw, 46px);
    }

    body[data-theme="social"] .product-meta h3 {
        font-size: 21px;
    }

    body[data-theme="social"] .quote-card p {
        font-size: clamp(21px, 2vw, 28px);
        line-height: 1.35;
    }

    body[data-theme="social"] .announcement {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: .09em;
    }

    body[data-theme="social"] .ticker {
        font-size: 11px;
        letter-spacing: .08em;
    }

@media (max-width: 900px) {
    body[data-theme="social"] .hero-content h1 {
        font-size: clamp(48px, 12vw, 76px);
    }
}

@media (max-width: 560px) {
    body[data-theme="social"] .hero-content h1 {
        font-size: clamp(43px, 13vw, 62px);
        line-height: 1;
    }

    body[data-theme="social"] .hero-actions {
        align-items: flex-start;
    }
}

/* ========================================================================== 
   Social commerce, configuration and final polish layer
   ========================================================================== */

[hidden] {
    display: none !important;
}

body.overlay-open {
    overflow: hidden;
}

.partner-strip {
    min-height: 46px;
    padding: 8px clamp(18px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #17261f;
    color: #fff;
    font: 500 12px var(--body);
    letter-spacing: .02em;
}

.partner-strip-person,
.partner-strip-actions,
.affiliate-profile-mini,
.partner-recommendation,
.checkout-partner,
.enrollment-referrer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d8ecb6;
    color: #17261f;
    font: 700 11px var(--body);
    letter-spacing: .08em;
}

    .partner-avatar.large {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
        font-size: 14px;
    }

    .partner-avatar.hero {
        width: 92px;
        height: 92px;
        font-size: 21px;
        box-shadow: 0 0 0 10px rgba(216, 236, 182, .15);
    }

.partner-strip-actions button {
    appearance: none;
    border: 0;
    padding: 5px 0;
    background: none;
    color: rgba(255, 255, 255, .75);
    font: inherit;
    cursor: pointer;
}

    .partner-strip-actions button:hover {
        color: #fff;
    }

.quick-view,
.share-drawer,
.partner-card-drawer,
.ingredient-drawer,
.routine-assistant {
    position: fixed;
    z-index: 1210;
    top: 0;
    right: 0;
    width: min(620px, 100vw);
    height: 100dvh;
    overflow-y: auto;
    background: var(--paper, #fff);
    transform: translateX(104%);
    transition: transform .42s cubic-bezier(.22, .8, .26, 1);
    box-shadow: -30px 0 80px rgba(18, 28, 24, .16);
}

    .quick-view.open,
    .share-drawer.open,
    .partner-card-drawer.open,
    .ingredient-drawer.open,
    .routine-assistant.open {
        transform: translateX(0);
    }

.quick-view-head {
    position: sticky;
    z-index: 2;
    top: 0;
    min-height: 70px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(22, 34, 29, .1);
    background: color-mix(in srgb, var(--paper, #fff) 94%, transparent);
    backdrop-filter: blur(16px);
    font: 600 12px var(--body);
    letter-spacing: .12em;
    text-transform: uppercase;
}

    .quick-view-head button {
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        font-size: 28px;
        cursor: pointer;
    }

.quick-view-product {
    min-height: 100%;
}

.quick-view-media {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    background: #f0eee7;
}

    .quick-view-media img {
        width: min(300px, 64%);
        max-height: 330px;
    }

    .quick-view-media > span {
        position: absolute;
        top: 24px;
        left: 24px;
        padding: 8px 11px;
        border-radius: 100px;
        background: #fff;
        font: 600 10px var(--body);
        letter-spacing: .1em;
        text-transform: uppercase;
    }

.quick-view-copy {
    padding: 34px;
}

    .quick-view-copy h2,
    .share-content h2,
    .ingredient-content h2,
    .assistant-step h2,
    .assistant-result h2,
    .digital-card h2 {
        margin: 8px 0 14px;
        font: 500 clamp(32px, 5vw, 52px)/1.02 var(--display);
    }

.quick-purchase-toggle {
    margin: 24px 0 14px;
    padding: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    border-radius: 12px;
    background: rgba(22, 34, 29, .06);
}

    .quick-purchase-toggle button {
        padding: 12px;
        border: 0;
        border-radius: 9px;
        background: transparent;
        color: var(--ink);
        font: 600 12px var(--body);
        cursor: pointer;
    }

        .quick-purchase-toggle button.active {
            background: #fff;
            box-shadow: 0 5px 20px rgba(20, 30, 25, .08);
        }

.variant-configurator {
    margin: 25px 0;
    padding-top: 4px;
}

.option-level {
    margin: 0;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid rgba(22, 34, 29, .1);
}

    .option-level legend {
        width: 100%;
        margin: 0 0 13px;
        display: flex;
        align-items: center;
        gap: 9px;
        font: 600 12px var(--body);
    }

        .option-level legend > span {
            width: 22px;
            height: 22px;
            display: inline-grid;
            place-items: center;
            border-radius: 50%;
            background: var(--ink);
            color: #fff;
            font-size: 9px;
        }

        .option-level legend strong {
            margin-left: auto;
            color: var(--accent);
            font-weight: 600;
        }

.option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-chip {
    min-height: 40px;
    padding: 9px 15px;
    border: 1px solid rgba(22, 34, 29, .18);
    border-radius: 100px;
    background: transparent;
    color: var(--ink);
    font: 500 12px var(--body);
    cursor: pointer;
    transition: .2s ease;
}

    .option-chip:hover,
    .option-chip.active {
        border-color: var(--ink);
        background: var(--ink);
        color: #fff;
        transform: translateY(-1px);
    }

.configurator-single {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    background: rgba(22, 34, 29, .05);
    font-size: 12px;
}

.product-card-media {
    overflow: hidden;
}

    .product-card-media img {
        transition: transform .55s cubic-bezier(.22, .7, .25, 1);
    }

.product-card:hover .product-card-media img {
    transform: scale(1.035) translateY(-4px);
}

.product-card-actions {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    gap: 7px;
    opacity: 0;
    transform: translateY(8px);
    transition: .25s ease;
}

.product-card:hover .product-card-actions,
.product-card:focus-within .product-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-card-actions button {
    min-height: 42px;
    padding: 10px 14px;
    border: 0;
    border-radius: 7px;
    background: rgba(255, 255, 255, .94);
    color: #17261f;
    font: 600 11px var(--body);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

    .product-card-actions button:first-child {
        flex: 1;
    }

.partner-pick-badge {
    position: absolute;
    z-index: 2;
    top: 48px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 100px;
    background: #17261f;
    color: #fff;
    font: 600 9px var(--body);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-share-float {
    position: absolute;
    z-index: 3;
    top: 24px;
    right: 24px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 100px;
    background: rgba(255, 255, 255, .86);
    color: #17261f;
    font: 600 11px var(--body);
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.partner-recommendation {
    margin: 20px 0;
    padding: 15px;
    border-left: 3px solid var(--accent);
    background: rgba(22, 34, 29, .045);
}

    .partner-recommendation small,
    .partner-recommendation strong {
        display: block;
    }

    .partner-recommendation small {
        margin-bottom: 3px;
        color: var(--muted);
        font-size: 10px;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .partner-recommendation strong {
        font: 500 13px/1.45 var(--body);
    }

.subscription-controls {
    margin: -2px 0 16px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
    border-radius: 10px;
    background: rgba(22, 34, 29, .055);
}

    .subscription-controls label,
    .subscription-controls small,
    .subscription-controls strong {
        display: block;
    }

    .subscription-controls label,
    .subscription-controls small {
        font: 500 10px var(--body);
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .subscription-controls select {
        width: 100%;
        margin-top: 7px;
        padding: 11px;
        border: 1px solid rgba(22, 34, 29, .14);
        border-radius: 7px;
        background: #fff;
    }

.stack-section,
.recommendation-section {
    overflow: hidden;
}

.stack-visual {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, .7fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: stretch;
}

.stack-products {
    min-width: 0;
    padding: clamp(24px, 4vw, 52px);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    border-radius: 22px;
    background: #f0eee7;
}

.stack-product {
    min-width: 0;
    text-align: center;
}

    .stack-product img {
        width: min(180px, 100%);
        height: 210px;
        object-fit: contain;
    }

    .stack-product small,
    .stack-product strong,
    .stack-product span {
        display: block;
    }

    .stack-product small {
        margin: 10px 0 5px;
        color: var(--muted);
        font-size: 9px;
        letter-spacing: .12em;
    }

    .stack-product strong {
        min-height: 40px;
        font-size: 13px;
    }

.stack-plus {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
}

.stack-summary {
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(22, 34, 29, .11);
    border-radius: 22px;
}

    .stack-summary h3 {
        margin: 12px 0 8px;
        font: 500 32px/1.05 var(--display);
    }

.stack-price {
    margin: 18px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

    .stack-price strong {
        font: 600 30px var(--display);
    }

.stack-subscribe {
    margin: 0 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
}

.reasoned-recommendations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 34px);
}

.reason-card {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(180px, .7fr) minmax(0, 1fr);
    border: 1px solid rgba(22, 34, 29, .11);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 55px rgba(21, 31, 27, .065);
}

.reason-card-media {
    min-height: 310px;
    display: grid;
    place-items: center;
    background: #f0eee7;
}

    .reason-card-media img {
        width: 78%;
        max-height: 270px;
    }

.reason-card-copy {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .reason-card-copy > small {
        color: var(--accent);
        font: 600 9px var(--body);
        letter-spacing: .12em;
    }

    .reason-card-copy h3 {
        margin: 8px 0 10px;
        font: 500 28px/1.08 var(--display);
    }

    .reason-card-copy > div {
        margin-top: 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

.partner-curation {
    margin: clamp(24px, 4vw, 54px) clamp(18px, 5vw, 80px) 0;
    padding: clamp(24px, 4vw, 44px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 18px;
    background: #eef2e8;
}

    .partner-curation > div:first-child {
        max-width: 650px;
    }

    .partner-curation h2 {
        margin: 6px 0;
        font: 500 clamp(30px, 4vw, 48px)/1 var(--display);
    }

    .partner-curation > div:last-child {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 14px;
    }

.checkout-partner {
    margin: 18px 0 24px;
    padding: 15px 18px;
    border-radius: 12px;
    background: #eef2e8;
}

    .checkout-partner div {
        flex: 1;
    }

    .checkout-partner small,
    .checkout-partner strong,
    .checkout-partner span {
        display: block;
    }

    .checkout-partner button {
        border: 0;
        background: none;
        color: var(--ink);
        font: 600 11px var(--body);
        text-decoration: underline;
        cursor: pointer;
    }

.reward-progress-card {
    margin: 0 0 24px;
    padding: 18px;
    border-radius: 13px;
    background: #eef2e8;
}

.reward-progress-head {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 9px;
    letter-spacing: .09em;
}

    .reward-progress-head strong {
        color: var(--accent);
    }

.reward-track {
    position: relative;
    height: 5px;
    border-radius: 20px;
    background: rgba(22, 34, 29, .13);
}

    .reward-track i {
        position: absolute;
        inset: 0 auto 0 0;
        border-radius: inherit;
        background: var(--accent);
        transition: width .4s ease;
    }

    .reward-track span {
        position: absolute;
        top: 50%;
        width: 13px;
        height: 13px;
        border: 3px solid #eef2e8;
        border-radius: 50%;
        background: #aeb8ad;
        transform: translate(-50%, -50%);
    }

        .reward-track span.unlocked {
            background: var(--accent);
        }

.reward-labels {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

    .reward-labels small {
        color: var(--muted);
        font-size: 8px;
        text-align: center;
    }

        .reward-labels small.unlocked {
            color: var(--ink);
            font-weight: 700;
        }

.checkout-line {
    padding: 19px 0;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    border-bottom: 1px solid rgba(22, 34, 29, .1);
}

    .checkout-line > img {
        width: 76px;
        height: 88px;
        padding: 8px;
        object-fit: contain;
        border-radius: 9px;
        background: #f0eee7;
    }

.checkout-line-main > div:first-child {
    padding-right: 80px;
}

    .checkout-line-main > div:first-child strong,
    .checkout-line-main > div:first-child small {
        display: block;
    }

.checkout-line-main > b {
    position: absolute;
    right: 0;
    top: 0;
}

.checkout-line-main {
    position: relative;
}

.checkout-line-actions {
    margin-top: 12px;
}

.subscription-switch {
    padding: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 9px;
    border: 1px solid rgba(22, 34, 29, .12);
    border-radius: 9px;
    cursor: pointer;
}

    .subscription-switch.active {
        border-color: var(--accent);
        background: rgba(114, 143, 79, .08);
    }

    .subscription-switch span strong,
    .subscription-switch span small {
        display: block;
    }

    .subscription-switch span strong {
        font-size: 11px;
    }

    .subscription-switch span small {
        margin-top: 2px;
        color: var(--muted);
        font-size: 9px;
    }

.checkout-line-actions select {
    width: 100%;
    margin-top: 8px;
    padding: 9px;
    border: 1px solid rgba(22, 34, 29, .12);
    border-radius: 8px;
    background: #fff;
    font-size: 11px;
}

.checkout-upsell-zone {
    margin: 30px 0;
    padding: clamp(22px, 4vw, 38px);
    border-radius: 18px;
    background: #17261f;
    color: #fff;
}

    .checkout-upsell-zone .section-heading {
        margin-bottom: 22px;
    }

        .checkout-upsell-zone .section-heading span {
            color: rgba(255, 255, 255, .6);
        }

.checkout-upsells {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.checkout-upsell-add {
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
}

.checkout-upsell-options {
    width: 100%;
    padding: 0.25rem 0;
    border: 0;
    border-top: 1px solid currentColor;
    background: transparent;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    cursor: pointer;
}

    .checkout-upsell-options:hover {
        opacity: 0.72;
    }

    .checkout-upsell-options:focus-visible {
        outline: 2px solid var(--color-accent);
        outline-offset: 4px;
    }

.checkout-upsell-card {
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(6.5rem, 7rem) minmax(0, 1fr);
    gap: 1rem;
    border-radius: 12px;
    background: #fff;
    color: #17261f;
    min-width: 0;
}

    .checkout-upsell-card > img {
        width: 94px;
        height: 120px;
        padding: 8px;
        object-fit: contain;
        border-radius: 9px;
        background: #f0eee7;
    }

    .checkout-upsell-card small {
        color: #728f4f;
        font: 700 8px var(--body);
        letter-spacing: .1em;
    }

    .checkout-upsell-card h3 {
        margin: 5px 0;
        font: 600 16px/1.1 var(--body);
    }

    .checkout-upsell-card p {
        margin: 0;
        font-size: 10px;
        line-height: 1.4;
    }

@media (max-width: 720px) {
    .checkout-upsell-card {
        grid-template-columns: 1fr;
    }

    .checkout-upsell-media {
        aspect-ratio: 16 / 9;
    }
}

.checkout-upsell-price {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

    .checkout-upsell-price .btn {
        padding: 9px 11px;
        font-size: 9px;
    }

.share-cart-button {
    width: 100%;
    margin: 16px 0 0;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(22, 34, 29, .15);
    border-radius: 8px;
    background: transparent;
    color: var(--ink);
    font: 600 11px var(--body);
    cursor: pointer;
}

.post-purchase-offer {
    margin: 25px 0;
}

.post-purchase-copy {
    padding: 20px;
    border-radius: 16px;
    background: #eef2e8;
    color: #17261f;
    text-align: left;
}

    .post-purchase-copy > div {
        margin: 14px 0;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .post-purchase-copy img {
        width: 74px;
        height: 90px;
        object-fit: contain;
    }

    .post-purchase-copy h3,
    .post-purchase-copy p {
        margin: 0 0 5px;
    }

.share-content,
.ingredient-content,
.digital-card,
#routineAssistantContent {
    padding: 30px;
}

.share-preview-product,
.share-cart-preview,
.share-routine-preview {
    margin-bottom: 22px;
    padding: 20px;
    border-radius: 16px;
    background: #f0eee7;
}

.share-preview-product,
.share-cart-preview {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .share-preview-product img,
    .share-cart-preview img,
    .share-routine-preview img {
        width: 74px;
        height: 86px;
        padding: 5px;
        object-fit: contain;
        border-radius: 8px;
        background: #fff;
    }

    .share-preview-product small,
    .share-preview-product strong,
    .share-preview-product span,
    .share-cart-preview strong,
    .share-cart-preview span,
    .share-routine-preview small,
    .share-routine-preview strong {
        display: block;
    }

.share-routine-preview > div {
    margin: 13px 0;
    display: flex;
    gap: 8px;
}

.share-message label {
    font: 600 10px var(--body);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.share-message textarea {
    width: 100%;
    min-height: 90px;
    margin-top: 8px;
    padding: 13px;
    border: 1px solid rgba(22, 34, 29, .14);
    border-radius: 9px;
    resize: vertical;
    font: 400 13px/1.5 var(--body);
}

.share-link-box {
    margin: 15px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid rgba(22, 34, 29, .14);
    border-radius: 9px;
    overflow: hidden;
}

    .share-link-box input {
        min-width: 0;
        padding: 13px;
        border: 0;
        background: #fff;
        font-size: 11px;
    }

    .share-link-box button {
        padding: 0 18px;
        border: 0;
        background: var(--ink);
        color: #fff;
        font: 600 11px var(--body);
        cursor: pointer;
    }

.share-channel-grid,
.affiliate-tool-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

    .share-channel-grid button,
    .affiliate-tool-grid button {
        min-height: 48px;
        padding: 10px;
        border: 1px solid rgba(22, 34, 29, .12);
        border-radius: 9px;
        background: #fff;
        color: #17261f;
        font: 600 10px var(--body);
        cursor: pointer;
        transition: .2s ease;
    }

        .share-channel-grid button:hover,
        .affiliate-tool-grid button:hover {
            border-color: var(--accent);
            transform: translateY(-2px);
        }

.qr-block {
    margin-top: 24px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 12px;
    background: #17261f;
    color: #fff;
}

    .qr-block.highlight {
        box-shadow: 0 0 0 5px rgba(114, 143, 79, .25);
    }

    .qr-block strong,
    .qr-block span {
        display: block;
    }

    .qr-block span {
        margin-top: 5px;
        color: rgba(255, 255, 255, .65);
        font-size: 10px;
        line-height: 1.45;
    }

.demo-qr {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(9, 1fr);
    gap: 2px;
    background: #fff;
}

    .demo-qr i {
        background: transparent;
    }

        .demo-qr i.on {
            background: #17261f;
        }

.affiliate-fab {
    position: fixed;
    z-index: 900;
    right: 20px;
    bottom: 76px;
    padding: 11px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 100px;
    background: #17261f;
    color: #fff;
    box-shadow: 0 14px 45px rgba(18, 28, 24, .22);
    font: 600 10px var(--body);
    cursor: pointer;
}

.affiliate-panel {
    position: fixed;
    z-index: 1300;
    right: 20px;
    bottom: 70px;
    width: min(390px, calc(100vw - 40px));
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(18, 28, 24, .24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(.98);
    transition: .25s ease;
}

    .affiliate-panel.open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .affiliate-panel .demo-panel-head {
        padding: 0 0 16px;
    }

.affiliate-profile-mini {
    margin: 8px 0 18px;
    padding: 12px;
    border-radius: 11px;
    background: #eef2e8;
}

    .affiliate-profile-mini strong,
    .affiliate-profile-mini small {
        display: block;
    }

    .affiliate-profile-mini small {
        margin-top: 2px;
        color: var(--muted);
        font-size: 9px;
    }

.affiliate-panel > label {
    margin-top: 18px;
    display: block;
    font: 600 9px var(--body);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.affiliate-panel select {
    width: 100%;
    margin-top: 8px;
    padding: 12px;
    border: 1px solid rgba(22, 34, 29, .14);
    border-radius: 8px;
    background: #fff;
}

.digital-card-top {
    padding: 32px 24px;
    border-radius: 18px 18px 0 0;
    background: #17261f;
    color: #fff;
    text-align: center;
}

    .digital-card-top .partner-avatar {
        margin: 0 auto 22px;
    }

    .digital-card-top p:last-child {
        color: rgba(255, 255, 255, .7);
    }

.digital-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-right: 1px solid rgba(22, 34, 29, .1);
    border-left: 1px solid rgba(22, 34, 29, .1);
}

    .digital-card-stats > div {
        padding: 22px;
        text-align: center;
    }

        .digital-card-stats > div + div {
            border-left: 1px solid rgba(22, 34, 29, .1);
        }

    .digital-card-stats strong,
    .digital-card-stats span {
        display: block;
    }

    .digital-card-stats strong {
        font: 600 30px var(--display);
    }

    .digital-card-stats span {
        margin-top: 4px;
        color: var(--muted);
        font-size: 9px;
    }

.digital-card-actions {
    display: grid;
    gap: 8px;
    padding: 20px;
    border: 1px solid rgba(22, 34, 29, .1);
}

    .digital-card-actions button,
    .digital-card-actions a {
        padding: 13px;
        border: 1px solid rgba(22, 34, 29, .13);
        border-radius: 8px;
        background: #fff;
        color: var(--ink);
        font: 600 11px var(--body);
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

.digital-socials {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    background: #eef2e8;
    font-size: 11px;
}

.ingredient-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eef2e8;
    color: var(--accent);
    font-size: 22px;
}

.ingredient-facts {
    margin: 24px 0 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

    .ingredient-facts article {
        padding: 14px;
        border-radius: 10px;
        background: #f0eee7;
    }

    .ingredient-facts small,
    .ingredient-facts strong {
        display: block;
    }

    .ingredient-facts small {
        margin-bottom: 7px;
        color: var(--muted);
        font-size: 8px;
        letter-spacing: .1em;
    }

    .ingredient-facts strong {
        font-size: 11px;
    }

.ingredient-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

    .ingredient-products .product-card-copy p,
    .ingredient-products .product-card-foot small {
        display: none;
    }

.assistant-step,
.assistant-result {
    min-height: calc(100dvh - 130px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.assistant-progress {
    margin-bottom: 24px;
    color: var(--muted);
    font: 600 10px var(--body);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.assistant-options {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}

    .assistant-options button {
        padding: 18px 20px;
        border: 1px solid rgba(22, 34, 29, .14);
        border-radius: 11px;
        background: #fff;
        color: var(--ink);
        font: 600 14px var(--body);
        text-align: left;
        cursor: pointer;
        transition: .2s ease;
    }

        .assistant-options button:hover {
            padding-left: 25px;
            border-color: var(--accent);
            background: #eef2e8;
        }

.routine-timeline {
    margin: 24px 0;
}

    .routine-timeline article {
        padding: 12px 0;
        display: grid;
        grid-template-columns: 70px 66px 1fr;
        gap: 12px;
        align-items: center;
        border-bottom: 1px solid rgba(22, 34, 29, .1);
    }

        .routine-timeline article > span {
            color: var(--accent);
            font: 700 8px var(--body);
            letter-spacing: .1em;
        }

    .routine-timeline img {
        width: 66px;
        height: 72px;
        padding: 5px;
        object-fit: contain;
        border-radius: 8px;
        background: #f0eee7;
    }

    .routine-timeline strong,
    .routine-timeline small {
        display: block;
    }

    .routine-timeline small {
        margin-top: 3px;
        color: var(--muted);
        font-size: 9px;
    }

.assistant-result-total {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(22, 34, 29, .1);
}

.assistant-result-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.partner-landing {
    min-height: min(760px, calc(100vh - 100px));
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: #f1eee7;
}

.partner-landing-image {
    min-width: 0;
    overflow: hidden;
}

    .partner-landing-image img {
        width: 100%;
        height: 100%;
        min-height: 650px;
        object-fit: cover;
    }

.partner-landing-copy {
    padding: clamp(40px, 7vw, 105px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .partner-landing-copy h1 {
        margin: 18px 0;
        font: 500 clamp(48px, 6vw, 82px)/.98 var(--display);
    }

    .partner-landing-copy > p:not(.eyebrow) {
        max-width: 560px;
        font-size: 16px;
        line-height: 1.7;
    }

.partner-landing-meta {
    margin: 22px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .partner-landing-meta span {
        padding: 8px 11px;
        border-radius: 100px;
        background: #fff;
        font-size: 10px;
    }

.partner-picks-section {
    background: #fff;
}

.partner-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(22, 34, 29, .12);
}

    .partner-story-grid article {
        padding: clamp(28px, 5vw, 60px);
        background: #eef2e8;
    }

        .partner-story-grid article > span {
            color: var(--accent);
            font: 600 11px var(--body);
        }

    .partner-story-grid h3 {
        margin: 45px 0 12px;
        font: 500 30px/1.05 var(--display);
    }

.partner-join-cta {
    text-align: center;
}

.kit-comparison {
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.kit-card {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(22, 34, 29, .13);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: .2s ease;
}

    .kit-card:hover,
    .kit-card.selected {
        border-color: var(--accent);
        box-shadow: 0 18px 45px rgba(18, 28, 24, .1);
        transform: translateY(-4px);
    }

    .kit-card.featured {
        background: #17261f;
        color: #fff;
    }

    .kit-card > span {
        position: absolute;
        top: 14px;
        right: 14px;
        color: #d8ecb6;
        font: 700 8px var(--body);
        letter-spacing: .1em;
    }

    .kit-card h3 {
        min-height: 78px;
        margin: 12px 0;
        font: 500 22px/1.15 var(--display);
    }

    .kit-card > strong {
        display: block;
        font-size: 28px;
    }

    .kit-card ul {
        margin: 20px 0 0;
        padding: 0;
        list-style: none;
        font-size: 10px;
        line-height: 1.9;
    }

    .kit-card li::before {
        content: "✓";
        margin-right: 7px;
        color: var(--accent);
    }

.enrollment-subscription {
    margin: 22px 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    border-radius: 13px;
    background: #eef2e8;
}

    .enrollment-subscription h3,
    .enrollment-subscription p {
        margin: 4px 0;
    }

.toggle-row {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    white-space: nowrap;
}

    .toggle-row span {
        width: 42px;
        height: 23px;
        border-radius: 20px;
        background: #b8c0b7;
    }

    .toggle-row input {
        position: absolute;
        opacity: 0;
    }

        .toggle-row input:checked + span {
            background: var(--accent);
        }

.alias-input {
    display: flex;
    align-items: center;
    border: 1px solid rgba(22, 34, 29, .15);
    border-radius: 8px;
    overflow: hidden;
}

    .alias-input span {
        padding: 12px;
        background: #eef2e8;
        font-size: 12px;
    }

    .alias-input input {
        min-width: 0;
        border: 0 !important;
    }

.enrollment-review-grid {
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

    .enrollment-review-grid article {
        padding: 17px;
        display: flex;
        align-items: center;
        gap: 14px;
        border-radius: 12px;
        background: #f0eee7;
    }

    .enrollment-review-grid img {
        width: 80px;
        height: 90px;
        object-fit: contain;
    }

    .enrollment-review-grid small,
    .enrollment-review-grid strong,
    .enrollment-review-grid span {
        display: block;
    }

    .enrollment-review-grid small {
        color: var(--muted);
        font-size: 8px;
        letter-spacing: .1em;
    }

    .enrollment-review-grid span {
        margin-top: 3px;
        color: var(--muted);
        font-size: 9px;
    }

.site-toast {
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 10px;
    background: #17261f;
    color: #fff;
    box-shadow: 0 15px 50px rgba(18, 28, 24, .25);
    opacity: 0;
    transform: translateY(10px);
    transition: .25s ease;
    font: 500 11px var(--body);
}

    .site-toast.show {
        opacity: 1;
        transform: none;
    }

    .site-toast button {
        border: 0;
        background: none;
        color: #d8ecb6;
        font: 700 10px var(--body);
        cursor: pointer;
    }

.toast-stack {
    position: fixed;
    z-index: 1500;
    right: 20px;
    bottom: 20px;
    width: min(360px, calc(100vw - 40px));
    display: grid;
    gap: 8px;
}

body[data-theme="social"] .product-card,
body[data-theme="social"] .reason-card,
body[data-theme="social"] .stack-summary {
    box-shadow: 0 12px 32px rgba(44, 28, 84, .08);
}

    body[data-theme="social"] .product-card:hover,
    body[data-theme="social"] .reason-card:hover {
        box-shadow: 0 18px 40px rgba(44, 28, 84, .12);
    }

body[data-theme="social"] .option-chip,
body[data-theme="social"] .quick-purchase-toggle button,
body[data-theme="social"] .share-channel-grid button {
    font-family: "Plus Jakarta Sans", sans-serif;
}

body[data-theme="social"] .partner-pick-badge,
body[data-theme="social"] .mini-tag,
body[data-theme="social"] .eyebrow {
    font-family: "DM Mono", monospace;
}

@media (max-width: 1100px) {
    .stack-visual {
        grid-template-columns: 1fr;
    }

    .reasoned-recommendations {
        grid-template-columns: 1fr;
    }

    .checkout-upsells {
        grid-template-columns: 1fr;
    }

    .partner-landing {
        grid-template-columns: 1fr;
    }

    .partner-landing-image img {
        min-height: 470px;
        max-height: 620px;
    }
}

@media (max-width: 760px) {
    .partner-strip {
        align-items: flex-start;
    }

    .partner-strip-actions button:not(:first-child) {
        display: none;
    }

    .affiliate-fab {
        right: 12px;
        bottom: 69px;
    }

    .stack-products {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stack-plus {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .reason-card {
        grid-template-columns: 1fr;
    }

    .reason-card-media {
        min-height: 260px;
    }

    .partner-curation {
        align-items: flex-start;
        flex-direction: column;
    }

        .partner-curation > div:last-child {
            align-items: flex-start;
        }

    .checkout-upsell-zone {
        margin-right: -10px;
        margin-left: -10px;
    }

    .checkout-upsell-card {
        grid-template-columns: 76px 1fr;
    }

        .checkout-upsell-card > img {
            width: 76px;
            height: 100px;
        }

    .share-channel-grid,
    .affiliate-tool-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ingredient-facts,
    .partner-story-grid,
    .kit-comparison,
    .enrollment-review-grid {
        grid-template-columns: 1fr;
    }

    .ingredient-products {
        grid-template-columns: 1fr;
    }

    .assistant-result-actions {
        grid-template-columns: 1fr;
    }

    .partner-landing-copy {
        padding: 42px 24px 54px;
    }

    .partner-landing-image img {
        min-height: 380px;
    }

    .enrollment-subscription {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (hover: none) {
    .product-card-actions {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quick-view,
    .share-drawer,
    .partner-card-drawer,
    .ingredient-drawer,
    .routine-assistant,
    .site-toast,
    .product-card-media img,
    .option-chip,
    .assistant-options button {
        transition: none !important;
    }
}

.social-tool-preview,
.brand-principles {
    background: #f8f7f2;
}

    .social-tool-preview .section-heading > p,
    .affiliate-showcase .section-heading > p {
        max-width: 620px;
        color: var(--muted);
        line-height: 1.7;
    }

.affiliate-showcase {
    background: #eef2e8;
}

.affiliate-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

    .affiliate-feature-grid article {
        min-height: 240px;
        padding: clamp(26px, 4vw, 48px);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 14px 45px rgba(22, 34, 29, .055);
    }

        .affiliate-feature-grid article:nth-child(2),
        .affiliate-feature-grid article:nth-child(3) {
            background: #17261f;
            color: #fff;
        }

    .affiliate-feature-grid small {
        margin-bottom: auto;
        color: var(--accent);
        font: 700 9px var(--body);
        letter-spacing: .12em;
    }

    .affiliate-feature-grid strong {
        margin: 45px 0 10px;
        font: 500 clamp(25px, 3vw, 36px)/1.05 var(--display);
    }

    .affiliate-feature-grid p {
        margin: 0;
        max-width: 520px;
        color: var(--muted);
        line-height: 1.6;
    }

    .affiliate-feature-grid article:nth-child(2) p,
    .affiliate-feature-grid article:nth-child(3) p {
        color: rgba(255, 255, 255, .65);
    }

.light-link {
    color: #fff;
}

.story-share-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #eef2e8;
}

    .story-share-cta > div {
        max-width: 760px;
    }

    .story-share-cta h2 {
        margin: 8px 0 0;
        font: 500 clamp(30px, 4vw, 50px)/1.08 var(--display);
    }

.contact-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: clamp(35px, 7vw, 90px);
    align-items: start;
}

.contact-guidance {
    position: sticky;
    top: 120px;
    padding: 30px;
    border-radius: 16px;
    background: #eef2e8;
}

    .contact-guidance h2 {
        margin: 8px 0 12px;
        font: 500 38px/1.05 var(--display);
    }

.contact-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.contact-layout textarea {
    min-height: 160px;
    padding: 14px;
    resize: vertical;
}

.checkout-empty {
    padding: 35px 0;
    text-align: center;
}

.line-options {
    max-width: 260px;
    display: block;
    margin: 3px 0;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.4;
}

.empty-bag {
    padding: 70px 25px;
    text-align: center;
}

    .empty-bag > span {
        display: block;
        margin-bottom: 14px;
        color: var(--accent);
        font-size: 30px;
    }

    .empty-bag h3 {
        margin: 0 0 8px;
        font: 500 28px/1.1 var(--display);
    }

.progress-track {
    height: 5px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(22, 34, 29, .12);
}

    .progress-track i {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: var(--accent);
    }

.total-line.saving {
    color: var(--accent);
}

@media (max-width: 760px) {
    .affiliate-feature-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .story-share-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-guidance {
        position: static;
    }
}


/* ========================================================================== 
   Final page-by-page polish review
   ========================================================================== */

:root {
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --control-radius: 10px;
    --card-shadow: 0 18px 50px rgba(20, 31, 26, .08);
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

button,
a,
input,
select {
    -webkit-tap-highlight-color: transparent;
}

    .btn:focus-visible,
    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible {
        outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent);
        outline-offset: 3px;
    }

.partner-avatar {
    line-height: 1;
    text-align: center;
    font-variant-numeric: tabular-nums;
}


.product-grid {
    align-items: stretch;
}

.product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(22, 34, 29, .08);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, .55);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
        border-color: rgba(22, 34, 29, .14);
        box-shadow: var(--card-shadow);
    }

.product-card-media {
    position: relative;
    aspect-ratio: .92;
    flex: 0 0 auto;
    background: #eee9df;
}

    .product-card-media > a,
    .product-card-media > a img {
        width: 100%;
        height: 100%;
    }

    .product-card-media img {
        object-fit: cover;
    }

.product-badge,
.partner-pick-badge {
    max-width: calc(100% - 28px);
    white-space: nowrap;
}

.product-badge {
    top: 14px;
    left: 14px;
}

.partner-pick-badge {
    top: 50px;
    left: 14px;
}

.product-card-copy {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(22, 34, 29, .65);
    font-size: 11px;
}

.product-card-copy h3 {
    margin: 11px 0 8px;
    font: 600 19px/1.2 var(--body);
}

.product-card-copy > p {
    margin: 0 0 18px;
    color: rgba(22, 34, 29, .72);
    font-size: 13px;
    line-height: 1.55;
}

.product-card-foot {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(22, 34, 29, .08);
}

    .product-card-foot > div {
        min-width: 0;
    }

    .product-card-foot strong,
    .product-card-foot small {
        display: block;
    }

    .product-card-foot small {
        margin-top: 3px;
        color: rgba(22, 34, 29, .62);
        font-size: 10px;
    }

.card-quick-add {
    min-height: 42px;
    padding: 10px 13px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--ink);
    border-radius: 100px;
    background: var(--ink);
    color: #fff;
    font: 650 11px var(--body);
    white-space: nowrap;
}

    .card-quick-add span {
        font-size: 17px;
        line-height: 1;
    }

    .card-quick-add:hover {
        background: var(--accent);
        border-color: var(--accent);
    }

.product-card-actions {
    opacity: 1;
    transform: none;
    pointer-events: none;
}

    .product-card-actions button {
        pointer-events: auto;
    }

        .product-card-actions button:first-child {
            display: none;
        }

        .product-card-actions button:last-child {
            margin-left: auto;
            width: 42px;
            padding: 0;
            border-radius: 50%;
            box-shadow: 0 8px 24px rgba(20, 31, 26, .12);
        }

body[data-theme="social"] .product-card {
    box-shadow: 5px 5px 0 rgba(25, 28, 27, .14);
}

    body[data-theme="social"] .product-card:hover {
        transform: translate(-2px, -4px);
        box-shadow: 8px 8px 0 rgba(25, 28, 27, .17);
    }


.checkout-partner {
    padding: 17px 20px;
}

    .checkout-partner button {
        margin-left: auto;
    }

.checkout-upsell-zone {
    padding: clamp(24px, 4vw, 36px);
}

.checkout-upsell-heading {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

    .checkout-upsell-heading h2 {
        max-width: 620px;
        margin: 4px 0 8px;
        font: 500 clamp(32px, 4vw, 48px)/1.02 var(--display);
    }

    .checkout-upsell-heading p:not(.eyebrow) {
        max-width: 560px;
        margin: 0;
        color: rgba(255, 255, 255, .68);
        font-size: 13px;
    }

    .checkout-upsell-heading > span {
        padding: 8px 11px;
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 100px;
        color: rgba(255, 255, 255, .7);
        font-size: 9px;
        letter-spacing: .1em;
        white-space: nowrap;
    }

.checkout-upsell-card {
    grid-template-columns: 112px minmax(0, 1fr);
    padding: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .11);
}

    .checkout-upsell-card > img {
        width: 112px;
        height: 100%;
        min-height: 174px;
    }

.checkout-upsell-copy {
    display: flex;
    flex-direction: column;
}

.checkout-upsell-rating {
    margin-bottom: 7px;
    color: #a45c3d;
    font-size: 10px;
    font-weight: 700;
}

.checkout-upsell-offer {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(22, 34, 29, .09);
}

    .checkout-upsell-offer span {
        color: rgba(22, 34, 29, .63);
        font-size: 9px;
    }

.checkout-upsell-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}
    .checkout-upsell-actions .btn {
        min-height: 44px;
    }

    .checkout-upsell-actions .text-link {
        padding: 6px 0;
        border: 0;
        border-bottom: 1px solid currentColor;
        background: none;
        color: var(--ink);
        font-size: 10px;
        white-space: nowrap;
    }

    .checkout-upsell-actions button:disabled {
        background: #728f4f;
        border-color: #728f4f;
        opacity: 1;
    }


.subscription-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

    .subscription-toggle input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.subscription-toggle-track {
    position: relative;
    width: 52px;
    height: 29px;
    flex: 0 0 52px;
    border-radius: 999px;
    background: #b8c0b7;
    transition: background-color .18s ease, box-shadow .18s ease;
}

    .subscription-toggle-track::after {
        content: "";
        position: absolute;
        top: 4px;
        left: 4px;
        width: 21px;
        height: 21px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 2px 8px rgba(18, 43, 34, .2);
        transition: transform .18s ease;
    }

.subscription-toggle input:checked + .subscription-toggle-track {
    background: var(--accent);
}

    .subscription-toggle input:checked + .subscription-toggle-track::after {
        transform: translateX(23px);
    }

.subscription-toggle input:focus-visible + .subscription-toggle-track {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 28%, transparent);
}

.subscription-toggle-copy strong,
.subscription-toggle-copy small {
    display: block;
}

.subscription-toggle-copy strong {
    font-size: 12px;
}

.subscription-toggle-copy small {
    margin-top: 2px;
    color: rgba(22, 34, 29, .58);
    font-size: 9px;
}


.wizard-progress {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 0 24px;
}

    .wizard-progress::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: -1px;
        left: 0;
        height: 2px;
        background: rgba(22, 34, 29, .08);
    }

    .wizard-progress span {
        position: relative;
    }

        .wizard-progress span.active::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: -26px;
            left: 0;
            height: 2px;
            background: var(--accent);
        }

.wizard-panel {
    max-width: 900px;
}

.wizard-intro {
    max-width: 620px;
    margin: -8px 0 30px;
    color: rgba(22, 34, 29, .68);
}

.enrollment-referrer {
    margin-bottom: 24px;
    padding: 16px 18px;
    border: 1px solid rgba(22, 34, 29, .09);
    border-radius: 12px;
    background: rgba(238, 242, 232, .7);
}

    .enrollment-referrer small,
    .enrollment-referrer strong {
        display: block;
    }

    .enrollment-referrer small {
        color: rgba(22, 34, 29, .55);
        font-size: 9px;
        letter-spacing: .08em;
    }

.alias-input {
    margin-top: 7px;
}

    .alias-input input {
        min-height: 48px;
        padding: 12px !important;
    }

.alias-status {
    margin-top: 7px;
    display: block;
    color: rgba(22, 34, 29, .58);
    font-size: 10px;
}

    .alias-status.available {
        color: #58723d;
        font-weight: 700;
    }

.alias-preview {
    margin-top: 22px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(22, 34, 29, .1);
    border-radius: 13px;
    background: #eef2e8;
}

    .alias-preview small,
    .alias-preview strong,
    .alias-preview span {
        display: block;
    }

    .alias-preview small {
        color: rgba(22, 34, 29, .54);
        font-size: 9px;
        letter-spacing: .1em;
    }

    .alias-preview strong {
        margin: 4px 0;
        font-size: 16px;
    }

    .alias-preview span {
        color: rgba(22, 34, 29, .65);
        font-size: 10px;
    }

    .alias-preview .text-link {
        border: 0;
        border-bottom: 1px solid currentColor;
        background: none;
        white-space: nowrap;
    }

.wizard-actions {
    margin-top: 32px;
    padding-top: 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid rgba(22, 34, 29, .1);
}

.enrollment-subscription {
    padding: 22px 24px;
}


.form-section,
.checkout-upsell-zone,
.order-summary,
.wizard-panel,
.partner-curation,
.routine-builder {
    scroll-margin-top: 120px;
}

@media (prefers-reduced-motion: no-preference) {
    .product-card,
    .path-card,
    .value-grid article,
    .checkout-upsell-card,
    .package-card {
        animation: polish-in .5s both;
        animation-timeline: view();
        animation-range: entry 0% entry 28%;
    }

    @keyframes polish-in {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 980px) {
    .checkout-upsell-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .checkout-upsells {
        grid-template-columns: 1fr;
    }

    .product-card-actions {
        position: absolute;
    }
}

@media (max-width: 680px) {
    .product-card-copy {
        padding: 16px;
    }

    .product-card-foot {
        align-items: stretch;
        flex-direction: column;
    }

    .card-quick-add {
        justify-content: center;
    }

    .checkout-upsell-card {
        grid-template-columns: 82px minmax(0, 1fr);
    }

        .checkout-upsell-card > img {
            width: 82px;
            min-height: 120px;
        }

    .checkout-upsell-actions {
        grid-template-columns: 1fr;
    }

        .checkout-upsell-actions .text-link {
            justify-self: start;
        }

    .enrollment-subscription,
    .alias-preview {
        align-items: flex-start;
        flex-direction: column;
    }

    .wizard-actions {
        flex-direction: column-reverse;
    }

        .wizard-actions .btn {
            width: 100%;
        }
}
