/* ------------------------------------------------------------------
   Parformance — Homepage mockup (light-first)
   Cream/white grondtoon. Forest green + antique gold accents.
   Twee intentionele dark-secties: product reveal & manifesto. Donkere footer.
   Typography: Bodoni Moda (display) + Inter (body).
------------------------------------------------------------------ */

:root {
    /* Light surfaces */
    --color-bg: #FAF6ED;            /* paper / primary canvas */
    --color-bg-2: #F2ECDF;          /* warm panel */
    --color-bg-3: #FFFFFF;          /* clean white when needed */

    /* Dark accents (kept for intentional sections + packaging match) */
    --color-dark: #0E2A20;          /* forest green */
    --color-dark-2: #081A12;        /* near-black green */

    /* Ink + accents */
    --color-ink: #0F1812;           /* near-black, slight green tint */
    --color-ink-2: #3D4B43;         /* body grey-green */
    --color-muted: #8B8579;
    --color-gold: #A8843D;          /* darker gold for AA contrast on light bg */
    --color-gold-light: #C2A368;
    --color-gold-soft: #E5CE9A;
    --color-gold-logo: #D4B270;     /* matches the wordmark gold */
    --color-live: #22C55E;          /* bright "available / pre-order open" green */

    /* Logo-style gold gradient — horizontal, left → mid → right, metallic */
    --gradient-gold: linear-gradient(90deg, #E0BD78 0%, #B69050 50%, #E0BD78 100%);

    /* Dividers */
    --color-divider: rgba(15, 24, 18, 0.12);
    --color-divider-dark: rgba(229, 206, 154, 0.22);

    /* Type */
    --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --max-w: 1280px;
    --gutter: clamp(20px, 4vw, 64px);

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Anchor offsets so the fixed promo+nav doesn't cover scroll targets */
section[id],
[id="preorder"],
[id="about"],
[id="club"],
[id="products"],
[id="ingredients"] {
    scroll-margin-top: 146px;
}

body {
    background: var(--color-bg);
    color: var(--color-ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

/* ------------------------------------------------------------------
   Typography utilities
------------------------------------------------------------------ */

.eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 500;
}

.h-display {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: normal;
    line-height: 1.02;
    letter-spacing: -0.005em;
    color: var(--color-ink);
}

.h-display em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 500;
}

.lead {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(16px, 1.35vw, 19px);
    color: var(--color-ink-2);
    line-height: 1.6;
    max-width: 52ch;
}

/* Section variant: dark */
.is-dark {
    background: var(--color-dark);
    color: var(--color-bg);
}

.is-dark .h-display { color: var(--color-bg); }
.is-dark .h-display em { color: var(--color-gold-soft); }
.is-dark .lead { color: rgba(250, 246, 237, 0.78); }
.is-dark .eyebrow { color: var(--color-gold-soft); }

/* ------------------------------------------------------------------
   Layout
------------------------------------------------------------------ */

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

section { position: relative; }

.divider-rule {
    height: 1px;
    background: var(--color-divider);
    width: 100%;
}

/* ------------------------------------------------------------------
   Promo bar (top conversion line)
------------------------------------------------------------------ */

html { background: var(--color-bg); }
:root { color-scheme: light only; }

.promo-bar {
    background: #FFFFFF;
    color: var(--color-ink);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    border-bottom: 1px solid var(--color-divider);
}

.promo-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-ink);
    transition: color 0.3s var(--ease);
}

.promo-text {
    color: var(--color-ink-2);
}

.promo-cta {
    color: var(--color-gold);
    font-weight: 500;
    border-bottom: 1px solid rgba(168, 132, 61, 0.45);
    padding-bottom: 1px;
    transition: all 0.3s var(--ease);
}

.promo-link:hover .promo-cta {
    color: var(--color-ink);
    border-bottom-color: var(--color-ink);
}

.promo-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-live);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.55);
    animation: dot-pulse 1.8s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 0.75; transform: scale(1); box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
    50% { opacity: 1; transform: scale(1.25); box-shadow: 0 0 14px rgba(34, 197, 94, 0.7); }
}

@media (max-width: 720px) {
    .promo-link { gap: 8px; font-size: 10px; }
    .promo-text { display: none; }
}

/* Push nav below promo bar */

/* ------------------------------------------------------------------
   Nav
------------------------------------------------------------------ */

.nav {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(14, 42, 32, 0.92);
    border-bottom: 1px solid var(--color-divider-dark);
}

@media (max-width: 720px) {
    .nav { top: 38px; }
}

.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 104px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    justify-self: start;
}

.nav-logo img {
    height: 76px;
    width: auto;
    display: block;
    transform: translateY(7px);
}

.nav-links { justify-self: center; }
.nav-right { justify-self: end; }

.nav-links {
    display: flex;
    gap: 36px;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(250, 246, 237, 0.78);
}

.nav-links a:hover { color: var(--color-gold-soft); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-toggle {
    display: flex;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: rgba(250, 246, 237, 0.6);
}

.lang-toggle .active { color: var(--color-gold-soft); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold-logo);
    padding: 11px 22px;
    background: transparent;
    border: 1.5px solid;
    border-image: var(--gradient-gold) 1;
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--gradient-gold);
    color: var(--color-dark);
    transform: translateY(-1px);
}

/* ------------------------------------------------------------------
   Hero
------------------------------------------------------------------ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 200px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    color: var(--color-bg);
}

.hero-bg-full .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-bg-full .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 22, 16, 0.88) 0%, rgba(8, 22, 16, 0.55) 50%, rgba(8, 22, 16, 0.25) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(8, 22, 16, 0.6), transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-copy { max-width: 680px; }

.hero .h-display { color: var(--color-bg); }
.hero .h-display em { color: var(--color-gold-soft); }
.hero .eyebrow { color: var(--color-gold-soft); }

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    margin-bottom: 0;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-gold-soft);
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    animation: scroll-rise 3s ease-in-out 2.4s infinite;
}

.hint-label {
    font-weight: 500;
}

@keyframes scroll-rise {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 6px); }
}

@media (max-width: 720px) {
    .hero-scroll-hint { bottom: 24px; font-size: 10px; gap: 12px; }
}

.shot-tracer {
    width: 84px;
    height: 28px;
    flex-shrink: 0;
    display: block;
    overflow: visible;
}

.shot-tracer path {
    stroke-dasharray: 110;
    stroke-dashoffset: 110;
    animation: tracer-draw 1.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
}

@keyframes tracer-draw {
    to { stroke-dashoffset: 0; }
}

.hero h1 {
    font-size: clamp(48px, 7vw, 96px);
    margin-bottom: 32px;
}

.hero h1 em {
    display: block;
    font-size: 0.85em;
}

.hero-lead { margin-bottom: 48px; }

.hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: transparent;
    color: var(--color-gold-logo);
    border: 1.5px solid;
    border-image: var(--gradient-gold) 1;
}

.hero .btn-primary:hover {
    background: var(--gradient-gold);
    color: var(--color-dark);
    border-image: var(--gradient-gold) 1;
    transform: translateY(-1px);
}

.hero-trust {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-ink-2);
    flex-wrap: wrap;
}

.hero-trust span:first-child { color: var(--color-gold); }

/* Trustpilot trust strip — wordmark + CTA, no fake star rating */
.hero-trust {
    margin-bottom: 24px;
}

.trust-strip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s var(--ease);
}

.trust-strip:hover { opacity: 0.85; }

.trust-strip-logo {
    width: 144px;
    height: 27px;
    display: block;
}

.trust-strip-cta {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(250, 246, 237, 0.72);
}

/* Light variant — PDP buy card */
.pdp-buy-rating .trust-strip-cta {
    color: var(--color-ink-2);
}

@media (max-width: 560px) {
    .trust-strip-logo { width: 120px; height: 22px; }
    .trust-strip-cta { font-size: 11px; }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--color-ink);
    color: var(--color-bg);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.btn-primary:hover {
    background: var(--color-dark);
    transform: translateY(-1px);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn-gold:hover {
    background: var(--color-gold-light);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 4px;
    color: var(--color-ink);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-divider);
    transition: all 0.3s var(--ease);
}

.btn-ghost:hover { border-bottom-color: var(--color-gold); color: var(--color-gold); }

.is-dark .btn-primary {
    background: var(--color-gold);
    color: var(--color-ink);
}
.is-dark .btn-primary:hover { background: var(--color-gold-light); }
.is-dark .btn-ghost {
    color: var(--color-bg);
    border-bottom-color: var(--color-divider-dark);
}
.is-dark .btn-ghost:hover { color: var(--color-gold-soft); border-bottom-color: var(--color-gold-soft); }

.hero-visual {
    aspect-ratio: 5 / 4;
    background: var(--color-dark-2);
    border: 1px solid var(--color-divider);
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-foot {
    position: absolute;
    bottom: 40px;
    left: var(--gutter);
    right: var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.hero-foot-mark {
    font-family: var(--font-display);
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0.02em;
    font-style: italic;
    color: var(--color-gold);
}

/* ------------------------------------------------------------------
   Section heads + foots (reusable)
------------------------------------------------------------------ */

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 56px;
    gap: 40px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(40px, 5vw, 64px);
}

.section-label {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(32px, 3.6vw, 44px);
    color: var(--color-ink);
    line-height: 1;
}

.section-label::after {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    background: var(--color-gold);
    margin-top: 14px;
}

.section-foot {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

.ghost-link {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    border-bottom: 1px solid var(--color-divider);
    padding-bottom: 4px;
    transition: all 0.3s var(--ease);
}

.ghost-link:hover { color: var(--color-ink); border-bottom-color: var(--color-gold); }

.ghost-link-dark { color: var(--color-gold-soft); border-bottom-color: var(--color-divider-dark); }
.ghost-link-dark:hover { color: var(--color-bg); border-bottom-color: var(--color-gold-soft); }

/* Gold-outlined button — same treatment as nav Pre-order CTA */
.btn-outline-gold {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold-logo);
    padding: 14px 28px;
    background: transparent;
    border: 1.5px solid;
    border-image: var(--gradient-gold) 1;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: var(--gradient-gold);
    color: var(--color-dark);
    transform: translateY(-1px);
}

/* ------------------------------------------------------------------
   Available at — partner logos strip (white block)
------------------------------------------------------------------ */

.available {
    padding: 40px 0 44px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-divider);
}

.available-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.available-rule {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--color-gold);
}

.available-label {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--color-ink-2);
    font-weight: 500;
}

.available-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 48px;
    flex-wrap: wrap;
    min-height: 48px;
}

.available-logo {
    width: auto;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    /* Default: monochrome dark grey */
    filter: brightness(0) opacity(0.55);
    transition: filter 0.35s var(--ease);
}

.available-logo:hover {
    /* Hover: gold tint — target #A8843D */
    filter: brightness(0) saturate(100%) invert(54%) sepia(55%) saturate(478%) hue-rotate(2deg) brightness(91%) contrast(90%);
}

/* per-logo sizing — keeps natural aspect ratios */
.logo-toxandria { height: 52px; }
.logo-the-dutch { height: 34px; }
.logo-bernardus { height: 44px; }
.logo-klm { height: 58px; }
.logo-solheim { height: 66px; }

@media (max-width: 720px) {
    .available-row { gap: 28px; }
    .logo-toxandria { height: 40px; }
    .logo-the-dutch { height: 28px; }
    .logo-bernardus { height: 34px; }
    .logo-klm { height: 46px; }
    .logo-solheim { height: 52px; }
}

/* ------------------------------------------------------------------
   Products preview (homepage)
------------------------------------------------------------------ */

.products-preview {
    padding: 80px 0 120px;
    background: var(--color-bg);
    overflow: hidden;
}

.products-head-wrap .section-head {
    margin-bottom: 24px;
    align-items: flex-end;
}

/* ------------------------------------------------------------------
   Hero product slider — one big featured card per product
------------------------------------------------------------------ */

.hero-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-slider-window {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.75s var(--ease);
    will-change: transform;
}

.hero-arrow {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    background:
        linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
        var(--gradient-gold) border-box;
    color: var(--color-gold-logo);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s var(--ease);
    z-index: 10;
    position: relative;
}

.hero-arrow svg {
    width: 22px;
    height: 22px;
    transition: transform 0.35s var(--ease);
}

.hero-arrow.arrow-prev { margin-right: -28px; }
.hero-arrow.arrow-next { margin-left: -28px; }

.hero-arrow.arrow-prev:hover svg { transform: translateX(-3px); }
.hero-arrow.arrow-next:hover svg { transform: translateX(3px); }

/* Premium pagination — name + line per product */
.hero-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-dot {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 14px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    transition: all 0.3s var(--ease);
}

.dot-mark {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--color-divider);
    transition: all 0.45s var(--ease);
}

.dot-label {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-muted);
    transition: color 0.35s var(--ease);
    white-space: nowrap;
}

.hero-dot:hover .dot-mark { background: var(--color-gold-light); width: 56px; }
.hero-dot:hover .dot-label { color: var(--color-ink-2); }

.hero-dot.active .dot-mark {
    background: var(--gradient-gold);
    height: 2px;
    width: 80px;
}

.hero-dot.active .dot-label {
    color: var(--color-ink);
    font-weight: 500;
}

/* ------------------------------------------------------------------
   Featured product card (one shown at a time in the slider)
------------------------------------------------------------------ */

.featured-card {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-dark);
    color: var(--color-bg);
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(8, 22, 16, 0.12);
}

.featured-img-placeholder {
    background:
        radial-gradient(ellipse at 50% 60%, rgba(212, 178, 112, 0.10), transparent 70%),
        linear-gradient(180deg, var(--color-bg-3) 0%, var(--color-bg-2) 100%);
    position: relative;
}

.featured-img-placeholder::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-divider);
    border-radius: 50%;
}

.featured-tag-soon::before {
    background: var(--color-muted);
    box-shadow: none;
    animation: none;
}

.featured-img {
    background: #FFFFFF;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 48px);
}

.featured-img img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.7s var(--ease);
}

.featured-card:hover .featured-img img {
    transform: scale(1.03);
}

.featured-body {
    padding: clamp(36px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.featured-tag {
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--color-gold-soft);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.featured-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-live);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.55);
    animation: dot-pulse 1.8s ease-in-out infinite;
}

.featured-body h3 {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 500;
    color: var(--color-bg);
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0;
}

.featured-body p {
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.6;
    color: rgba(250, 246, 237, 0.78);
    max-width: 42ch;
    margin: 4px 0 0;
}

.featured-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(229, 206, 154, 0.18);
}

.featured-cta {
    display: inline-block;
    padding: 13px 26px;
    border: 1.5px solid transparent;
    background:
        linear-gradient(var(--color-dark), var(--color-dark)) padding-box,
        var(--gradient-gold) border-box;
    color: var(--color-gold-logo);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.featured-card:hover .featured-cta {
    background:
        var(--gradient-gold) padding-box,
        var(--gradient-gold) border-box;
    color: var(--color-dark);
}

.featured-price {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--color-gold-soft);
}

@media (max-width: 800px) {
    .featured-card { grid-template-columns: 1fr; }
    .featured-img { aspect-ratio: 4 / 3; }
    .hero-arrow { width: 44px; height: 44px; }
    .hero-arrow.arrow-prev { margin-right: -22px; }
    .hero-arrow.arrow-next { margin-left: -22px; }
    .hero-nav { gap: 14px; }
    .dot-label { font-size: 9px; letter-spacing: 0.16em; }
}

/* ----- premium centered carousel ----- */
.slider-shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 var(--gutter);
}

.slider-arrow {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    background:
        linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
        var(--gradient-gold) border-box;
    color: var(--color-gold-logo);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s var(--ease);
    z-index: 10;
    position: relative;
}

.slider-arrow svg {
    width: 22px;
    height: 22px;
    transition: transform 0.35s var(--ease);
}

.slider-arrow.arrow-prev:hover svg { transform: translateX(-3px); }
.slider-arrow.arrow-next:hover svg { transform: translateX(3px); }

.slider-arrow.arrow-prev { margin-right: -28px; }
.slider-arrow.arrow-next { margin-left: -28px; }

.slider-window {
    flex: 1;
    overflow: hidden;
    container-type: inline-size;
    position: relative;
    padding: 16px 0 24px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.slider-labels {
    display: flex;
    gap: 28px;
    transition: transform 0.7s var(--ease);
    will-change: transform;
    margin-bottom: 20px;
}

.slider-label {
    flex: 0 0 calc((100cqi - 56px) / 3);
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    padding: 4px 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 4px;
}

.slider-label.is-active { opacity: 1; }

.label-name {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-ink);
    line-height: 1.05;
}

.label-tag {
    display: block;
    font-size: 9px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--color-gold);
}

@media (max-width: 720px) {
    .slider-arrow { width: 44px; height: 44px; }
    .slider-arrow.arrow-prev { margin-right: -22px; }
    .slider-arrow.arrow-next { margin-left: -22px; }
    .label-name { font-size: 20px; }
}

.slider-track {
    display: flex;
    gap: 28px;
    transition: transform 0.7s var(--ease);
    will-change: transform;
}

.product-card {
    flex: 0 0 calc((100cqi - 56px) / 3);
    display: flex;
    flex-direction: column;
    background: var(--color-dark);
    text-decoration: none;
    color: var(--color-bg);
    position: relative;
    overflow: hidden;
    opacity: 0.85;
    transform: scale(0.97);
    transform-origin: center;
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.45s var(--ease);
    box-shadow: 0 8px 24px rgba(8, 22, 16, 0.10);
}

.product-card.is-active {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 22px 56px rgba(8, 22, 16, 0.22);
}

.product-card-img {
    aspect-ratio: 1 / 1;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s var(--ease);
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-placeholder {
    background:
        radial-gradient(ellipse at 50% 60%, rgba(212, 178, 112, 0.08), transparent 70%),
        linear-gradient(180deg, var(--color-bg-3) 0%, var(--color-bg-2) 100%);
    position: relative;
}

.product-card-placeholder::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-divider);
    border-radius: 50%;
}

.product-card-body {
    padding: 24px 24px 24px;
    background: var(--color-dark);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-tag {
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-gold-soft);
    margin-bottom: 10px;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--color-bg);
    line-height: 1.06;
    letter-spacing: -0.005em;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 13px;
    color: rgba(250, 246, 237, 0.7);
    line-height: 1.5;
    flex: 1;
}

.product-card-cta {
    display: inline-block;
    align-self: flex-start;
    background: transparent;
    color: var(--color-gold-logo);
    padding: 9px 16px;
    text-align: center;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1.5px solid;
    border-image: var(--gradient-gold) 1;
    margin-top: 16px;
    transition: all 0.3s var(--ease);
}

.product-card-cta::after {
    content: " →";
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

.product-card:hover .product-card-cta {
    background: var(--gradient-gold);
    color: var(--color-dark);
}

.product-card:hover .product-card-cta::after {
    transform: translateX(3px);
}

@container (max-width: 600px) {
    .product-card,
    .slider-label { flex: 0 0 calc(100cqi - 24px); }
}

/* ------------------------------------------------------------------
   Teasers (About + The Club on homepage)
------------------------------------------------------------------ */

.teaser {
    padding: 140px 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-divider);
}

.teaser.is-dark {
    background: var(--color-dark);
    border-top: none;
}

/* Teaser with background image (Augusta etc.) */
.teaser.is-bg {
    position: relative;
    overflow: hidden;
    border-top: none;
    color: var(--color-bg);
    padding: 180px 0;
}

.teaser-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: 0;
}

.teaser-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(8, 22, 16, 0.78), transparent 70%),
        linear-gradient(180deg, rgba(8, 22, 16, 0.65) 0%, rgba(8, 22, 16, 0.4) 100%);
}

.teaser.is-bg .teaser-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    max-width: 720px;
}

.teaser.is-bg .h-display { color: var(--color-bg); }
.teaser.is-bg .h-display em { color: var(--color-gold-soft); }
.teaser.is-bg .teaser-line { color: rgba(250, 246, 237, 0.88); margin-left: auto; margin-right: auto; }
.teaser.is-bg .eyebrow { color: var(--color-gold-soft); }

.teaser-inner {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.teaser h2 {
    font-size: clamp(40px, 5vw, 72px);
    margin: 16px 0 40px;
}

.teaser.is-bg h2 {
    margin: 0 0 44px;
    font-size: clamp(28px, 3.4vw, 52px);
    white-space: nowrap;
}

.teaser.is-bg .teaser-inner { max-width: 860px; }

@media (max-width: 720px) {
    .teaser.is-bg h2 {
        font-size: clamp(22px, 5.5vw, 32px);
    }
}

.teaser-line {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--color-ink-2);
    line-height: 1.65;
    margin: 0 auto 24px;
    max-width: 56ch;
}

.teaser-line + .teaser-line { margin-top: 0; }

.teaser-inner .ghost-link { margin-top: 16px; display: inline-block; }

.teaser.is-dark .teaser-line { color: rgba(250, 246, 237, 0.78); }
.teaser.is-dark .eyebrow { color: var(--color-gold-soft); }

/* ------------------------------------------------------------------
   Product reveal (dark section — matches packaging photography)
------------------------------------------------------------------ */

.product {
    padding: 160px 0;
    background: var(--color-dark);
    color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.product::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(229, 206, 154, 0.08), transparent 60%);
    pointer-events: none;
}

.product-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 88px;
    align-items: center;
    position: relative;
}

.product-copy h2 {
    font-size: clamp(40px, 5vw, 72px);
    margin: 24px 0 28px;
    color: var(--color-bg);
}

.product-copy h2 em { color: var(--color-gold-soft); }

.product-copy .eyebrow { color: var(--color-gold-soft); }
.product-copy .lead { color: rgba(250, 246, 237, 0.78); }

.product-spec {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    padding-top: 36px;
    border-top: 1px solid var(--color-divider-dark);
}

.product-spec dt {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold-soft);
    margin-bottom: 10px;
}

.product-spec dd {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-bg);
}

.product-spec dd span {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(250, 246, 237, 0.65);
    margin-top: 4px;
}

.product-cta-row {
    margin-top: 56px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.product-visual {
    aspect-ratio: 5 / 4;
    background: var(--color-dark-2);
    border: 1px solid var(--color-divider-dark);
    overflow: hidden;
    position: relative;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ------------------------------------------------------------------
   Proof / Designed for 18 holes (light)
------------------------------------------------------------------ */

.proof {
    padding: 140px 0;
    background: var(--color-bg-2);
    text-align: center;
}

.proof h2 {
    font-size: clamp(36px, 4.5vw, 60px);
    margin-bottom: 16px;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.proof-lead {
    margin: 0 auto 96px;
    text-align: center;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--color-divider);
    border: 1px solid var(--color-divider);
}

.proof-cell {
    background: var(--color-bg);
    padding: 56px 40px;
    text-align: left;
    transition: background 0.4s var(--ease);
}

.proof-cell:hover { background: var(--color-bg-3); }

.proof-num {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 24px;
}

.proof-cell h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-ink);
    margin-bottom: 12px;
}

.proof-cell p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-ink-2);
}

/* ------------------------------------------------------------------
   Manifesto teaser (dark — gravitas moment)
------------------------------------------------------------------ */

.manifesto {
    padding: 180px 0;
    background: var(--color-dark-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(229, 206, 154, 0.06), transparent 60%);
}

.manifesto > * { position: relative; }

.manifesto blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1.3;
    letter-spacing: 0;
    color: var(--color-bg);
    max-width: 24ch;
    margin: 0 auto 48px;
}

.manifesto blockquote::before,
.manifesto blockquote::after {
    color: var(--color-gold-soft);
    font-style: normal;
}

.manifesto .eyebrow { color: var(--color-gold-soft); }

.manifesto-mark {
    display: inline-block;
    padding-top: 20px;
    border-top: 1px solid var(--color-divider-dark);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold-soft);
}

/* ------------------------------------------------------------------
   Coming soon (light)
------------------------------------------------------------------ */

.coming {
    padding: 140px 0;
    background: var(--color-bg);
}

.coming-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
    gap: 40px;
}

.coming-head h2 {
    font-size: clamp(36px, 4vw, 56px);
    max-width: 16ch;
}

.coming-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.coming-card {
    background: var(--color-bg-3);
    border: 1px solid var(--color-divider);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    aspect-ratio: 4 / 5;
    justify-content: space-between;
    transition: all 0.4s var(--ease);
}

.coming-card:hover {
    background: var(--color-bg-2);
    border-color: rgba(168, 132, 61, 0.4);
}

.coming-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coming-tag {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 6px 12px;
    border: 1px solid var(--color-gold);
}

.coming-mock {
    flex: 1;
    margin: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg-2);
}

.coming-mock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coming-card h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-ink);
    margin-bottom: 8px;
}

.coming-card p {
    font-size: 13px;
    color: var(--color-ink-2);
    margin-bottom: 24px;
}

.coming-form {
    display: flex;
    gap: 0;
    border: 1px solid var(--color-divider);
    background: var(--color-bg);
}

.coming-form input {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    color: var(--color-ink);
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.coming-form input::placeholder { color: var(--color-muted); }
.coming-form input:focus { outline: none; }

.coming-form button {
    padding: 14px 24px;
    background: var(--color-ink);
    border: none;
    color: var(--color-bg);
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
}

.coming-form button:hover { background: var(--color-gold); }

/* ------------------------------------------------------------------
   Journal teaser (light)
------------------------------------------------------------------ */

.journal {
    padding: 140px 0;
    background: var(--color-bg-2);
    border-top: 1px solid var(--color-divider);
}

.journal-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 72px;
}

.journal-head h2 {
    font-size: clamp(36px, 4vw, 56px);
}

.journal-link {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
    border-bottom: 1px solid var(--color-divider);
    padding-bottom: 4px;
}

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

.journal-card { cursor: pointer; }

.journal-img {
    aspect-ratio: 5 / 6;
    background: var(--color-bg-2);
    border: 1px solid var(--color-divider);
    margin-bottom: 28px;
    overflow: hidden;
    position: relative;
}

.journal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.journal-card:hover .journal-img img {
    transform: scale(1.04);
}

.journal-meta {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.journal-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-ink);
    line-height: 1.25;
}

.journal-card:hover h3 { color: var(--color-gold); }

/* ------------------------------------------------------------------
   Testimonials — Heard from the course
------------------------------------------------------------------ */

.testimonials {
    padding: 140px 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-divider);
}

.testimonials-head {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-head h2 {
    font-size: clamp(36px, 4vw, 56px);
    margin-top: 12px;
}

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

.testimonial {
    background: var(--color-bg-3);
    border: 1px solid var(--color-divider);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease);
}

.testimonial:hover {
    border-color: rgba(168, 132, 61, 0.4);
}

.testimonial-stars {
    color: var(--color-gold);
    letter-spacing: 0.2em;
    font-size: 13px;
    margin-bottom: 20px;
}

.testimonial p {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    color: var(--color-ink);
    margin-bottom: 28px;
    flex: 1;
}

.testimonial-meta {
    padding-top: 20px;
    border-top: 1px solid var(--color-divider);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--color-ink-2);
}

.testimonial-meta strong {
    display: block;
    font-weight: 500;
    color: var(--color-ink);
    font-size: 13px;
    letter-spacing: 0;
    margin-bottom: 2px;
}

@media (max-width: 960px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   Pre-order banner (warm cream panel)
------------------------------------------------------------------ */

.preorder {
    padding: 140px 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(168, 132, 61, 0.08), transparent 60%),
        var(--color-bg);
    text-align: center;
}

.preorder-inner {
    max-width: 720px;
    margin: 0 auto;
}

.preorder h2 {
    font-size: clamp(40px, 5vw, 72px);
    margin: 20px 0 24px;
}

.preorder p {
    margin-bottom: 48px;
}

.preorder .btn-primary {
    margin-right: 16px;
}

.preorder-note {
    margin-top: 32px;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--color-muted);
}

/* ------------------------------------------------------------------
   Footer (dark — anchors the page)
------------------------------------------------------------------ */

.footer {
    padding: 100px 0 40px;
    background: var(--color-dark-2);
    color: var(--color-bg);
    border-top: 1px solid var(--color-divider-dark);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    display: inline-block;
    line-height: 0;
    margin-bottom: 4px;
}

.footer-logo img {
    height: 64px;
    width: auto;
    display: block;
}

.footer-brand p {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(250, 246, 237, 0.7);
    max-width: 32ch;
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold-soft);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(250, 246, 237, 0.7);
    padding: 6px 0;
    transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--color-bg); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--color-divider-dark);
    font-size: 11px;
    color: var(--color-muted);
    letter-spacing: 0.05em;
}

.footer-bottom .signoff {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    color: var(--color-gold-soft);
    letter-spacing: 0;
}

/* ------------------------------------------------------------------
   ABOUT PAGE
------------------------------------------------------------------ */

.nav-active {
    color: var(--color-gold-soft) !important;
}

/* About hero — full-bleed image, editorial title */
.about-hero {
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    padding: 200px 0 120px;
    color: var(--color-bg);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 22, 16, 0.85) 0%, rgba(8, 22, 16, 0.55) 60%, rgba(8, 22, 16, 0.3) 100%);
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.about-hero-eyebrow {
    color: var(--color-gold-soft);
    display: inline-block;
    margin-bottom: 28px;
}

.about-hero-title {
    color: var(--color-bg);
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.08;
    margin-bottom: 32px;
}

.about-hero-title em {
    color: var(--color-gold-soft);
}

.about-hero-lead {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.6;
    color: rgba(250, 246, 237, 0.88);
    max-width: 58ch;
}

/* About sections — two-column layout (eyebrow left, body right) */
.about-section {
    padding: 120px 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-divider);
}

.about-two-col {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 56px;
    align-items: start;
}

.about-col-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 12px;
}

.eyebrow-rule {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--color-gold);
    flex-shrink: 0;
}

.about-col-body h2 {
    font-size: clamp(40px, 4.5vw, 64px);
    margin-bottom: 28px;
    line-height: 1.02;
}

.about-lead {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.7;
    color: var(--color-ink-2);
    max-width: 56ch;
    margin-bottom: 20px;
}

.about-lead:last-child {
    margin-bottom: 0;
}

/* Values grid */
.about-values .values-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    grid-column: 1 / -1;
}

.value-card {
    padding: 36px 0 0;
    border-top: 1px solid var(--color-divider);
}

.value-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 24px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-ink);
    margin-bottom: 12px;
    line-height: 1.05;
}

.value-card p {
    font-size: 14px;
    color: var(--color-ink-2);
    line-height: 1.6;
}

/* Line list — the roadmap */
.line-list {
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
}

.line-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 28px;
    align-items: baseline;
    padding: 24px 0;
    border-top: 1px solid var(--color-divider);
}

.line-item:last-child {
    border-bottom: 1px solid var(--color-divider);
}

.line-vol {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
}

.line-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-ink);
    line-height: 1;
}

.line-status {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
}

.line-status-available {
    color: var(--color-live);
}

.line-status-available::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-live);
    margin-right: 8px;
    vertical-align: 1px;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.55);
    animation: dot-pulse 1.8s ease-in-out infinite;
}

/* Signature quote section */
.about-quote {
    position: relative;
    padding: 160px 0;
    color: var(--color-bg);
    overflow: hidden;
    text-align: center;
}

.about-quote-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.about-quote-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at center, rgba(8, 22, 16, 0.75), rgba(8, 22, 16, 0.55) 70%, rgba(8, 22, 16, 0.4));
}

.about-quote > .container {
    position: relative;
    z-index: 2;
}

.about-quote blockquote {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.18;
    color: var(--color-bg);
    margin: 0 auto 32px;
    max-width: 22ch;
}

.about-quote blockquote em {
    font-style: italic;
    color: var(--color-gold-soft);
}

.about-quote-mark {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--color-gold-soft);
    letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 900px) {
    .about-two-col { grid-template-columns: 1fr; gap: 28px; }
    .about-col-eyebrow { padding-top: 0; }
    .about-values .values-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
    .line-item { grid-template-columns: 90px 1fr; }
    .line-item .line-status { grid-column: 2; margin-top: 4px; }
}

@media (max-width: 560px) {
    .about-values .values-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   Responsive
------------------------------------------------------------------ */

@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .nav-links { display: none; }
    .hero-inner,
    .product-inner { grid-template-columns: 1fr; gap: 56px; }
    .proof-grid,
    .coming-grid { grid-template-columns: 1fr; }
    .journal-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .coming-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .footer-inner { grid-template-columns: 1fr; }
    .product-spec { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ==================================================================
   PRODUCT DETAIL PAGE (Energy Bar)
================================================================== */

.pdp {
    padding: 146px 0 96px;
}

.pdp-breadcrumb {
    padding-bottom: 24px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.pdp-breadcrumb a {
    color: var(--color-muted);
    transition: color 0.3s var(--ease);
}

.pdp-breadcrumb a:hover { color: var(--color-gold); }

.pdp-breadcrumb .crumb-sep {
    margin: 0 10px;
    color: rgba(15, 24, 18, 0.2);
}

.pdp-breadcrumb .crumb-current { color: var(--color-ink); }

.pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 64px;
    align-items: start;
}

.pdp-main { min-width: 0; }

/* --- Gallery --- */

.pdp-gallery {
    margin-bottom: 56px;
}

.pdp-gallery-main {
    background: #FFFFFF;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 56px);
}

.pdp-gallery-main img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s var(--ease);
}

.pdp-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    order: -1;
}

.pdp-thumb {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border: 1px solid var(--color-divider);
    overflow: hidden;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.pdp-thumb img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s var(--ease);
}

.pdp-thumb:hover img { opacity: 1; }

.pdp-thumb.is-active {
    border-color: var(--color-gold);
}

.pdp-thumb.is-active img { opacity: 1; }

/* --- Inline title block (mobile) --- */

.pdp-head-inline {
    display: none;
    margin-bottom: 48px;
}

.pdp-head-inline .h-display {
    font-size: clamp(36px, 5vw, 52px);
    margin: 14px 0 18px;
}

/* --- Section spacing --- */

.pdp-section {
    padding: 64px 0;
    border-top: 1px solid var(--color-divider);
}

.pdp-section:first-of-type { border-top: 0; padding-top: 0; }

.pdp-h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin: 14px 0 24px;
}

.pdp-lead {
    margin-bottom: 40px;
}

/* --- Intro: problem / solution --- */

.pdp-two-up {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.pdp-col .eyebrow {
    display: block;
    margin-bottom: 16px;
}

.pdp-body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-ink-2);
}

/* --- Compare grid --- */

.compare-grid {
    margin-top: 40px;
    border-top: 1px solid var(--color-divider);
}

.compare-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
    border-bottom: 1px solid var(--color-divider);
    align-items: stretch;
}

.compare-row > * {
    padding: 20px 18px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--color-ink-2);
    display: flex;
    align-items: center;
}

.compare-row.compare-head > * {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    padding-top: 18px;
    padding-bottom: 18px;
    align-items: flex-end;
    line-height: 1.4;
}

.compare-row .compare-label {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-ink);
    font-weight: 500;
}

.compare-us {
    background: rgba(168, 132, 61, 0.06);
    color: var(--color-ink);
    font-weight: 500;
    position: relative;
}

.compare-row.compare-head .compare-col-us {
    color: var(--color-gold);
}

/* --- Ingredients --- */

.ingredient-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--color-divider);
}

.ingredient {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-divider);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ingredient:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--color-divider); }
.ingredient:nth-child(even) { padding-left: 24px; }

.ingredient-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--color-ink);
    line-height: 1.1;
}

.ingredient-note {
    font-size: 14px;
    color: var(--color-ink-2);
    line-height: 1.5;
}

/* --- Nutrition --- */

.nutri-block {
    margin-top: 56px;
    background: var(--color-bg-2);
    padding: 36px;
}

.nutri-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-divider);
}

.nutri-sub {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.nutri-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.nutri-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 8px;
    background: var(--color-bg);
}

.nutri-val {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    color: var(--color-gold);
    line-height: 1;
}

.nutri-key {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-ink-2);
}

.nutri-foot {
    margin-top: 18px;
    font-size: 12px;
    color: var(--color-muted);
    letter-spacing: 0.04em;
}

/* --- Info accordions (ingredients / allergens / storage) --- */

.info-accs {
    margin-top: 8px;
    border-top: 1px solid var(--color-divider);
}

.info-acc {
    border-bottom: 1px solid var(--color-divider);
}

.info-acc summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-ink);
    transition: color 0.25s var(--ease);
}

.info-acc summary::-webkit-details-marker { display: none; }

.info-acc summary::after {
    content: "+";
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 22px;
    color: var(--color-gold);
    margin-left: 16px;
    line-height: 1;
    transition: transform 0.3s var(--ease);
}

.info-acc[open] summary::after { transform: rotate(45deg); }

.info-acc summary:hover { color: var(--color-gold); }

.info-acc-body {
    padding: 4px 0 28px;
}

.info-acc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.info-prose {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-ink-2);
    margin-bottom: 18px;
}

.info-prose strong {
    color: var(--color-ink);
    font-weight: 500;
}

.info-decl {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.65;
    color: var(--color-muted);
    padding-top: 18px;
    border-top: 1px solid var(--color-divider);
}

.nutri-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.nutri-table thead th {
    text-align: right;
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
    border-bottom: 1px solid var(--color-divider);
}

.nutri-table thead th:first-child { text-align: left; }

.nutri-table tbody td {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-divider);
    color: var(--color-ink);
    text-align: right;
    font-size: 14px;
    line-height: 1.4;
}

.nutri-table tbody td:first-child {
    text-align: left;
    color: var(--color-ink-2);
}

.nutri-table tbody tr:last-child td { border-bottom: 0; }

.nutri-table .nutri-row-sub {
    color: var(--color-muted);
    font-size: 13px;
    padding-left: 8px;
}

.info-acc-body-simple p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-ink-2);
    margin-bottom: 8px;
}

.info-acc-body-simple p:last-child { margin-bottom: 0; }

.info-acc-body-simple strong {
    color: var(--color-ink);
    font-weight: 500;
}

@media (max-width: 780px) {
    .info-acc-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* --- How to use --- */

.howto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.howto-card {
    background: var(--color-bg-2);
    padding: 32px 28px;
    border-top: 2px solid var(--color-gold);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.howto-marker {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 36px;
    color: var(--color-gold);
    line-height: 1;
}

.howto-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-ink);
    line-height: 1.1;
}

.howto-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-ink-2);
}

/* --- FAQ --- */

.faq-list {
    margin-top: 32px;
    border-top: 1px solid var(--color-divider);
}

.faq-item {
    border-bottom: 1px solid var(--color-divider);
    padding: 22px 0;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-ink);
    line-height: 1.2;
    transition: color 0.3s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--color-gold);
    font-weight: 300;
    margin-left: 16px;
    transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { color: var(--color-gold); }

.faq-item p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-ink-2);
    max-width: 62ch;
}

/* --- Cross-sell --- */

.crosssell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.crosssell-card {
    background: var(--color-bg-2);
    display: flex;
    flex-direction: column;
}

.crosssell-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.crosssell-img img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.crosssell-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.crosssell-card:hover .crosssell-img img { transform: scale(1.04); }

.crosssell-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crosssell-tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.crosssell-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-ink);
    line-height: 1.1;
}

.crosssell-card p {
    font-size: 15px;
    color: var(--color-ink-2);
    line-height: 1.55;
    margin-bottom: 6px;
}

/* ------------------------------------------------------------------
   RIGHT: sticky buy card
------------------------------------------------------------------ */

.pdp-buy {
    position: sticky;
    top: 146px;
    align-self: start;
    max-height: calc(100vh - 162px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.pdp-buy::-webkit-scrollbar { width: 6px; }
.pdp-buy::-webkit-scrollbar-thumb { background: var(--color-divider); border-radius: 3px; }
.pdp-buy::-webkit-scrollbar-track { background: transparent; }

.pdp-buy-card {
    background: var(--color-bg-3);
    border: 1px solid var(--color-divider);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pdp-buy-card .eyebrow {
    margin-bottom: -8px;
}

.pdp-buy-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-ink);
}

.pdp-buy-sub {
    font-size: 15px;
    line-height: 1.55;
    color: var(--color-ink-2);
    margin-top: -8px;
}

.pdp-buy-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-divider);
}

.pdp-buy-rating .stars {
    color: var(--color-gold);
    font-size: 14px;
    letter-spacing: 0.05em;
}

.rating-count {
    font-size: 12px;
    color: var(--color-muted);
    letter-spacing: 0.04em;
}

/* Option block */

.pdp-option { display: flex; flex-direction: column; gap: 12px; }

.pdp-option-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.pdp-option-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.pdp-option-value {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-ink);
}

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

.pdp-pill {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid var(--color-divider);
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--color-ink-2);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    font-family: var(--font-body);
    font-weight: 400;
}

.pdp-pill:hover {
    border-color: var(--color-gold);
    color: var(--color-ink);
}

.pdp-pill.is-active {
    border-color: var(--color-ink);
    background: var(--color-ink);
    color: var(--color-bg);
}

/* Pack rows */

.pdp-packs { display: flex; flex-direction: column; gap: 10px; }

.pdp-pack {
    background: transparent;
    border: 1px solid var(--color-divider);
    padding: 16px 18px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--font-body);
    position: relative;
}

.pdp-pack:hover { border-color: var(--color-gold); }

.pdp-pack.is-active {
    border-color: var(--color-ink);
    background: var(--color-bg);
    box-shadow: inset 0 0 0 1px var(--color-ink);
}

.pack-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.pack-name {
    font-size: 14px;
    color: var(--color-ink);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.pack-price {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-ink);
    margin-left: auto;
}

.pack-flag {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-bg);
    background: var(--color-gold);
    padding: 3px 8px;
    margin-left: 8px;
    order: 2;
}

.pack-flag-soft {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.pack-bottom {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.pack-sub {
    font-size: 12px;
    color: var(--color-muted);
    font-style: italic;
}

.pack-unit {
    font-size: 11px;
    color: var(--color-muted);
    letter-spacing: 0.04em;
}

/* CTA */

.pdp-cta {
    width: 100%;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 13px;
}

.pdp-cta span:first-child { display: inline-flex; gap: 8px; align-items: baseline; }
#ctaPrice { font-weight: 500; letter-spacing: 0.02em; }

/* Trust list */

.pdp-trust {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 4px 0 0;
    padding: 0;
}

.pdp-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--color-ink-2);
    letter-spacing: 0.02em;
}

.trust-mark {
    width: 14px;
    height: 14px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.trust-mark::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: var(--color-gold);
    border-radius: 50%;
}

.pdp-buy-link {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
    border-bottom: 1px solid var(--color-divider);
    padding-bottom: 4px;
    align-self: flex-start;
    margin-top: 4px;
    transition: all 0.3s var(--ease);
}

.pdp-buy-link:hover {
    color: var(--color-ink);
    border-bottom-color: var(--color-gold);
}

/* --- Quote strip --- */

.pdp-quote {
    padding: 96px 0;
    text-align: center;
}

.pdp-quote-text {
    font-size: clamp(28px, 3.6vw, 44px);
    max-width: 880px;
    margin: 0 auto;
}

.pdp-quote-meta {
    display: block;
    margin-top: 28px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold-soft);
}

/* --- Responsive --- */

@media (max-width: 1080px) {
    .pdp-grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; }
    .pdp-buy-card { padding: 28px 24px; }
}

@media (max-width: 900px) {
    .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
    .pdp-gallery { position: relative; top: 0; }
    .pdp-buy { position: relative; top: 0; order: 0; }
    .pdp-head-inline { display: block; order: -1; }
    .pdp-two-up { grid-template-columns: 1fr; gap: 32px; }
    .howto-grid { grid-template-columns: 1fr; }
    .crosssell-grid { grid-template-columns: 1fr; }
    .ingredient-list { grid-template-columns: 1fr; }
    .ingredient:nth-child(odd) { padding-right: 0; border-right: 0; }
    .ingredient:nth-child(even) { padding-left: 0; }
    .nutri-grid { grid-template-columns: repeat(3, 1fr); }
    .compare-row { grid-template-columns: 1fr; }
    .compare-row > * { padding: 10px 0; border-bottom: 1px solid var(--color-divider); }
    .compare-row.compare-head { display: none; }
    .compare-row .compare-label { padding-top: 22px; font-weight: 600; }
    .compare-row .compare-cell::before {
        content: attr(data-col) "";
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--color-muted);
        margin-right: 12px;
    }
}

@media (max-width: 560px) {
    .pdp-gallery { grid-template-columns: 1fr; }
    .pdp-thumbs { flex-direction: row; order: 1; overflow-x: auto; }
    .pdp-thumb { flex-shrink: 0; }
    .nutri-grid { grid-template-columns: repeat(2, 1fr); }
    .pdp-buy-card { padding: 24px 20px; }
}

/* ==================================================================
   CART DRAWER
================================================================== */

/* Nav cart trigger (replaces simple Pre-order link on PDP) */
.nav-cta .nav-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.nav-cta .nav-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--color-gold);
    color: var(--color-ink);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
}

.nav-cta .nav-cart-count[hidden] { display: none; }

/* Overlay */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 24, 18, 0.45);
    backdrop-filter: blur(2px);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}

.cart-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(460px, 100vw);
    background: var(--color-bg);
    z-index: 99;
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -16px 0 40px rgba(15, 24, 18, 0.15);
}

.cart-drawer.is-open { transform: translateX(0); }

.cart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-divider);
    flex-shrink: 0;
}

.cart-title {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-ink);
}

.cart-close {
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--color-ink);
    padding: 8px;
    margin: -8px;
    line-height: 0;
    transition: color 0.25s var(--ease);
}

.cart-close:hover { color: var(--color-gold); }

/* Progress */
.cart-progress {
    padding: 16px 24px 18px;
    background: var(--color-bg-2);
    flex-shrink: 0;
}

.cart-progress-bar {
    height: 4px;
    background: rgba(15, 24, 18, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.cart-progress-fill {
    display: block;
    height: 100%;
    background: var(--color-gold);
    width: 0%;
    transition: width 0.5s var(--ease);
}

.cart-progress-label {
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-ink-2);
}

/* Items list */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    min-height: 0;
}

.cart-empty {
    padding: 24px 0;
    text-align: center;
}

.cart-empty p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-muted);
}

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-divider);
    margin-bottom: 20px;
}

.cart-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-img {
    width: 72px;
    height: 72px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 1px solid var(--color-divider);
}

.cart-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-item-body h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-ink);
}

.cart-item-variant {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-muted);
}

.cart-item-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.qty-step {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-divider);
}

.qty-step button {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-ink);
    transition: background 0.2s var(--ease);
}

.qty-step button:hover { background: var(--color-bg-2); }

.qty-step .qty-val {
    min-width: 28px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-ink);
}

.cart-item-price {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-ink);
}

.cart-item-remove {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-top: 8px;
    cursor: pointer;
    background: transparent;
    border: 0;
    text-align: left;
    padding: 0;
    align-self: flex-start;
    transition: color 0.25s var(--ease);
}

.cart-item-remove:hover { color: var(--color-gold); }

/* ==================================================================
   B2B PORTAL — /pro
================================================================== */

.pro-body { background: var(--color-bg); }

/* ---- Gate (login) ---- */

.pro-gate {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--color-dark);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.pro-gate-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(168, 132, 61, 0.18), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 132, 61, 0.12), transparent 50%),
        var(--color-dark);
    pointer-events: none;
}

.pro-gate-inner {
    position: relative;
    max-width: 460px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.pro-gate-logo {
    margin-bottom: 8px;
    display: block;
    line-height: 0;
}

.pro-gate-logo img {
    height: 84px;
    width: auto;
}

.pro-gate-eyebrow {
    color: var(--color-gold-soft);
}

.pro-gate-title {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--color-bg);
}

.pro-gate-title em {
    color: var(--color-gold);
}

.pro-gate-lead {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(250, 246, 237, 0.75);
    max-width: 38ch;
}

.pro-gate-lead a {
    color: var(--color-gold-soft);
    border-bottom: 1px solid rgba(229, 206, 154, 0.35);
}

.pro-gate-form {
    width: 100%;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pro-gate-label {
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold-soft);
    margin-bottom: 2px;
}

.pro-gate-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(250, 246, 237, 0.06);
    border: 1px solid rgba(229, 206, 154, 0.25);
    color: var(--color-bg);
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: 0.04em;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.pro-gate-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(250, 246, 237, 0.1);
}

.pro-gate-input::placeholder {
    color: rgba(250, 246, 237, 0.35);
    letter-spacing: 0.3em;
}

.pro-gate-submit {
    background: var(--color-gold);
    color: var(--color-dark);
    border: 0;
    padding: 16px 24px;
    margin-top: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.25s var(--ease);
}

.pro-gate-submit:hover { background: var(--color-gold-light); }

.pro-gate-error {
    font-family: var(--font-body);
    font-size: 12px;
    color: #E89B8B;
    line-height: 1.5;
    margin-top: 4px;
}

.pro-gate-error a { color: var(--color-gold-soft); border-bottom: 1px solid rgba(229, 206, 154, 0.35); }

.pro-gate-foot {
    margin-top: 18px;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.6;
    color: rgba(250, 246, 237, 0.55);
    max-width: 40ch;
}

.pro-gate-foot a { color: var(--color-gold-soft); border-bottom: 1px solid rgba(229, 206, 154, 0.35); }

.pro-gate-tiny {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(229, 206, 154, 0.12);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: rgba(250, 246, 237, 0.4);
}

.pro-gate-tiny a {
    color: rgba(229, 206, 154, 0.65);
    border-bottom: 1px solid rgba(229, 206, 154, 0.2);
}

/* ---- Portal nav ---- */

/* Override the base .nav (which sits at top:42px to make room for the promo bar).
   The Pro portal has no promo bar, so the nav should sit flush to the top. */
.pro-nav {
    top: 0;
    background: rgba(8, 26, 18, 0.95);
}

.pro-nav-logo {
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
}

.pro-nav-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: var(--color-gold);
    padding: 6px 11px 5px;
    line-height: 1;
    margin-left: 4px;
}

/* ---- Hero ---- */

.pro-hero {
    padding: 160px 0 96px;
}

.pro-hero-eyebrow { color: var(--color-gold-soft); }

.pro-hero-title {
    font-size: clamp(48px, 7vw, 88px);
    margin: 18px 0 24px;
}

.pro-hero-lead {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    color: rgba(250, 246, 237, 0.78);
    max-width: 56ch;
}

.pro-hero-stats {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(229, 206, 154, 0.22);
}

.pro-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pro-stat-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(52px, 5.4vw, 76px);
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--color-gold-soft);
}

.pro-stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(250, 246, 237, 0.6);
}

/* ---- Section base ---- */

.pro-section {
    padding: 96px 0;
    border-bottom: 1px solid var(--color-divider);
}

.pro-section:last-of-type { border-bottom: 0; }

.pro-section-head {
    margin-bottom: 56px;
    max-width: 600px;
}

.pro-section-head .eyebrow { display: block; margin-bottom: 14px; }

.pro-section-head h2 {
    font-size: clamp(36px, 4.6vw, 56px);
    margin-bottom: 16px;
}

.pro-section-lead {
    margin-top: 14px;
}

/* ---- Product card ---- */

.pro-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.pro-product-img {
    background: #FFFFFF;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.pro-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pro-product-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pro-product-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--color-divider);
}

.pro-product-specs li {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-divider);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-ink-2);
    line-height: 1.5;
}

.pro-product-specs strong {
    color: var(--color-ink);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    align-self: center;
}

/* ---- Pricing tiers ---- */

.pro-tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pro-tier {
    background: var(--color-bg-3);
    border: 1px solid var(--color-divider);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.pro-tier:hover {
    transform: translateY(-2px);
    border-color: var(--color-gold);
}

.pro-tier-highlight {
    border-color: var(--color-ink);
    box-shadow: 0 12px 36px rgba(15, 24, 18, 0.08);
}

.pro-tier-dark {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-bg);
}

.pro-tier-dark .pro-tier-label,
.pro-tier-dark .pro-tier-volume { color: var(--color-gold-soft); }

.pro-tier-dark .pro-tier-price,
.pro-tier-dark .pro-tier-unit { color: var(--color-bg); }

.pro-tier-dark .pro-tier-list li { color: rgba(250, 246, 237, 0.75); }

.pro-tier-dark .pro-tier-margin {
    color: var(--color-gold-soft);
    border-top-color: rgba(229, 206, 154, 0.2);
}

.pro-tier-flag {
    position: absolute;
    top: -10px;
    right: 18px;
    background: var(--color-gold);
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 10px;
}

.pro-tier-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.pro-tier-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 500;
}

.pro-tier-volume {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.pro-tier-price {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 36px;
    line-height: 1;
    color: var(--color-ink);
}

.pro-tier-price span {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-left: 4px;
}

.pro-tier-unit {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-ink-2);
}

.pro-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pro-tier-list li {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-ink-2);
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.pro-tier-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.pro-tier-margin {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--color-divider);
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-ink-2);
    letter-spacing: 0.04em;
}

.pro-tier-margin strong {
    color: var(--color-gold);
    font-weight: 600;
}

/* ---- Order form ---- */

.pro-order-form {
    background: var(--color-bg-3);
    border: 1px solid var(--color-divider);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pro-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pro-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pro-form-row-full {
    grid-column: 1 / -1;
}

.pro-form-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
}

.pro-form-input,
.pro-form-textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-divider);
    color: var(--color-ink);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.pro-form-input::placeholder,
.pro-form-textarea::placeholder {
    color: var(--color-muted);
    font-style: italic;
}

.pro-form-input:focus,
.pro-form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #FFFFFF;
}

.pro-form-textarea { resize: vertical; min-height: 96px; line-height: 1.5; }

.pro-form-block {
    padding: 24px;
    background: var(--color-bg-2);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pro-form-block-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-ink);
    font-weight: 500;
}

.pro-form-block-note {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-muted);
    line-height: 1.5;
}

.pro-form-qty {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pro-form-qty-row {
    display: grid;
    grid-template-columns: 1fr 100px 80px;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--color-bg-3);
    border: 1px solid var(--color-divider);
}

.pro-form-qty-name {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-ink);
    font-weight: 500;
}

.pro-form-qty-input {
    padding: 8px 12px;
    border: 1px solid var(--color-divider);
    background: var(--color-bg);
    font-family: var(--font-body);
    font-size: 14px;
    text-align: center;
    color: var(--color-ink);
}

.pro-form-qty-unit {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--color-muted);
}

.pro-form-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.pro-form-submit {
    background: var(--color-ink);
    color: var(--color-bg);
    border: 0;
    cursor: pointer;
    font-family: var(--font-body);
    padding: 18px 32px;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background 0.25s var(--ease);
}

.pro-form-submit:hover { background: var(--color-dark); }

.pro-form-confirm {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-gold);
    flex: 1 1 280px;
    line-height: 1.5;
}

.pro-order-fallback {
    margin-top: 24px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-ink-2);
    text-align: center;
}

.pro-order-fallback a {
    color: var(--color-gold);
    border-bottom: 1px solid var(--color-divider);
}

/* ---- How it works ---- */

.pro-howto-cta {
    margin-top: 56px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

/* ---- Assets grid ---- */

.pro-assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pro-asset-card {
    background: var(--color-bg-3);
    border: 1px solid var(--color-divider);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.25s var(--ease);
    color: inherit;
}

.pro-asset-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.pro-asset-card.pro-asset-disabled {
    opacity: 0.55;
    pointer-events: none;
}

.pro-asset-card-list {
    cursor: default;
}

.pro-asset-links {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--color-divider);
    padding-top: 14px;
}

.pro-asset-links a {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-gold);
    border-bottom: 1px solid var(--color-divider);
    padding-bottom: 4px;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
    align-self: flex-start;
}

.pro-asset-links a:hover {
    color: var(--color-ink);
    border-bottom-color: var(--color-gold);
}

.pro-asset-icon {
    font-size: 28px;
    line-height: 1;
}

.pro-asset-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-ink);
    line-height: 1.1;
}

.pro-asset-card p {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.55;
    color: var(--color-ink-2);
}

/* ---- Contact ---- */

.pro-contact {
    padding: 96px 0;
}

.pro-contact-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.pro-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pro-contact-card {
    background: rgba(250, 246, 237, 0.04);
    border: 1px solid rgba(229, 206, 154, 0.22);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pro-contact-name {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--color-bg);
}

.pro-contact-role {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold-soft);
    margin-bottom: 12px;
}

.pro-contact-line a {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-bg);
    border-bottom: 1px solid rgba(229, 206, 154, 0.25);
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.pro-contact-line a:hover {
    color: var(--color-gold-soft);
    border-bottom-color: var(--color-gold);
}

/* ---- Pro responsive ---- */

@media (max-width: 1080px) {
    .pro-tier-grid { grid-template-columns: repeat(2, 1fr); }
    .pro-assets-grid { grid-template-columns: repeat(2, 1fr); }
    .pro-hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
    .pro-product { grid-template-columns: 1fr; gap: 32px; }
    .pro-contact-inner { grid-template-columns: 1fr; gap: 32px; }
    .pro-section { padding: 64px 0; }
    .pro-hero { padding: 140px 0 72px; }
    .pro-product-specs li { grid-template-columns: 1fr; gap: 4px; }
    .pro-product-specs strong { font-size: 10px; }
    .pro-order-form { padding: 28px; }
    .pro-form-grid { grid-template-columns: 1fr; }
    .pro-form-qty-row { grid-template-columns: 1fr 80px 60px; }
}

@media (max-width: 560px) {
    .pro-tier-grid { grid-template-columns: 1fr; }
    .pro-assets-grid { grid-template-columns: 1fr; }
    .pro-hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .pro-order-form { padding: 20px; }
}

/* ==================================================================
   end B2B PORTAL
================================================================== */

.cart-item-oos {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    background: rgba(168, 132, 61, 0.12);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
}

.pdp-cta:disabled {
    background: var(--color-muted);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Recommended carousel */
.cart-recommend {
    border-top: 1px solid var(--color-divider);
    padding: 18px 24px;
    flex-shrink: 0;
}

.cart-recommend-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.cart-recommend-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-ink);
}

.cart-recommend-nav {
    display: inline-flex;
    gap: 6px;
}

.cart-rec-arrow {
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-divider);
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-ink);
    transition: all 0.25s var(--ease);
}

.cart-rec-arrow:hover { border-color: var(--color-gold); color: var(--color-gold); }

.cart-recommend-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-bottom: 2px;
}

.cart-recommend-track::-webkit-scrollbar { display: none; }

.cart-rec-card {
    flex: 0 0 calc(100% - 12px);
    scroll-snap-align: start;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 10px;
    border: 1px solid var(--color-divider);
    background: var(--color-bg);
}

.cart-rec-img {
    width: 56px;
    height: 56px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 1px solid var(--color-divider);
}

.cart-rec-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-rec-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.cart-rec-body h5 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-ink);
}

.cart-rec-body p {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-muted);
}

.cart-rec-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 8px;
    padding-top: 4px;
}

.cart-rec-price {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-ink);
}

.cart-rec-add {
    background: var(--color-ink);
    color: var(--color-bg);
    border: 0;
    padding: 6px 12px;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s var(--ease);
}

.cart-rec-add:hover:not(:disabled) { background: var(--color-dark); }

.cart-rec-add:disabled {
    background: transparent;
    color: var(--color-muted);
    border: 1px solid var(--color-divider);
    cursor: default;
}

/* Footer / checkout */
.cart-foot {
    border-top: 1px solid var(--color-divider);
    padding: 18px 24px 22px;
    flex-shrink: 0;
    background: var(--color-bg);
}

.cart-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13px;
    padding: 5px 0;
    color: var(--color-ink);
}

.cart-line-muted { color: var(--color-ink-2); }

.cart-subtotal { font-weight: 500; }

.cart-checkout {
    width: 100%;
    padding: 18px 24px;
    background: var(--color-ink);
    color: var(--color-bg);
    border: 0;
    margin-top: 12px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.25s var(--ease);
}

.cart-checkout:hover { background: var(--color-dark); }

@media (max-width: 480px) {
    .cart-drawer { width: 100vw; }
    .cart-head, .cart-progress, .cart-items, .cart-recommend, .cart-foot { padding-left: 18px; padding-right: 18px; }
}
