
:root {
    --bg: #000000;
    --bg-deep: #000000;
    --cream: #EDEDED;
    --cream-dim: rgba(242, 241, 236, 0.7);
    --cream-faint: rgba(242, 241, 236, 0.4);
    --line: rgba(242, 241, 236, 0.3);
    --taupe: #ABC8CF;
    --accent: #ABC8CF;
    --radius-pill: 40px;
    --radius-card: 23px;
    --font: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
    --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--cream);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    padding-bottom: 393px; /* space for fixed foot-brand — admin overrides this */
}
/* Admin panel — no foot-brand, no bottom padding */
body.admin-body {
    padding-bottom: 0 !important;
    background: var(--panel-bg, #f4f5f7);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }


@keyframes pt-reveal {
    from { transform: translateY(0); }
    to   { transform: translateY(100%); }
}
#page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    transform: translateY(100%);
    pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
    html.pt-covering #page-transition {
        transform: translateY(0);
        animation: pt-reveal .65s cubic-bezier(.77, 0, .175, 1) forwards;
    }
}


.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }


.nav-wrap {
    position: fixed;
    top: 46px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 24px;
}
.nav {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: background .35s ease;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 22px; }
.nav a.nav-link {
    font-size: 13px;
    letter-spacing: .06em;
    color: var(--cream);
    opacity: .9;
    transition: opacity .2s ease;
}
.nav a.nav-link:hover { opacity: .6; }
.logo-mark { width: 24px; height: 27px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

@media (max-width: 809px) {
    .nav-left .nav-link, .nav-right .nav-link { display: none; }
    .nav-toggle { display: flex; }
}


.mobile-menu {
    position: fixed;
    top: 74px;
    left: 24px; right: 24px;
    z-index: 99;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; background: #e7e4dc; margin-top: 42px; overflow: auto; height: 77vh; -webkit-overflow-scrolling: touch; }
.mobile-menu a { padding: 10px 0; font-size: 18px; letter-spacing: .04em; color: #111111; }
html.menu-open, body.menu-open { overflow: hidden; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.hero {
    position: relative;
    height: 100svh;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 0 24px;
    overflow: hidden;
    border-radius: 50px;
}
.hero-bg {
    position: absolute;
    inset: 35px;
    object-fit: cover;
    width: 96%;
    height: 93vh;
    border-radius: 60px;
    z-index: 0;
}
.hero-overlay {
    display: none;
}
@media (max-width: 809px) {
    .hero-bg, .hero-overlay { inset: 14px; border-radius: 32px; }
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; padding-bottom: 100px; }
.hero-logo { width: 54px; margin: 0 auto 34px; }
.hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -.02em;
    text-transform: uppercase;
    font-size: clamp(28px, 5vw, 52px);
    line-height: 1.15;
    margin: 0 0 18px;
}
.hero p.sub {
    color: var(--cream-dim);
    font-size: clamp(15px, 2vw, 18px);
    max-width: 520px;
    margin: 0 auto 30px;
}
.hero-actions { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.hero-mark { width: 46px; height: auto; margin: 0 auto 30px; display: block; }
.btn-light-outline { border-color: var(--cream); color: var(--cream); background: transparent; }
.btn-light-outline:hover { background: var(--cream); color: var(--bg); }


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}
.btn-light { background: var(--cream); color: var(--bg); }
.btn-light:hover { transform: translateY(-1px); opacity: .92; }
.btn-outline { background: transparent; border-color: var(--cream); color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--bg); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.hero-note {
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cream-dim);
    border: 1px solid var(--line);
    padding: 9px 18px;
    border-radius: var(--radius-pill);
}


.marquee {
    overflow: hidden;
    padding: 40px 0;
    background: var(--bg);
    border-block: 1px solid rgba(242,241,236,.08);
}
.marquee-track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: marquee 26s linear infinite;
}
.marquee-track span {
    font-size: clamp(20px, 3vw, 34px);
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--cream-dim);
    white-space: nowrap;
    text-transform: uppercase;
}
.marquee-track .dot { color: var(--accent); }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


.section { padding: 64px 24px; position: relative; z-index: 1; background: #ececec; }
.wrap { max-width: 1340px; margin: 0 auto; }
.eyebrow {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--cream-dim);
    border: 1px solid var(--line);
    padding: 7px 14px;
    border-radius: 99px;
}
.section h2 {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -.02em;
    font-size: clamp(28px, 4vw, 46px);
    margin: 0 0 14px;
}
.section .lead { color: var(--cream-dim); max-width: 560px; font-size: 17px; }



.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 809px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
    position: relative;
    min-height: 330px;
    border-radius: 20px;
    padding: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(160deg, #431416, #000000);
    border: 1px solid rgba(242,241,236,.14);
    isolation: isolate;
}
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(90% 70% at 85% 15%, rgba(201,138,107,.25), transparent 60%);
    z-index: -1;
}
.product-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -.01em;
    font-size: 26px;
    margin: 0 0 14px;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--cream-dim);
    border: 1px solid var(--line);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
}
.product-price { font-size: 18px; font-weight: 600; margin: 18px 0 14px; }
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.product-actions .btn { flex: 1 1 120px; padding: 12px 16px; }


.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 809px) { .steps { grid-template-columns: 1fr; } }
.step {
    border: 1px solid rgba(242,241,236,.5);
    background: rgba(0,0,0,.6);
    border-radius: 20px;
    padding: 26px 22px;
}
.step .num {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px;
    background: var(--cream);
    color: var(--bg-deep);
    font-weight: 600;
    margin-bottom: 16px;
}
.step h4 {
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.step p { color: var(--taupe); font-size: 14px; margin: 0; }


.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 809px) { .board-grid { grid-template-columns: 1fr; } }
.board-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(160deg, #3a1618, #1f0708);
}
.board-card .body { position: relative; z-index: 2; padding: 24px; }
.board-card::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.9) 100%);
    z-index: 1;
}
.board-card h5 { font-size: 20px; margin: 0 0 8px; }
.board-card p { color: #fff; opacity: .85; font-size: 14px; margin: 0; }


.faq { max-width: 900px; margin: 0 auto; }
.faq h2 { text-align: center; margin-bottom: 40px; }
.faq-item {
    border: 1px solid var(--line);
    border-radius: 20px;
    margin-bottom: 14px;
    overflow: hidden;
    background: rgba(242,241,236,.03);
}
.faq-q {
    width: 100%;
    background: none;
    border: 0;
    color: var(--cream);
    text-align: left;
    padding: 20px 26px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font);
}
.faq-q .plus { font-size: 24px; font-weight: 300; opacity: .8; transition: transform .3s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { color: var(--cream-dim); padding: 0 26px 22px; margin: 0; font-size: 15px; }


.footer { background: var(--bg); padding: 70px 24px 40px; border-top: 1px solid rgba(242,241,236,.08); position: relative; z-index: 1; }
.footer-grid {
    max-width: 1440px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}
@media (max-width: 809px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h5 { font-size: 14px; letter-spacing: .04em; margin: 0 0 16px; text-transform: uppercase; }
.footer .col-head { font-size: 22px; text-transform: uppercase; letter-spacing: -.01em; }
.footer a { display: block; color: var(--cream-dim); font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer a:hover { color: var(--cream); }
.footer .legal { max-width: 1440px; margin: 40px auto 0; color: var(--cream-dim); font-size: 12px; }

.end-band {
    margin: 40px auto 0;
    max-width: 1200px;
    text-align: center;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(120deg, #3a1214, #000000);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: clamp(18px, 3vw, 24px);
}


.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--brand-bone, #EDEDED);
}
.auth-shell::before {
    content: "";
    background: #000000;
    background-image: radial-gradient(circle at 30% 20%, rgba(171,200,207,.18), transparent 55%);
    display: block;
}
.auth-brandside {
    position: fixed;
    left: 0; top: 0; bottom: 0; width: 50%;
    background: #000000;
    background-image: radial-gradient(circle at 30% 25%, rgba(171,200,207,.20), transparent 55%);
    color: #EDEDED;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 54px 56px;
    z-index: 1;
}
.auth-brandside .ab-mark svg { width: 46px; height: 52px; color: #EDEDED; }
.auth-brandside .ab-headline { font-family: var(--font-display); font-size: 40px; font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; max-width: 420px; }
.auth-brandside .ab-headline b { color: var(--brand-glacier, #ABC8CF); font-weight: 500; }
.auth-brandside .ab-foot { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .5; }
.auth-formside { display: flex; align-items: center; justify-content: center; padding: 60px 24px; grid-column: 2; }
.auth-card { width: 100%; max-width: 420px; text-align: left; color: #111111; }
.auth-logo { width: 0; height: 0; margin: 0; display: none; }
.auth-card h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 32px;
    margin: 0 0 10px;
    color: #111111;
}
.auth-card .sub { color: rgba(17,17,17,.6); font-size: 15px; margin: 0 0 28px; max-width: 360px; }

.field { position: relative; text-align: left; margin-bottom: 16px; }
.field.inline-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-label {
    position: absolute;
    top: -8px; left: 20px;
    background: var(--brand-bone, #EDEDED);
    padding: 0 6px;
    font-size: 12px;
    letter-spacing: .04em;
    color: rgba(17,17,17,.6);
    z-index: 1;
}
.input, .select {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: var(--radius-pill);
    color: #111111;
    padding: 17px 22px;
    font-size: 15px;
    font-family: var(--font);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    appearance: none;
}
.input::placeholder { color: rgba(17,17,17,.4); }
.input:focus, .select:focus { border-color: #111111; box-shadow: 0 0 0 3px rgba(171,200,207,.35); }
.select { cursor: pointer; }
.select option { background: #FFFFFF; color: #111111; }

.field-icon {
    position: absolute;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    background: none; border: 0;
    color: rgba(17,17,17,.55);
    cursor: pointer;
    padding: 4px;
    display: flex;
}
.select-caret {
    position: absolute;
    right: 22px; top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(17,17,17,.55);
}

.field-error { color: #c0392b; font-size: 12px; margin: 6px 0 0 20px; display: none; }
.field.has-error .input, .field.has-error .select { border-color: #c0392b; }
.field.has-error .field-error { display: block; }

.form-link {
    display: inline-block;
    color: #111111;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .02em;
}
.auth-links { margin-top: 20px; color: rgba(17,17,17,.6); }
.forgot { text-align: left; margin: 4px 0 24px; }

@media (max-width: 860px) {
    .auth-shell { grid-template-columns: 1fr; }
    .auth-shell::before { display: none; }
    .auth-brandside { position: relative; width: 100%; flex-direction: row; align-items: center; justify-content: space-between; padding: 20px 24px; }
    .auth-brandside .ab-headline, .auth-brandside .ab-foot { display: none; }
    .auth-formside { grid-column: 1; }
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin-bottom: 16px;
}
.checkbox-row input {
    appearance: none;
    width: 20px; height: 20px;
    min-width: 20px;
    border: 1px solid var(--line);
    border-radius: 50%;
    margin-top: 2px;
    cursor: pointer;
    position: relative;
}
.checkbox-row input:checked { background: var(--cream); border-color: var(--cream); }
.checkbox-row input:checked::after {
    content: "";
    position: absolute;
    left: 6px; top: 2px;
    width: 5px; height: 10px;
    border: solid var(--bg);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-row label { font-size: 12px; color: var(--cream-dim); line-height: 1.5; cursor: pointer; }

.referral-toggle {
    display: flex; align-items: center; gap: 8px;
    color: var(--cream-dim);
    font-size: 14px;
    cursor: pointer;
    margin: 4px 0 18px;
    user-select: none;
}
.referral-toggle .plus { font-size: 18px; }
.referral-field { display: none; }
.referral-field.open { display: block; }

.divider { height: 1px; background: rgba(242,241,236,.12); margin: 22px 0; }

.form-alert {
    display: none;
    background: rgba(130,24,26,.25);
    border: 1px solid rgba(255,138,138,.4);
    color: #ffd7d7;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    margin-bottom: 18px;
    text-align: left;
}
.form-alert.show { display: block; }


.dash { max-width: 1000px; margin: 0 auto; padding: 120px 24px 80px; }
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.dash-head h1 { font-family: var(--font-display); font-weight: 600; margin: 0; }
.dash-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px;
    background: rgba(242,241,236,.03);
    margin-bottom: 20px;
}
.dash-card h3 { margin: 0 0 14px; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.dash-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.09); font-size: 14px; }
.dash-row span:first-child { color: var(--cream-dim); }

.cart-btn { position: relative; background: none; border: 0; color: var(--cream); cursor: pointer; display: flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: .06em; }
.cart-count { position: absolute; top: -8px; right: -10px; background: var(--accent); color: var(--bg-deep); border-radius: 999px; min-width: 18px; height: 18px; font-size: 11px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw; background: #FFFFFF; color: #111111; z-index: 201; transform: translateX(100%); transition: transform .35s cubic-bezier(.77,0,.175,1); display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(0,0,0,.4); }
.drawer.open { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { margin: 0; font-size: 16px; letter-spacing: .06em; text-transform: uppercase; }
.drawer-close { background: none; border: 0; color: #111111; font-size: 26px; cursor: pointer; line-height: 1; }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.drawer-foot { padding: 24px; border-top: 1px solid var(--line); }
.drawer-foot .row { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 15px; }
.drawer-empty { color: var(--cream-dim); text-align: center; padding: 60px 0; }

.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.09); }
.cart-line img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; background: rgba(0,0,0,.05); }
.cart-line .info { flex: 1; }
.cart-line .info h4 { margin: 0 0 4px; font-size: 14px; }
.cart-line .info .price { color: var(--cream-dim); font-size: 13px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 99px; margin-top: 8px; }
.qty button { background: none; border: 0; color: var(--cream); width: 28px; height: 28px; cursor: pointer; font-size: 15px; }
.qty span { min-width: 24px; text-align: center; font-size: 13px; }
.cart-remove { background: none; border: 0; color: var(--cream-faint); cursor: pointer; font-size: 12px; text-decoration: underline; }

.collection-hero { padding: 140px 24px 40px; text-align: center; }
.collection-hero h1 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: clamp(30px,5vw,48px); margin: 0 0 12px; }
.collection-hero p { color: var(--cream-dim); max-width: 560px; margin: 0 auto; }

.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; padding: 140px 24px 80px; }
@media (max-width: 809px){ .pdp { grid-template-columns: 1fr; gap: 28px; } }
.pdp-gallery { display: flex; flex-direction: column; gap: 12px; }
.pdp-main { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-card); background: linear-gradient(160deg,#431416,#000000); }
.pdp-thumbs { display: flex; gap: 10px; }
.pdp-thumbs img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; cursor: pointer; opacity: .6; transition: opacity .2s; }
.pdp-thumbs img.active, .pdp-thumbs img:hover { opacity: 1; }
.pdp-info h1 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 34px; margin: 0 0 6px; }
.pdp-info .subtitle { color: var(--cream-dim); margin: 0 0 18px; }
.pdp-price { font-size: 24px; font-weight: 600; margin-bottom: 6px; }
.pdp-price .was { color: var(--cream-faint); text-decoration: line-through; font-size: 17px; margin-left: 10px; font-weight: 400; }
.pdp-desc { color: var(--cream-dim); line-height: 1.7; margin: 20px 0; }

.grid-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1440px; margin: 0 auto; padding: 0 24px 80px; }
@media (max-width: 809px){ .grid-products { grid-template-columns: 1fr; } }
.pcard { background: linear-gradient(160deg,#431416,#000000); border: 1px solid rgba(242,241,236,.14); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.pcard .thumb { aspect-ratio: 4/3; background: rgba(242,241,236,.05); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pcard .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pcard .thumb .ph { color: var(--cream-faint); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.pcard .pbody { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard h3 { margin: 0; font-size: 19px; text-transform: uppercase; letter-spacing: -.01em; }
.pcard .sub { color: var(--cream-dim); font-size: 13px; }
.pcard .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; }
.pcard .foot .price { font-weight: 600; }

.checkout-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; padding: 140px 24px 80px; }
@media (max-width: 809px){ .checkout-wrap { grid-template-columns: 1fr; } }
.summary { border: 1px solid var(--line); border-radius: 20px; padding: 24px; height: fit-content; background: rgba(242,241,236,.03); }
.summary .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.summary .row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-weight: 600; font-size: 17px; }

.mega { position: relative; }
.mega-panel { position: absolute; top: 100%; left: 0; background: #ffffff; border: 1px solid rgba(0,0,0,.05); backdrop-filter: blur(12px); border-radius: 16px; padding: 10px; min-width: 268px; display: none; flex-direction: column; gap: 2px; margin-top: 12px; box-shadow: 0 4px 8px 0 rgba(0,0,0,.10), 0 12px 34px -8px rgba(20,30,32,.28); }
.mega:hover .mega-panel { display: flex; }
.mega-panel a { display: flex; align-items: center; padding: 11px 14px; border-radius: 11px; font-size: 14px; color: #1c2a2d; line-height: 1.35; transition: background .16s ease, color .16s ease, padding-left .16s ease; }
.mega-panel a:hover { background: rgba(20,40,44,.06); color: #000; padding-left: 18px; }
.mega-panel .mega-viewall { margin-top: 4px; border-top: 1px solid rgba(0,0,0,.07); border-radius: 0 0 11px 11px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #6a7a7d; font-weight: 600; }
.mega-panel .mega-viewall span { transition: transform .16s ease; margin-left: 6px; }
.mega-panel .mega-viewall:hover span { transform: translateX(3px); }

.admin { display: flex; min-height: 100vh; background: #1a0607; }
.admin-side { width: 240px; background: #200809; border-right: 1px solid var(--line); padding: 24px 16px; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-side .brand { font-family: var(--font-display); font-weight: 700; letter-spacing: .04em; font-size: 18px; padding: 6px 12px 20px; }
.admin-side a { display: block; padding: 11px 14px; border-radius: 12px; color: var(--cream-dim); font-size: 14px; margin-bottom: 2px; }
.admin-side a:hover { background: rgba(242,241,236,.05); color: var(--cream); }
.admin-side a.active { background: var(--cream); color: var(--bg-deep); font-weight: 600; }
.admin-side .group { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-faint); padding: 18px 14px 6px; }
.admin-main { flex: 1; padding: 32px 40px; }
@media (max-width: 809px){ .admin { flex-direction: column; } .admin-side { width: auto; height: auto; position: static; } .admin-main { padding: 24px 18px; } }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-topbar h1 { font-size: 24px; margin: 0; font-weight: 600; }
.admin-card { background: #240a0b; border: 1px solid var(--line); border-radius: 16px; padding: 22px; margin-bottom: 20px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--cream-dim); padding: 10px 12px; border-bottom: 1px solid var(--line); }
.admin-table td { padding: 12px; border-bottom: 1px solid rgba(242,241,236,.07); font-size: 14px; vertical-align: middle; }
.admin-table tr:hover td { background: rgba(242,241,236,.03); }
.admin-table img.tiny { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; }
.badge { display: inline-block; padding: 4px 11px; border-radius: 99px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.badge.pending { background: rgba(201,138,107,.2); color: var(--accent); }
.badge.active, .badge.approved { background: rgba(90,180,120,.2); color: #8fe0ac; }
.badge.draft, .badge.rejected { background: rgba(200,90,90,.2); color: #ff9d9d; }

.a-field { margin-bottom: 18px; }
.a-field label { display: block; font-size: 13px; color: var(--cream-dim); margin-bottom: 7px; letter-spacing: .03em; }
.a-input, .a-textarea, .a-select { width: 100%; background: rgba(242,241,236,.04); border: 1px solid var(--line); border-radius: 12px; color: var(--cream); padding: 12px 15px; font-size: 14px; font-family: var(--font); outline: none; }
.a-input:focus, .a-textarea:focus, .a-select:focus { border-color: var(--cream-dim); }
.a-textarea { min-height: 120px; resize: vertical; }
.a-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 809px){ .a-row { grid-template-columns: 1fr; } }
.btn-sm { padding: 9px 16px; font-size: 12px; border-radius: 99px; }
.btn-danger { background: rgba(200,90,90,.2); color: #ff9d9d; border: 1px solid rgba(200,90,90,.35); }
.btn-danger:hover { background: rgba(200,90,90,.35); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
@media (max-width: 809px){ .stat-grid { grid-template-columns: 1fr 1fr; } }
.stat { background: #240a0b; border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.stat .n { font-size: 30px; font-weight: 700; }
.stat .l { color: var(--cream-dim); font-size: 13px; letter-spacing: .04em; }
.thumb-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.thumb-list .ti { position: relative; }
.thumb-list img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; }
.thumb-list .rm { position: absolute; top: -6px; right: -6px; background: #c0392b; color: #fff; border: 0; border-radius: 99px; width: 20px; height: 20px; cursor: pointer; font-size: 12px; }
.flash { padding: 12px 16px; border-radius: 12px; margin-bottom: 20px; font-size: 14px; }
.flash.ok { background: rgba(90,180,120,.15); border: 1px solid rgba(90,180,120,.4); color: #b7f0c9; }
.flash.err { background: rgba(200,90,90,.15); border: 1px solid rgba(200,90,90,.4); color: #ffb8b8; }
.token-box { background: #150405; border: 1px dashed var(--accent); border-radius: 12px; padding: 14px; font-size: 13px; word-break: break-all; margin-top: 8px; }
.section-item { display: flex; align-items: center; justify-content: space-between; background: #240a0b; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; }
.section-item .stype { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.section-item .stitle { font-size: 15px; margin-top: 2px; }
.inline-actions { display: flex; gap: 8px; align-items: center; }
.mega-panel .group { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-faint); }
.drawer-subcount { color: var(--cream-dim); font-size: 13px; margin-top: 2px; }
.foot-note { color: var(--cream-dim); font-size: 12px; text-align: center; margin-bottom: 12px; }
.gift-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0 8px; }
.gift-divider::before, .gift-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.gift-divider span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-dim); white-space: nowrap; }
.gift-line { background: rgba(242,241,236,.02); border-radius: 14px; padding: 12px; }
.gift-was { display: block; color: var(--cream-faint); text-decoration: line-through; font-size: 13px; }
.gift-free { color: #8fe0ac; font-weight: 700; font-size: 14px; }
.gift-free span { color: var(--cream-dim); font-weight: 400; font-size: 12px; }
.upsell-card { background: rgba(242,241,236,.03); border: 1px solid var(--line); border-radius: 18px; padding: 16px; margin-top: 20px; }
.upsell-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.plus-badge { width: 30px; height: 30px; border-radius: 999px; background: var(--bg-deep); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.upsell-title { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.upsell-sub { color: var(--cream-dim); font-size: 12px; }
.upsell-item { display: flex; gap: 12px; background: rgba(242,241,236,.03); border-radius: 14px; padding: 12px; }
.upsell-item img { width: 66px; height: 66px; object-fit: cover; border-radius: 10px; background: rgba(0,0,0,.05); }
.upsell-info { flex: 1; }
.upsell-info h5 { margin: 0 0 4px; font-size: 15px; }
.upsell-info p { margin: 0 0 8px; color: var(--cream-dim); font-size: 12px; line-height: 1.4; }
.upsell-row { display: flex; align-items: center; justify-content: space-between; }
.upsell-row .price { font-weight: 600; }
.upsell-note { display: flex; gap: 8px; align-items: flex-start; margin-top: 10px; color: var(--cream-dim); font-size: 12px; }
.upsell-note .chk { color: #8fe0ac; }
.pay-methods { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.pay-method { border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; cursor: pointer; display: flex; align-items: center; gap: 12px; transition: border-color .2s; }
.pay-method.active { border-color: var(--cream); background: rgba(242,241,236,.04); }
.pay-method input { accent-color: var(--cream); }
.pay-method .pm-label { font-size: 14px; }
.pay-box { margin-top: 14px; }
#stripe-card { background: rgba(0,0,0,.05); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.pac-container { z-index: 9999 !important; }
.collection-layout-wrap { background: #ededed; position: relative; z-index: 1; }
.collection-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; max-width: 1240px; margin: 0 auto; padding: 140px 24px 80px; align-items: start; }
@media (max-width: 809px){ .collection-layout { grid-template-columns: 1fr; gap: 20px; padding-top: 120px; } }
.collection-sidebar { position: sticky; top: 110px; }
@media (max-width: 809px){ .collection-sidebar { position: static; display: flex; gap: 24px; flex-wrap: wrap; } }
.side-group { margin-bottom: 26px; }
.side-head { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 10px; }
.side-link { display: block; padding: 8px 12px; border-radius: 10px; color: var(--cream-dim); font-size: 14px; transition: background .2s, color .2s; }
.side-link:hover { color: var(--cream); background: rgba(242,241,236,.05); }
.side-link.active { color: var(--cream); background: rgba(242,241,236,.08); font-weight: 600; }
.collection-head-inline { margin-bottom: 26px; }
.collection-head-inline h1 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: clamp(26px,4vw,40px); margin: 0 0 8px; }
.collection-head-inline p { color: var(--cream-dim); margin: 0; }
.grid-products.side-grid { grid-template-columns: repeat(2,1fr); padding: 0; }
@media (max-width: 1100px){ .grid-products.side-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 809px){ .grid-products.side-grid { grid-template-columns: 1fr; } }
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; padding: 130px 24px 80px; align-items: start; }
@media (max-width: 809px){ .account-layout { grid-template-columns: 1fr; } }
.account-nav { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 4px; }
@media (max-width: 809px){ .account-nav { position: static; flex-direction: row; flex-wrap: wrap; } }
.account-nav a { padding: 10px 14px; border-radius: 10px; color: var(--cream-dim); font-size: 14px; cursor: pointer; }
.account-nav a:hover { background: rgba(242,241,236,.05); color: var(--cream); }
.account-nav a.active { background: var(--cream); color: var(--bg-deep); font-weight: 600; }
.acct-panel { display: none; }
.acct-panel.active { display: block; }
.order-card { border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; margin-bottom: 14px; }
.order-card .oc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.order-card .oc-head h4 { margin: 0; font-size: 15px; }
.order-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--cream-dim); padding: 4px 0; }
.variant-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.variant-pill { background: rgba(242,241,236,.04); border: 1px solid var(--line); color: var(--cream); border-radius: var(--radius-pill); padding: 10px 20px; font-size: 13px; cursor: pointer; font-family: var(--font); transition: border-color .2s, background .2s; }
.variant-pill:hover { border-color: var(--cream-dim); }
.variant-pill.active { background: var(--cream); color: var(--bg); border-color: var(--cream); font-weight: 600; }
.mega-caret { font-size: 9px; opacity: .7; }

.intro-band { position: relative; border: 1px solid var(--line); border-radius: 90px; padding: 0; min-height: 210px; overflow: hidden; background-color: #3a1414; background-size: cover; background-position: center; display: flex; align-items: center; }
.intro-band-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.72)); z-index: 0; }
.intro-band-inner { position: relative; z-index: 1; display: flex; align-items: center; width: 100%; padding: 40px 60px; }
.intro-pill { display: inline-flex; align-items: center; border: 1px solid var(--line); color: var(--cream); white-space: nowrap; background: transparent;color: white !important; }
.intro-band .intro-pill { padding: 24px 48px; font-size: 22px; letter-spacing: .01em; text-transform: uppercase; border-radius: var(--radius-pill); }
.intro-line { flex: 1; height: 1.5px; background:  rgb(255 255 255); margin: 0; min-width: 24px; }
.intro-text-box { border: 1px solid var(--line); border-radius: 50px; padding: 22px 34px; max-width: 380px; background: rgba(0,0,0,.25); }
.intro-text-box p { color: var(--cream-dim); font-size: 15px; line-height: 1.6; margin: 0; }
@media (max-width: 809px) { .intro-band { border-radius: 40px; } .intro-band-inner { flex-direction: column; text-align: center; gap: 20px; padding: 32px 22px; } .intro-line { display: none; } .intro-band .intro-pill { font-size: 18px; padding: 18px 32px; } .intro-text-box { max-width: none; } }

.press-strip { overflow: hidden; padding: 34px 0; border: 0; margin:  0; }
.press-marquee { overflow: hidden; width: 100%; }
.press-track { display: inline-flex; align-items: center; gap: 80px; white-space: nowrap; padding-left: 80px; animation: press-scroll 30s linear infinite; }
.press-name { color: rgba(242,241,236,.5); font-size: 30px; font-weight: 600; letter-spacing: .02em; white-space: nowrap; }
.press-logo { display: inline-flex; align-items: center; }
.press-logo img { height: 72px; width: auto; object-fit: contain; opacity: 1; filter: none; }
@keyframes press-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 809px) { .press-name { font-size: 20px; } .press-logo img { height: 48px; } .press-track { gap: 44px; padding-left: 44px; } }

.glance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.glance-grid.slider-track { display: flex; grid-template-columns: unset; margin-top: 0; }
@media (max-width: 809px) { .glance-grid:not(.slider-track) { grid-template-columns: 1fr; } }
.glance-card { position: relative; min-height: 300px; border-radius: var(--radius-card); overflow: hidden; background-size: cover; background-position: center; background-color: #3a1414; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; }
.glance-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.78)); z-index: 0; }
.glance-top, .glance-bottom { position: relative; z-index: 1; }
.glance-top h3 { margin: 0 0 12px; font-size: 24px; font-weight: 600; letter-spacing: -.01em;color: white; }
.glance-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.glance-tags span { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-dim); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px 12px; }
.glance-price { font-size: 15px; margin-bottom: 14px; color: var(--cream); }
.glance-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.steps-panel { position: relative; border-radius: var(--radius-card); overflow: hidden; background-size: cover; background-position: center; background-color: #3a1414; padding: 118px 40px; }
.steps-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.steps-overlay { position: absolute; inset: 0; background: transparent; z-index: 0; }
.steps-content { position: relative; z-index: 1; }
.steps-content h2 { text-align: center; margin: 0 0 10px; color: #e4e4df; }
.steps-panel .steps { display: flex; flex-direction: column; gap: 14px; max-width: max-content; margin: 30px auto 0; }
.steps-panel .step { display: flex; align-items: center; gap: 18px; border: 2px solid rgb(213 211 204); border-radius: var(--radius-pill); padding: 18px 26px; background: transparent; align-content: center; height: 96px; }
.steps-panel .step .num { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 13px; margin-bottom: 0; }
.steps-panel .step h4 { margin: 0 0 4px; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: #e4e4df; }
.steps-panel .step p { margin: 0; font-size: 13px; color: var(--cream-dim); max-width: 350px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
@media (max-width: 809px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { display: flex; flex-direction: column; cursor: pointer; }
.team-photo { position: relative; aspect-ratio: 3/3.4; border-radius: var(--radius-card); overflow: hidden; background-size: cover; background-position: center; background-color: #3a1414; }
.team-photo::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(0,0,0,.9)); }
.team-caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; }
.team-cap-name { display: block; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; color: var(--cream); }
.team-bio { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s ease, opacity .4s ease, margin .4s ease; margin-top: 0; }
.team-card:hover .team-bio, .team-card.open .team-bio { max-height: 220px; opacity: 1; margin-top: 10px; }
.team-bio p { margin: 0; font-size: 12px; line-height: 1.55; color: var(--cream-dim); }

.foot-wordmark { text-align: center; font-weight: 700; letter-spacing: -.01em; font-size: clamp(48px, 13vw, 150px); line-height: 1; margin: 40px 0 6px; color: var(--cream); }
.foot-tagline { text-align: center; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 20px; }
.foot-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; align-items: start; }
.foot-lead-block { padding-right: 20px; }
.foot-lead { font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; letter-spacing: -.01em; line-height: 1.15; max-width: 340px; text-transform: uppercase; color: var(--cream); }
.foot-sub { color: var(--cream-dim); font-size: 14px; margin-top: 16px; }
.foot-menus { display: contents; }
.foot-col h5 { font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--cream); margin: 0 0 16px; font-weight: 600; }
.foot-col a { display: block; color: var(--cream-dim); font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: var(--cream); }
.footer .legal { max-width: 1200px; margin: 40px auto 0; color: var(--cream-dim); font-size: 12px; line-height: 1.6; text-align: left; }
@media (max-width: 809px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 26px; } .foot-lead-block { grid-column: 1 / -1; } }

.filter-section { padding-top: 30px; }
.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.filter-buttons { display: flex; gap: 10px; flex-wrap: wrap; background: rgba(0,0,0,.5); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px; }
.filter-pill { padding: 12px 22px; border-radius: var(--radius-pill); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--cream); white-space: nowrap; transition: background .2s, color .2s; }
.filter-pill:hover { background: var(--cream); color: var(--bg); }
.filter-search { flex: 1; min-width: 220px; max-width: 360px; }
.filter-search input { width: 100%; background: rgba(0,0,0,.5); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 14px 22px; color: var(--cream); font-family: var(--font); font-size: 14px; }
.filter-search input::placeholder { color: var(--cream-dim); }
@media (max-width: 809px) { .filter-search { max-width: none; } }

.featured-panel, .slider-panel { position: relative; border-radius: var(--radius-card); overflow: hidden; background-size: cover; background-position: center; background-color: #000000; padding: 44px; }
.featured-panel-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.88)); z-index: 0; }
.featured-inner, .slider-inner { position: relative; z-index: 1; }
.featured-inner h2 { margin: 0 0 6px; }
@media (max-width: 809px) { .featured-panel, .slider-panel { padding: 26px 18px; } }

.slider-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.slider-arrows { display: flex; gap: 10px; }
.slider-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: rgba(242,241,236,.04); color: var(--cream); font-size: 20px; cursor: pointer; line-height: 1; transition: background .2s, color .2s; }
.slider-arrow:hover { background: var(--cream); color: var(--bg); }
.slider-track { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 4px; }
.slider-track::-webkit-scrollbar { display: none; }
.slide-card { position: relative; flex: 0 0 363px; height: 550px; border-radius: var(--radius-card); overflow: hidden; background-size: cover; background-position: center; background-color: #3a1414; display: flex; }
.slide-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15) 35%, rgba(0,0,0,.85)); z-index: 0; }
.slide-body { position: relative; z-index: 1; padding: 24px; width: 100%; }
.slide-body h5 { margin: 0 0 14px; font-size: 22px; font-weight: 600; letter-spacing: -.01em; text-transform: uppercase; }
.slide-btn { display: inline-flex; padding: 10px 20px; border-radius: var(--radius-pill); background: var(--cream); color: var(--bg); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 809px) { .slide-card { flex-basis: 280px; height: 440px; } }

select option, .a-select option { color: #000000; background: #EDEDED; }
.a-input, .a-textarea, .a-select { background: rgba(242,241,236,.07); color: var(--cream); }
.a-input::placeholder, .a-textarea::placeholder { color: rgba(242,241,236,.4); }
.a-select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f2f1ec' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.a-field label { color: var(--cream-dim); }

.fblock { border-radius: var(--radius-card); overflow: hidden; }
.fblock-split { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 380px; background: rgba(242,241,236,.03); border: 1px solid var(--line); }
.fblock-split.img-left { grid-template-columns: 1fr 1.1fr; }
.fblock-split.img-left .fblock-media { order: -1; }
.fblock-media { background-size: cover; background-position: center; background-color: #3a1414; min-height: 260px; }
.fblock-content { padding: 48px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 14px; }
.fblock-content h2 { margin: 0; }
.fblock-content p { color: var(--cream-dim); font-size: 15px; line-height: 1.6; margin: 0; max-width: 420px; }
.fblock-eyebrow { display: inline-flex; padding: 7px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-dim); }
.fblock-price { font-size: 18px; color: var(--cream); }
.fblock-bg { position: relative; min-height: 420px; background-size: cover; background-position: center; background-color: #3a1414; display: flex; align-items: center; }
.fblock-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.35)); z-index: 0; }
.fblock-bg .fblock-content { position: relative; z-index: 1; max-width: 520px; }
@media (max-width: 809px) { .fblock-split, .fblock-split.img-left { grid-template-columns: 1fr; } .fblock-split.img-left .fblock-media { order: 0; } .fblock-content { padding: 30px 22px; } .fblock-media { min-height: 220px; } }

.glance-sub { color: var(--cream-dim); font-size: 13px; margin-bottom: 12px; }
.glance-product { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); height: 74%; width: auto; max-width: 42%; object-fit: contain; z-index: 1; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); }
.glance-top, .glance-bottom { position: relative; z-index: 2; }
@media (max-width: 809px) { .glance-product { height: 60%; right: 12px; } }

.modal-overlay { position: fixed; inset: 0; background: rgba(10,3,3,.7); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.modal-overlay.show { display: flex; }
.modal-box { background: #000000; border: 1px solid var(--line); border-radius: 20px; padding: 30px; max-width: 420px; width: 100%; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.modal-box h3 { margin: 0 0 6px; font-size: 20px; }

.hero-video { position: relative; width: 100%; height: 100vh; min-height: 560px; overflow: hidden; margin: 0; }
.hero-video-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.2) 50%, rgba(0,0,0,.36)); z-index: 1; }
.hero-video-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
.hero-video-mark { display: block; margin-bottom: 30px; }
.hero-video-mark svg { width: 48px; height: auto; }
.hero-video-inner h1 { color: #fff; font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 6vw, 64px); line-height: 1.05; letter-spacing: -.02em; margin: 0; }
.hero-video-inner p { color: rgba(255,255,255,.85); font-size: clamp(14px, 1.6vw, 16px); line-height: 1.6; margin-top: 20px; max-width: 460px; }
@media (max-width: 809px) { .hero-video { height: 88vh; min-height: 480px; } }

.cta-band { position: relative; overflow: hidden; background: #2B0A0B; background-size: cover; background-position: center; border-radius: 40px; display: flex; align-items: center; gap: 30px; padding: 34px 60px; }
.cta-band-shade { position: absolute; inset: 0; background: rgba(0,0,0,.75); z-index: 0; }
.cta-band-title, .cta-band-text, .cta-band-btn { position: relative; z-index: 1; }
.cta-band-title { color: #F2F1EC; font-size: clamp(20px, 2.4vw, 30px); letter-spacing: -.01em; margin: 0; flex-shrink: 0; max-width: 280px; }
.cta-band-text { color: rgba(242,241,236,.7); font-size: 14px; line-height: 1.6; flex: 1; margin: 0; }
.cta-band-btn { flex-shrink: 0; display: inline-flex; align-items: center; background: var(--cream); color: var(--bg); border-radius: var(--radius-pill); padding: 14px 28px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 809px) { .cta-band { flex-direction: column; align-items: flex-start; border-radius: 28px; padding: 26px 24px; } .cta-band-title { max-width: none; } }

.filter-pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px 8px 8px; }
.filter-pill-icon { display: block; width: 36px; height: 36px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; }
.filter-pill > span:last-child { padding-left: 2px; }

.pcard-row { display: flex; gap: 24px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; padding-bottom: 4px; }
.pcard-row::-webkit-scrollbar { display: none; }
.pcard { position: relative; flex: 0 0 340px; height: 560px; scroll-snap-align: start; display: flex; flex-direction: column; gap: 10px; border-radius: 30px; padding: 25px; background: rgba(0,0,0,.42); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.1); }
.pcard-link { position: absolute; inset: 0; z-index: 1; border-radius: 30px; }
.pcard-head { position: relative; z-index: 2; }
.pcard-eyebrow { color: rgba(242,241,236,.55); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 4px; }
.pcard-title { color: #F2F1EC; font-size: 26px; font-weight: 500; line-height: 1.1; margin: 0 0 12px; }
.pcard-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.pcard-tag { border: 1px solid var(--cream); border-radius: var(--radius-pill); padding: 6px 12px; font-size: 10px; letter-spacing: .02em; text-transform: uppercase; color: var(--cream); white-space: nowrap; }
.pcard-tag-dash { width: 8px; height: 1px; background: rgba(224,222,214,.6); }
.pcard-media { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 0; padding: 10px 0; }
.pcard-media img { height: 100%; width: auto; max-height: 360px; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0,0,0,.45)); }
.pcard-foot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.pcard-price { color: #F2F1EC; font-size: 22px; }
.pcard-btn { background: var(--cream); color: var(--bg); border-radius: var(--radius-pill); padding: 13px 22px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 809px) { .pcard { flex-basis: 86%; height: 472px; } }

.slide-card { flex-direction: column; align-items: stretch; justify-content: space-between; padding: 0; }
.slide-top { position: relative; z-index: 1; padding: 25px; }
.slide-top h5 { margin: 0; font-size: 24px; font-weight: 500; letter-spacing: -.01em; text-transform: uppercase; line-height: 1.05; }
.slide-top p { margin: 8px 0 0; font-size: 13px; line-height: 1.4; color: rgba(242,241,236,.8); max-width: 240px; }
.slide-card .slide-btn { position: relative; z-index: 1; align-self: flex-end; margin: 0 25px 25px; }
.slide-shade { background: linear-gradient(180deg, rgba(0,0,0,.35), transparent 40%); }

.collections-page { padding-top: 190px; }
.collections-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.collections-head h1 { margin: 0 0 14px; font-size: clamp(34px, 5vw, 52px); letter-spacing: -.02em; }
.collections-head p { color: var(--cream-dim); font-size: 15px; line-height: 1.6; }
.collections-grid-page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 809px) { .collections-grid-page { grid-template-columns: 1fr; } }
.coll-card { display: flex; flex-direction: column; background: rgba(242,241,236,.03); border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; transition: transform .25s ease; }
.coll-card:hover { transform: translateY(-4px); }
.coll-card-media { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: #3a1414; }
.coll-card-body { padding: 20px 22px 24px; }
.coll-card-body h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.01em; text-transform: uppercase; }
.coll-card-link { color: var(--cream-dim); font-size: 13px; letter-spacing: .02em; }
.coll-card:hover .coll-card-link { color: var(--cream); }

.collection-desc { margin-bottom: 26px; }
.collection-desc p { color: var(--cream-dim); font-size: 15px; line-height: 1.6; max-width: 620px; }
.pcard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.pcard-grid .pcard { height: 520px; }
@media (max-width: 809px) { .pcard-grid { grid-template-columns: 1fr; } .pcard-grid .pcard { height: 480px; } }

.reviews-section { padding-top: 40px; }
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.reviews-head h2 { margin: 6px 0 4px; }
.reviews-count { color: var(--cream-dim); font-size: 13px; margin: 0; }
.review-flash { background: rgba(90,180,120,.14); border: 1px solid rgba(90,180,120,.4); color: #b7f0c9; padding: 12px 16px; border-radius: 12px; margin-bottom: 18px; font-size: 14px; }
.review-form { background: rgba(242,241,236,.03); border: 1px solid var(--line); border-radius: 18px; padding: 22px; margin-bottom: 26px; }
.reviews-list { display: flex; flex-direction: column; max-width: 1200px; margin: 0 auto; }
.review-item { border-top: 1px solid var(--line); padding: 22px 0; }
.review-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(242,241,236,.1); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 12px; letter-spacing: .04em; color: var(--cream); flex-shrink: 0; }
.review-author { font-size: 13px; color: var(--cream); }
.review-verified { color: var(--cream-faint); font-size: 11px; margin-left: 6px; }
.review-stars { color: #e0c07a; font-size: 13px; letter-spacing: 2px; }
.review-title { margin: 4px 0 8px; font-size: 16px; }
.review-tag { display: inline-block; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 4px 12px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 10px; }
.review-body { color: var(--cream-dim); font-size: 14px; line-height: 1.6; margin: 0; max-width: 760px; }
.badge.pending { background: rgba(220,180,90,.16); color: #e7cf9a; }

.sec-wrap { width: 100%; position: relative; z-index: 1; }
.sec-dark-text { --cream: #000000; --cream-dim: rgba(0,0,0,.72); --cream-faint: rgba(0,0,0,.5); --line: rgba(0,0,0,.16); }
.sec-dark-text h1, .sec-dark-text h2, .sec-dark-text h3, .sec-dark-text h4, .sec-dark-text h5, .sec-dark-text p, .sec-dark-text span, .sec-dark-text a, .sec-dark-text .lead, .sec-dark-text .eyebrow { color: var(--cream); }
/* Per-section colors are injected as scoped <style> tags by sections.php */

/* ===== user reference overrides ===== */
.section { padding: 15px 24px; background: #ececec; }
.cta-band { border-radius: 112px; padding: 24px 64px; justify-content: space-between; }
.cta-band-title { color: #F2F1EC; flex-shrink: 0; max-width: 280px; }
.cta-band-text { color: rgba(242,241,236,.7); font-size: 14px; line-height: 1.6; flex: 1; margin: 0; max-width: 460px; }
@media (max-width: 809px){ .cta-band { border-radius: 28px; padding: 24px; } .cta-band-title { max-width: none; } }

.filter-bar { background: #dfded5; border: 1px solid #fff; border-radius: 100px; box-shadow: 0 4px 8px rgba(0,0,0,.2), 0 6px 20px rgba(0,0,0,.19); padding: 8px; }
.filter-buttons { background: transparent; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px; }
.filter-pill { padding: 6px 22px 6px 12px; border: 1px solid #000; color: #000; }
.filter-pill:hover { background: #000000; color: #fff; border-color: #000000; }
.filter-pill:hover .filter-pill-icon { filter: none; }

.filter-search { display: flex; align-items: center; justify-content: flex-end; gap: 0; background: transparent; border: 0; max-width: none; flex: 0 0 auto; box-shadow: none; padding: 0; }
.filter-search .fs-icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #efeee7; display: flex; align-items: center; justify-content: center; color: #000000; cursor: pointer; flex-shrink: 0; }
.filter-search input { width: 0; opacity: 0; padding: 0; border: 0 solid var(--line); transition: width .3s ease, opacity .25s ease, padding .3s ease, margin .3s ease; background: #efeee7; color: #000000; border-radius: 100px; height: 44px; font-family: var(--font); }
.filter-search:hover input, .filter-search:focus-within input { width: 260px; opacity: 1; padding: 0 18px; border-width: 1px; margin-right: 8px; }
.filter-search input::placeholder { color: rgba(0,0,0,.5); }
@media (max-width: 809px){ .filter-search:hover input, .filter-search:focus-within input { width: 150px; } }
@media (max-width: 809px){
  .filter-bar { flex-wrap: nowrap; flex-direction: column; align-items: stretch; gap: 12px; border-radius: 20px; padding: 10px; }
  .filter-buttons { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; border-radius: 20px; padding: 6px; }
  .filter-buttons::-webkit-scrollbar { display: none; }
  .filter-pill { flex: 0 0 auto; white-space: nowrap; }
  .filter-search { width: 100%; max-width: none; justify-content: flex-start; }
  .filter-search input { width: 100%; opacity: 1; padding: 0 18px; border-width: 1px; margin-right: 8px; }
  .filter-search .fs-icon { order: -1; }
}

.featured-panel, .slider-panel { background-position: center 75%; }

.pcard-row.is-grid { display: grid; grid-template-columns: repeat(var(--pcols, 3), 1fr); overflow: visible; }
.pcard-row.is-grid .pcard { flex-basis: auto; }
@media (max-width: 809px){ .pcard-row.is-grid { grid-template-columns: 1fr; } }

.tiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 809px){ .tiles-grid { grid-template-columns: 1fr; } }
.tile-card { display: flex; flex-direction: column; min-height: 360px; border-radius: 26px; padding: 28px; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55)); border: 1px solid rgba(255,255,255,.08); }
.tile-icon { display: flex; align-items: center; height: 48px; margin-bottom: 16px; }
.tile-icon img { height: 40px; width: auto; object-fit: contain; }
.tile-card h3 { margin: 0 0 12px; font-size: 24px; font-weight: 500; letter-spacing: -.01em; text-transform: uppercase; line-height: 1.05; color: var(--cream); }
.tile-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--cream-dim); }
.tile-btn { align-self: flex-start; margin-top: auto; }
.tile-card .tile-btn { margin-top: auto; }

.slider-head-actions { display: flex; align-items: center; gap: 16px; }
.slider-viewall { display: inline-flex; align-items: center; gap: 4px; padding: 10px 20px; border-radius: var(--radius-pill); border: 1px solid var(--line); color: var(--cream); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.slider-viewall:hover { background: var(--cream); color: var(--bg); }
.slider-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: rgba(242,241,236,.04); color: var(--cream); font-size: 20px; cursor: pointer; line-height: 1; transition: background .2s, color .2s; }

.section h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: -.02em; font-size: 28px; line-height: normal; margin: 0; }
.pcard-grid-fill { display: grid; grid-template-columns: repeat(var(--pcols, 3), 1fr); gap: 24px; }
.pcard-grid-fill .pcard { flex: none; width: auto; height: 560px; }
@media (max-width: 809px){ .pcard-grid-fill { grid-template-columns: 1fr; } .pcard-grid-fill .pcard { height: 480px; } }

/* user tile overrides */
.tile-card { background: #00000040; border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.tiles-panel .featured-panel-shade, .featured-panel .featured-panel-shade { background: transparent; }

/* NON-INJECTABLES */
.ni-badge { display: inline-flex; padding: 6px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 14px; }
.ni-heading { margin: 0 0 22px; }
.ni-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 809px){ .ni-grid { grid-template-columns: 1fr; } }
.ni-left { position: relative; overflow: hidden; border-radius: var(--radius-card); background: #efe9df; min-height: 420px; display: flex; }
.ni-left-body { position: relative; z-index: 2; padding: 34px; max-width: 60%; }
.ni-left-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.ni-left-top h3 { margin: 0; font-size: 26px; text-transform: uppercase; letter-spacing: -.01em; color: #000000; }
.ni-left p { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(0,0,0,.7); }
.ni-price { position: absolute; left: 34px; bottom: 30px; font-size: 18px; color: #000000; }
.ni-left-img { position: absolute; right: -20px; bottom: 0; height: 88%; width: auto; object-fit: contain; z-index: 1; }
.ni-btn-dark { flex-shrink: 0; display: inline-flex; background: #000000; color: var(--cream); border-radius: var(--radius-pill); padding: 12px 22px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.ni-right { position: relative; overflow: hidden; border-radius: var(--radius-card); background-size: cover; background-position: center; background-color: #3a3a3a; min-height: 420px; padding: 34px; display: flex; flex-direction: column; }
.ni-right-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,22,.55), rgba(20,20,22,.35)); z-index: 0; }
.ni-right-top { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.ni-right-top h3 { margin: 0 0 8px; font-size: 26px; text-transform: uppercase; color: #fff; }
.ni-right-top p { margin: 0; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.8); max-width: 320px; }
.ni-btn-light { flex-shrink: 0; display: inline-flex; align-items: center; gap: 4px; background: var(--cream); color: var(--bg); border-radius: var(--radius-pill); padding: 10px 18px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.ni-tiles { position: relative; z-index: 1; margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ni-tile { position: relative; border-radius: 16px; background: rgba(255,255,255,.14); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.18); padding: 18px 12px 14px; display: flex; flex-direction: column; align-items: center; gap: 10px; min-height: 150px; justify-content: flex-end; }
.ni-tile img { height: 82px; width: auto; object-fit: contain; }
.ni-tile-name { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #fff; }
.ni-tile-arrow { position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.25); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; }
@media (max-width: 809px){ .ni-left-body { max-width: 100%; } .ni-left-img { display: none; } }

/* NON-INJECTABLES width + image fix */
.section > .wrap { width: 100%; }
.ni-grid { width: 100%; }
.ni-left-body { max-width: 52%; }
.ni-left-img { right: 0; bottom: 0; height: auto; max-height: 84%; max-width: 52%; width: auto; object-fit: contain; object-position: bottom right; }
.ni-left { align-items: stretch; }
@media (max-width: 809px){ .ni-left-body { max-width: 100%; } }

/* user ni + nav overrides */
.ni-left-img { right: 0; bottom: 0; top: 0; height: auto; max-height: 100%; max-width: 100%; width: 100%; object-fit: cover; object-position: center; }
.ni-left-body { max-width: 100%; width: 100%; }
.ni-left p { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(0,0,0,.7); max-width: 357px; }
.nav { max-width: 1440px; }

/* travel-kit style: feature_block bg with foreground product */
.fblock-bg { min-height: 480px; }
.fblock-bg .fblock-shade { background: linear-gradient(90deg, rgba(240,236,228,.65) 0%, rgba(240,236,228,.15) 42%, rgba(0,0,0,.05) 100%); }
.fblock-product { position: absolute; right: 3%; top: 0; bottom: 0; margin: auto 0; max-height: 74%; max-width: 46%; width: auto; height: auto; object-fit: contain; z-index: 1; filter: drop-shadow(0 24px 48px rgba(0,0,0,.35)); }
.fblock-bg .fblock-content { max-width: 46%; }
.fblock-bg .fblock-content h2 { color: #000000; }
.fblock-bg .fblock-content p { color: rgba(0,0,0,.72); }
.fblock-bg .fblock-eyebrow { border-color: rgba(0,0,0,.3); color: rgba(0,0,0,.7); }
@media (max-width: 809px){ .fblock-product { position: static; margin: 20px auto 0; max-width: 80%; max-height: none; display: block; } .fblock-bg .fblock-content { max-width: 100%; } }

section.section.collections-page { margin-top: 129px; }
.collection-layout { padding: 160px 24px 80px; }

/* ===== dark panels keep light text (works on light global theme) ===== */
.nav, .drawer, .mega-panel, .featured-panel, .slider-panel, .cta-band, .pcard,
.tile-card, .ni-right, .steps-panel, .hero-video, .modal-box {
  --cream: #EDEDED;
  --cream-dim: rgba(242,241,236,.72);
  --cream-faint: rgba(242,241,236,.5);
  --line: rgba(242,241,236,.16);
  --bg: #000000;
}
.ni-btn-dark { color: #EDEDED; }

/* footer split: cream top + dark wordmark band */
.foot-brand {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 0;
  padding: 60px 24px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 393px;
  box-sizing: border-box;
  /* Completely hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}
.foot-brand.fb-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.foot-brand .foot-wordmark { color: #EDEDED; margin: 0 0 6px; }
.foot-brand .foot-tagline  { color: rgba(242,241,236,.7); margin: 0; }
.footer .foot-wordmark { display: none; }
.footer .foot-tagline  { display: none; }

/* user overrides + footer text color */
h2.ni-heading { color: #290a0a; }
.ni-badge { border: 1px solid rgb(41 10 10); color: rgb(41 10 10); }
.foot-top { max-width: 1440px; }
.footer { color: var(--footer-text, #290a0a); }
.footer .foot-lead, .footer .foot-col h5 { color: var(--footer-text, #290a0a); }
.footer .foot-sub, .footer .foot-col a, .footer .legal { color: color-mix(in srgb, var(--footer-text, #290a0a) 72%, transparent); }

/* ============ ADMIN: professional light theme (Shopify-like) ============ */
.admin {
  --cream: #1f2937;
  --cream-dim: #6b7280;
  --cream-faint: #9ca3af;
  --line: #e5e7eb;
  --bg: #000000;
  background: #f6f6f7;
  color: #1f2937;
}
.admin-side { background: #ffffff; border-right: 1px solid #e5e7eb; }
.admin-side .brand { color: #111827; }
.admin-side .group { color: #9ca3af; }
.admin-side a { color: #4b5563; border-radius: 8px; }
.admin-side a:hover { background: #f3f4f6; color: #111827; }
.admin-side a.active { background: #f4efe9; color: #000000; font-weight: 600; }
.admin-main { background: #f6f6f7; }
.admin-topbar h1, .admin h1, .admin h2, .admin h3, .admin h4 { color: #111827; }
.admin-card { background: #ffffff; border: 1px solid #e5e7eb; box-shadow: 0 1px 2px rgba(16,24,40,.05); color: #1f2937; border-radius: 12px; }
.admin .sub { color: #6b7280; }
.a-input, .a-select, .a-textarea { background: #ffffff; border: 1px solid #d1d5db; color: #1f2937; border-radius: 8px; }
.a-input::placeholder, .a-textarea::placeholder { color: #9ca3af; }
.a-field label { color: #6b7280; }
.admin .a-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); }
.admin .a-select option { background: #ffffff; color: #1f2937; }
.admin-table { color: #1f2937; }
.admin-table th { color: #6b7280; border-bottom: 1px solid #e5e7eb; }
.admin-table td { border-bottom: 1px solid #f3f4f6; }
.admin-table tr:hover td { background: #fafafa; }
.admin-table td .form-link { color: #2563eb; }
@media (max-width: 760px){
  .admin-card { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { min-width: 560px; }
  .admin-topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
}
.admin img.tiny { border-radius: 6px; }
.admin .badge { border-radius: 999px; padding: 3px 12px; font-size: 11px; font-weight: 600; text-transform: uppercase; }
.admin .badge.active { background: #dcfce7; color: #166534; }
.admin .badge.pending { background: #fef9c3; color: #854d0e; }
.admin .btn-light { background: #000000; color: #ffffff; }
.admin .btn-light:hover { background: #431414; }
.admin .btn-outline { border: 1px solid #d1d5db; color: #1f2937; background: #fff; }
.admin .btn-outline:hover { background: #f3f4f6; }
.admin .btn-danger { background: #fff; color: #b91c1c; border: 1px solid #fecaca; }
.admin .btn-danger:hover { background: #fee2e2; }
.admin .flash { border-radius: 10px; }
.admin .flash.ok { background: #dcfce7; border: 1px solid #86efac; color: #166534; }
.admin .flash.err { background: #fee2e2; border: 1px solid #fecaca; color: #b91c1c; }
.admin .modal-box { background: #ffffff; color: #1f2937; border: 1px solid #e5e7eb; }
.admin .modal-box h3 { color: #111827; }
.admin .thumb-list img { border: 1px solid #e5e7eb; border-radius: 8px; }
.admin hr { border-color: #e5e7eb !important; }

/* admin select fix (hatched -> clean) */
.admin .a-select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 12px 8px !important;
  padding-right: 38px;
  color: #1f2937;
}
.admin .a-select option { background: #ffffff; color: #1f2937; }

/* user fblock overrides */
.fblock-product { position: absolute; right: 3%; top: 0; bottom: 0; margin: auto 0; max-height: 115%; max-width: 67%; width: auto; height: auto; object-fit: contain; z-index: 1; filter: none; }
.fblock-bg { position: relative; background-size: cover; background-position: bottom; background-color: #3a1414; display: flex; align-items: center; min-height: 420px; }
@media (max-width: 809px) {
  .fblock-bg { min-height: 0; flex-direction: column; }
  .fblock-bg .fblock-content { max-width: 100%; padding: 26px 20px; }
  .fblock-product { position: static; margin: 0 auto 20px; max-width: 86%; max-height: none; }
  .fblock-split, .fblock-split.img-left { grid-template-columns: 1fr; }
}

/* product related "synergistic peptides" slider */
.related-section .slider-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 6px 0 22px; }
.related-section .slider-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px; }
.related-section .slider-track::-webkit-scrollbar { display: none; }
.related-section .slider-track .pcard { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; height: 520px; }
@media (max-width: 809px){ .related-section .slider-track .pcard { flex-basis: 86%; height: 470px; } }

/* product injection guide (STEP-BY-STEP) */
.guide-section { --cream:#EDEDED; --cream-dim:rgba(242,241,236,.72); --cream-faint:rgba(242,241,236,.5); --line:rgba(242,241,236,.16); --bg:#000000; padding-top: 56px; padding-bottom: 56px; }
.guide-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px; margin-top: 8px; }
.guide-track::-webkit-scrollbar { display: none; }
.guide-card { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; border-radius: 22px; overflow: hidden; background: #FFFFFF; display: flex; flex-direction: column; }
.guide-card-img { height: 300px; background-size: cover; background-position: center; background-color: #000000; }
.guide-card-body { padding: 22px 24px 26px; }
.guide-card-body .guide-step { color: rgba(0,0,0,.55); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.guide-card-body h4 { margin: 6px 0 4px; font-size: 22px; letter-spacing: -.01em; text-transform: uppercase; color: #000000; }
.guide-card-body p { margin: 0; font-size: 12px; color: rgba(0,0,0,.6); }
@media (max-width: 809px){ .guide-card { flex-basis: 82%; } .guide-card-img { height: 230px; } }

/* product video guide */
.video-section { --cream:#EDEDED; --cream-dim:rgba(242,241,236,.72); --cream-faint:rgba(242,241,236,.5); --line:rgba(242,241,236,.16); --bg:#000000; padding-top: 56px; padding-bottom: 56px; }
.video-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px; margin-top: 12px; }
.video-track::-webkit-scrollbar { display: none; }
.video-card { flex: 0 0 clamp(220px, 24%, 300px); scroll-snap-align: start; border-radius: 20px; overflow: hidden; background: #000; aspect-ratio: 9 / 16; }
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
@media (max-width: 809px){ .video-card { flex-basis: 72%; } }

/* guide FAQ (dark, product page) */
.guide-faq { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.guide-faq .faq-item { background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.guide-faq .faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: transparent; border: 0; color: var(--cream); font-size: 15px; font-weight: 600; text-align: left; padding: 20px 24px; cursor: pointer; font-family: var(--font); }
.guide-faq .faq-a p { color: var(--cream-dim); padding: 0 24px 22px; margin: 0; font-size: 14px; line-height: 1.6; }
.faq-item.guide-faq-item.open .faq-a { padding: 0 30px; }

/* account page (reference) */
.acct-hero-wrap { padding-top: 120px; }
.acct-hero { position: relative; border-radius: var(--radius-card); padding: 40px 44px 46px; min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; --cream:#EDEDED; }
.acct-hero-brand { color: rgba(242,241,236,.6); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.acct-hero-title { color: #EDEDED; font-size: clamp(30px, 4vw, 48px); text-transform: uppercase; letter-spacing: -.01em; margin: 40px 0 0; }
.acct-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
@media (max-width: 809px){ .acct-grid { grid-template-columns: 1fr; gap: 24px; } }
.acct-side { display: flex; flex-direction: column; gap: 4px; }
.acct-side a { color: var(--cream-dim); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; padding: 8px 0; cursor: pointer; border: 0; background: none; text-align: left; }
.acct-side a:hover { color: var(--cream); }
.acct-side a.active { color: var(--cream); font-weight: 600; border-bottom: 1px solid var(--cream); align-self: flex-start; }
.acct-h2 { margin: 0 0 22px; }
.acct-tab { display: none; }
.acct-tab.active { display: block; }
.acct-group-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); font-weight: 600; margin: 22px 0 10px; }
.acct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 4px; }
.acct-row-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 640px){ .acct-row, .acct-row-3 { grid-template-columns: 1fr; } }
.acct-input { width: 100%; background: rgba(0,0,0,.04); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 15px 20px; color: var(--cream); font-family: var(--font); font-size: 14px; }
.acct-input::placeholder { color: var(--cream-faint); text-transform: uppercase; letter-spacing: .04em; font-size: 12px; }
.acct-input:disabled { opacity: .7; }
.acct-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--cream-dim); }
.acct-check input { margin-top: 3px; }
.acct-check small { color: var(--cream-faint); }

/* admin rich text editor */
.rt-bar { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.rt-btn { background: #fff; border: 1px solid #d1d5db; border-radius: 6px; padding: 6px 10px; font-size: 12px; color: #1f2937; cursor: pointer; line-height: 1; }
.rt-btn:hover { background: #f3f4f6; }
.rt-ed { min-height: 110px; max-height: 320px; overflow-y: auto; padding: 12px 14px; line-height: 1.5; }
.rt-ed:focus { outline: 2px solid rgba(0,0,0,.2); }
.rt-ed h3 { margin: 8px 0 4px; font-size: 16px; }
.rt-ed ul, .rt-ed ol { margin: 6px 0 6px 20px; }
.rt-ed p { margin: 0 0 8px; }

/* checkout page (reference) */
.checkout-page { padding-top: 120px; }
.checkout-back { color: var(--cream-dim); font-size: 13px; }
.checkout-title { margin: 10px 0 24px; text-transform: uppercase; }
.checkout-grid { display: grid; grid-template-columns: 1fr 400px; gap: 28px; align-items: start; }
@media (max-width: 900px){ .checkout-grid { grid-template-columns: 1fr; } }
.co-card { background: rgba(0,0,0,.03); border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; margin-bottom: 18px; }
.co-card-title { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); font-weight: 600; margin-bottom: 14px; }
.co-input { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 14px 18px; color: var(--cream); font-family: var(--font); font-size: 14px; margin-bottom: 12px; }
.co-input::placeholder { color: var(--cream-faint); }
.co-input:disabled { background: rgba(0,0,0,.03); }
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-ship { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin-bottom: 10px; cursor: pointer; }
.co-ship.active { border-color: var(--cream); background: rgba(0,0,0,.04); }
.co-ship input { margin: 0; }
.co-ship-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.co-ship-name { font-size: 14px; color: var(--cream); font-weight: 600; }
.co-ship-desc { font-size: 12px; color: var(--cream-dim); line-height: 1.5; }
.co-ship-price { font-size: 14px; color: var(--cream); font-weight: 600; }
.co-protect { display: flex; gap: 14px; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin-bottom: 18px; cursor: pointer; align-items: flex-start; }
.co-protect input { margin-top: 3px; }
.co-protect-body { flex: 1; }
.co-place { margin-top: 6px; }
.co-summary .co-card { position: sticky; top: 100px; }
.co-line { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.co-line-img { width: 44px; height: 44px; border-radius: 8px; background: #fff center/cover no-repeat; border: 1px solid var(--line); }
.co-line-info { display: flex; flex-direction: column; gap: 2px; }
.co-line-name { font-size: 13px; color: var(--cream); }
.co-line-qty { font-size: 12px; color: var(--cream-faint); }
.co-line-price { font-size: 13px; color: var(--cream); font-weight: 600; }
.co-totals { margin-top: 16px; }
.co-total-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--cream-dim); padding: 6px 0; }
.co-total-row.co-grand { color: var(--cream); font-weight: 700; font-size: 18px; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; }

/* checkout discount */
.co-discount { margin-bottom: 14px; }
.co-discount-form { display: flex; gap: 10px; align-items: center; }
.co-discount-form .co-input { flex: 1; }
.co-discount-msg { font-size: 12px; color: var(--cream-dim); margin: 0 0 8px; }

/* product TOTAL STRENGTH label (divider + centered text) */
.variant-label { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.variant-label::before, .variant-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.variant-label span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-dim); }

/* ===== user overrides: intro / team / faq / guest footer ===== */
.intro-pill { display: inline-flex; align-items: center; border: 1px solid #fff; white-space: nowrap; background: transparent; color: #fff !important; }
.intro-line { flex: 1; height: 1.5px; background: #fff; margin: 0; min-width: 24px; }
.intro-text-box { border: 1px solid #fff; border-radius: 50px; padding: 14px 44px; max-width: 580px; background: transparent; color: #fff !important; }
.intro-text-box p { color: #fff !important; font-size: 15px; line-height: 1.6; margin: 0; }
.intro-band .intro-pill { padding: 18px 48px; font-size: 22px; letter-spacing: .01em; text-transform: uppercase; border-radius: var(--radius-pill); max-width: 580px; width: 100%; text-align: center; display: flex; flex-wrap: nowrap; justify-content: center; font-weight: 600; }
.intro-band-overlay { position: absolute; inset: 0; background: transparent; z-index: 0; display: none; }

.team-cap-name { display: block; font-size: 18px; letter-spacing: .04em; text-transform: uppercase; color: #fff; }
.team-bio p { margin: 0; font-size: 14px; line-height: 1.55; color: #fff; max-width: 400px; }

.sec-wrap .section h2 { color: #fff; }
.faq-q { color: #fff; }
.faq-a div { color: #fff !important; }
.faq-item { border: 1px solid #462b2b; }

/* guest (before-login) footer dark */
.foot-guest { background: #EDEDED !important; --footer-text: #000000; }
.foot-guest, .foot-guest .foot-lead, .foot-guest .foot-col h5, .foot-guest .foot-col a, .foot-guest .foot-sub, .foot-guest .legal { color: #000000 !important; }

/* PDP: category tag pill + shipping-from line (reference match) */
.pdp-tag-row { margin: 0 0 16px; }
.pdp-tag { display: inline-block; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px 16px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-dim); }
.pdp-ship { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; font-size: 13px; color: var(--cream-dim); }
.pdp-ship-ico { font-size: 15px; }

/* ===== Mega menu: multi-column cream panel (reference) ===== */
.mega-cols {
  display: none;
  position: fixed;
  top: 87px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1328px, calc(100vw - 48px));
  background: #e7e4dc;
  border-radius: 26px;
  padding: 0;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  z-index: 120;
}
.mega:hover .mega-cols, .mega.mega-open .mega-cols { display: block; }
.mega-cols::before { content: ""; position: absolute; left: 0; right: 0; top: -40px; height: 40px; }
.mega-cols-inner { display: block; padding: 34px 44px 40px; }
.mega-cols-title { display: none; font-size: 15px; letter-spacing: .02em; color: #111111; margin-bottom: 22px; }
.mega-cols-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 24px; }
.mega-col { display: flex; flex-direction: column; }
.mega-col-h { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #111111; margin-bottom: 16px; }
.mega-col a.mega-col-link { padding: 7px 0; font-size: 14px; color: rgba(0,0,0,.72); transition: color .18s ease; }
.mega-col a.mega-col-link:hover { color: #111111; }
.mega-col a.mega-shopall { display: none !important; margin-top: 10px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #111111; display: inline-flex; align-items: center; gap: 6px; }
.mega-col a.mega-shopall span { font-size: 15px; }
.mega-cta { display: none; align-items: center; gap: 8px; margin-top: 30px; background: #000000; color: #EDEDED; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 15px 26px; border-radius: 14px; transition: background .2s ease; }
.mega-cta:hover { background: #431414; }
.mega-cta span { font-size: 15px; }
@media (max-width: 1000px){ .mega-cols { display: none !important; } }

/* ===== FAQ page (reference) ===== */
.faqpage { max-width: 1200px; margin: 0 auto; padding: 150px 24px 90px; }
.faqpage-grid { display: grid; grid-template-columns: 210px minmax(0,1fr) 280px; gap: 44px; align-items: start; }
.faqpage-side { position: sticky; top: 130px; }
.faqpage-title { font-family: var(--font-display); font-size: 46px; font-weight: 600; letter-spacing: -.01em; color: var(--cream); margin: 0 0 34px; }
.faqpage-topic-label { font-size: 12px; letter-spacing: .08em; color: var(--cream-faint); margin-bottom: 12px; }
.faqpage-topics { display: flex; flex-direction: column; gap: 2px; }
.faqpage-topic { text-align: left; background: none; border: 0; font-family: var(--font); font-size: 14px; color: var(--cream-dim); padding: 12px 16px; border-radius: 12px; cursor: pointer; transition: background .18s ease, color .18s ease; }
.faqpage-topic:hover { color: var(--cream); }
.faqpage-topic.active { background: #ece9e2; color: var(--cream); font-weight: 500; }
.faqpage-main { min-width: 0; }
.faqpage-group { display: none; }
.faqpage-group.active { display: block; }
.faqpage .faq-item { background: #ece9e2; border: 0; border-radius: 30px; margin-bottom: 10px; overflow: hidden; }
.faqpage .faq-q { color: var(--cream); padding: 21px 28px; font-size: 15px; }
.faqpage .faq-q .plus { color: var(--cream-dim); opacity: 1; }
.faqpage .faq-a p { color: var(--cream-dim) !important; padding: 0 28px 22px; font-size: 14px; line-height: 1.6; }
.faqpage .faq-a div { color: var(--cream-dim) !important; }
.faqpage-empty { color: var(--cream-faint); font-size: 14px; padding: 10px 4px; }
.faqpage-search-col { position: sticky; top: 130px; }
.faqpage-search { position: relative; }
.faqpage-search input { width: 100%; background: transparent; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 15px 44px 15px 22px; font-family: var(--font); font-size: 13px; letter-spacing: .06em; color: var(--cream); outline: none; }
.faqpage-search input::placeholder { color: var(--cream-faint); letter-spacing: .1em; }
.faqpage-search input:focus { border-color: var(--cream-dim); }
.faqpage-search svg { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--cream-faint); }
@media (max-width: 960px){
  .faqpage-grid { grid-template-columns: 1fr; gap: 24px; }
  .faqpage-side, .faqpage-search-col { position: static; }
  .faqpage-title { font-size: 38px; margin-bottom: 18px; }
  .faqpage-topics { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .faqpage-search-col { order: -1; }
}

/* ===== PDP fixes (color / qty / width / thumbs) ===== */
.pdp { max-width: 1340px; }
.pdp .qty { display: none !important; }
.pdp .faq-q { color: var(--cream); }
.pdp .faq-q .plus { color: var(--cream-dim); opacity: 1; }
.pdp .faq-a p, .pdp .faq-a > div { color: var(--cream-dim) !important; }
.pdp-thumbs { flex-wrap: wrap; }
.pdp-thumbs img { border: 1px solid var(--line); }
.pdp-thumbs img.active { outline: 2px solid var(--cream); outline-offset: 1px; opacity: 1; }

/* ===== Admin — professional dashboard theme (reference) ===== */
.admin-side { width: 256px; background: #0f1117; border-right: 1px solid #1e2230; padding: 20px 14px; display: flex; flex-direction: column; }
.admin-logo { display: flex; align-items: center; gap: 11px; padding: 6px 10px 22px; }
.admin-logo-badge { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg,#7c3aed,#ec4899); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.admin-logo-badge svg { width: 17px; height: 21px; }
.admin-logo-text { color: #f9fafb; font-weight: 600; font-size: 15px; letter-spacing: .02em; }
.admin-logo-text b { font-weight: 400; color: #9aa3b2; }
.admin-nav { display: flex; flex-direction: column; flex: 1; }
.admin-side .group { font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: #5b6472; padding: 16px 12px 7px; }
.admin-side a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; color: #b3bac7; font-size: 13.5px; margin-bottom: 2px; transition: background .16s ease, color .16s ease; }
.admin-side a svg { width: 18px; height: 18px; flex-shrink: 0; opacity: .85; }
.admin-side a:hover { background: #171a23; color: #f9fafb; }
.admin-side a.active { background: linear-gradient(135deg,#7c3aed,#6366f1); color: #fff; font-weight: 500; box-shadow: 0 6px 16px rgba(99,102,241,.28); }
.admin-side a.active svg { opacity: 1; }
.admin-side .nav-spacer { flex: 1; }
.admin-side .nav-bottom { border-top: 1px solid #1e2230; margin-top: 12px; padding-top: 12px; }
@media (max-width: 809px){ .admin-side { width: auto; } .admin-nav { } }

.admin-topbar h1 { font-size: 26px; }
.admin-sub { color: #6b7280; font-size: 14px; margin: -18px 0 26px; }

.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 26px; }
@media (max-width: 1100px){ .stat-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .stat-cards { grid-template-columns: 1fr; } }
.stat-card { border-radius: 20px; padding: 22px 22px 24px; color: #fff; position: relative; overflow: hidden; box-shadow: 0 12px 30px rgba(16,24,40,.12); }
.stat-card .ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.stat-card .ico svg { width: 21px; height: 21px; }
.stat-card .pill { position: absolute; top: 22px; right: 22px; background: rgba(255,255,255,.22); border-radius: 99px; padding: 5px 12px; font-size: 11.5px; font-weight: 600; }
.stat-card .l { font-size: 13.5px; opacity: .9; margin-bottom: 6px; }
.stat-card .n { font-size: 32px; font-weight: 700; line-height: 1; }
.stat-card.c1 { background: linear-gradient(135deg,#7c3aed,#a855f7); }
.stat-card.c2 { background: linear-gradient(135deg,#2563eb,#38bdf8); }
.stat-card.c3 { background: linear-gradient(135deg,#db2777,#f43f5e); }
.stat-card.c4 { background: linear-gradient(135deg,#059669,#34d399); }

.admin-card > .card-h { display: flex; align-items: center; gap: 10px; margin: 0 0 16px; font-size: 15px; font-weight: 600; color: #111827; }
.admin-card > .card-h .hico { width: 30px; height: 30px; border-radius: 9px; background: #f3f0fb; color: #7c3aed; display: flex; align-items: center; justify-content: center; }
.admin-card > .card-h .hico svg { width: 17px; height: 17px; }

/* ===== PDP tweaks (user) ===== */
.faq-item { border-radius: 9px; }
.faq-q { padding: 10px 23px; }
.pdp button.btn.btn-light, .pdp .btn.btn-light { width: 100%; font-weight: 700; font-size: 17px; }
.pdp-gallery { position: sticky; top: 110px; align-self: start; }
@media (max-width: 809px){ .pdp-gallery { position: static; } }

/* ===== user tweaks + gallery fix ===== */
.section-item { background: #e7e7ed; }
.pdp .faq-a div { color: #000000 !important; }
.pdp-main { background: #e9e7e1 !important; }
.pdp-thumbs { gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.pdp-thumbs img { width: 68px; height: 68px; }

/* ===== user CSS batch ===== */
.faqpage { max-width: 1340px; }
.faqpage .faq-q { color: var(--cream); padding: 13px 28px; font-size: 16px; }
.faqpage .faq-item { border-radius: 15px; margin-bottom: 17px; }
.footer .legal { max-width: 1340px; }
.collection-layout { max-width: 1340px; }

/* ===== nav cart icon (member) ===== */
.cart-icon-btn { position: relative; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 4px; display: flex; align-items: center; }
.cart-icon-btn svg { width: 22px; height: 26px; }
.cart-icon-btn .cart-count { position: absolute; top: -5px; right: -8px; background: var(--accent, #ABC8CF); color: #fff; border-radius: 99px; min-width: 16px; height: 16px; font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* ===== Collection page (reference layout) ===== */
.collection-layout { margin: 0 auto; padding: 140px 24px 90px; }
.collection-top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 44px; }
.collection-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 46px; line-height: 1.05; color: var(--cream); margin: 0; }
.collection-lead { color: var(--cream-dim); font-size: 15px; line-height: 1.6; padding-top: 6px; }
.collection-body { display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: start; }
.collection-sidebar { position: sticky; top: 130px; }
.side-group { margin-bottom: 28px; }
.side-head { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 12px; }
.side-link { display: block; padding: 8px 0; font-size: 14px; color: var(--cream-dim); transition: color .16s ease; }
.side-link:hover { color: var(--cream); }
.side-link.active { color: var(--cream); font-weight: 600; }

.ccard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ccard { position: relative; background: #d9d6cf; border-radius: 22px; padding: 26px; display: flex; flex-direction: column; }
.ccard-link { position: absolute; inset: 0; z-index: 1; }
.ccard .ccard-btn, .ccard .ccard-tag { position: relative; z-index: 2; }
.ccard-eyebrow { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 12px; }
.ccard-media { display: flex; align-items: center; justify-content: center; padding: 6px 0 18px; min-height: 240px; }
.ccard-media img { max-height: 290px; max-width: 78%; width: auto; object-fit: contain; filter: drop-shadow(0 18px 26px rgba(0,0,0,.16)); }
.ccard-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 26px; color: var(--cream); margin: 0 0 14px; }
.ccard-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; }
.ccard-tag { border: 1px solid var(--line); border-radius: 99px; padding: 4px 12px; font-size: 11px; color: var(--cream-dim); }
.ccard-dash { width: 8px; height: 1px; background: var(--line); }
.ccard-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ccard-price { font-size: 21px; font-weight: 600; color: var(--cream); }
.ccard-btn { background: #000000; color: #EDEDED; border-radius: 99px; padding: 13px 26px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.ccard-btn:hover { background: #431414; }

.ccard-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr; grid-template-areas: "media eyebrow" "media body"; gap: 0 34px; align-items: center; }
.ccard-wide .ccard-media { grid-area: media; min-height: 300px; }
.ccard-wide .ccard-media img { max-height: 340px; }
.ccard-wide .ccard-eyebrow { grid-area: eyebrow; align-self: end; margin: 0 0 4px; }
.ccard-wide .ccard-body { grid-area: body; }

@media (max-width: 900px){
  .collection-top { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
  .collection-title { font-size: 34px; }
  .collection-body { grid-template-columns: 1fr; gap: 24px; }
  .collection-sidebar { position: static; }
  .side-group { margin-bottom: 16px; }
  .ccard-grid { grid-template-columns: 1fr; }
  .ccard-wide { grid-template-columns: 1fr; grid-template-rows: auto auto auto; grid-template-areas: "media" "eyebrow" "body"; }
}

.filter-toggle-mobile { display: none; }
.filter-drawer-close { display: none; }
.collection-filter-overlay { display: none; }
@media (max-width: 809px){
  .filter-toggle-mobile { display: inline-flex; align-items: center; gap: 8px; background: #000; color: #EDEDED; border: 0; border-radius: 99px; padding: 12px 22px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; cursor: pointer; margin: 0 0 18px; }
  .collection-filter-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .collection-filter-overlay.open { display: block; opacity: 1; pointer-events: auto; }
  .collection-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 82%; max-width: 340px; background: var(--bg); z-index: 201; padding: 68px 24px 28px; overflow-y: auto; -webkit-overflow-scrolling: touch; transform: translateX(-100%); transition: transform .28s ease; display: block; box-shadow: 0 0 40px rgba(0,0,0,.35); }
  .collection-sidebar.open { transform: translateX(0); }
  .filter-drawer-close { display: block; position: absolute; top: 16px; right: 18px; background: none; border: 0; color: var(--cream); font-size: 30px; line-height: 1; cursor: pointer; }
  body.filter-locked { overflow: hidden; }
}

/* ===== Admin analytics ===== */
.an-range { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 22px; }
@media (max-width: 700px){ .an-range { grid-template-columns: 1fr 1fr; } }
.an-range-tab { text-align: center; padding: 13px 10px; border-radius: 12px; background: #eceef1; color: #4b5563; font-size: 13.5px; font-weight: 500; transition: background .16s ease, color .16s ease; }
.an-range-tab:hover { background: #e4e7ec; }
.an-range-tab.active { background: linear-gradient(135deg,#7c3aed,#6366f1); color: #fff; box-shadow: 0 8px 20px rgba(99,102,241,.3); }
.an-cards { grid-template-columns: repeat(5,1fr); }
@media (max-width: 1200px){ .an-cards { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 700px){ .an-cards { grid-template-columns: 1fr 1fr; } }
.stat-card.an-orange { background: linear-gradient(135deg,#f59e0b,#f59e0b) !important; background: linear-gradient(135deg,#f97316,#fbbf24) !important; }
.an-wide-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 26px; }
@media (max-width: 700px){ .an-wide-row { grid-template-columns: 1fr; } }
.an-wide { display: flex; align-items: center; gap: 16px; border-radius: 20px; padding: 26px 24px; color: #fff; box-shadow: 0 12px 30px rgba(16,24,40,.12); }
.an-wide.c1 { background: linear-gradient(135deg,#7c3aed,#a855f7); }
.an-wide.c2 { background: linear-gradient(135deg,#2563eb,#38bdf8); }
.an-wide .ico { width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; }
.an-wide .ico svg { width: 22px; height: 22px; }
.an-wide .l { font-size: 14px; opacity: .92; }
.an-wide .n { font-size: 30px; font-weight: 700; line-height: 1.1; }
.an-chart { width: 100%; overflow: hidden; }

/* ===== Admin products grid + quick-add modal ===== */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(230px,1fr)); gap: 18px; }
.prod-cardx { position: relative; background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; overflow: hidden; box-shadow: 0 1px 2px rgba(16,24,40,.05); display: flex; flex-direction: column; }
.prod-chk { position: absolute; top: 10px; left: 10px; z-index: 2; background: #fff; border-radius: 6px; padding: 3px; box-shadow: 0 1px 3px rgba(0,0,0,.15); display: flex; }
.prod-media { display: block; aspect-ratio: 1; background: #f3f4f6; display: flex; align-items: center; justify-content: center; }
.prod-media img { width: 100%; height: 100%; object-fit: contain; }
.prod-noimg { color: #9ca3af; font-size: 12px; }
.prod-info { padding: 14px 16px 6px; }
.prod-title { font-size: 14.5px; font-weight: 600; color: #111827; margin-bottom: 3px; }
.prod-meta { font-size: 12.5px; color: #6b7280; margin-bottom: 8px; }
.prod-actions { display: flex; gap: 6px; padding: 10px 16px 14px; flex-wrap: wrap; margin-top: auto; }

.pa-overlay { position: fixed; inset: 0; background: rgba(17,24,39,.5); z-index: 300; display: none; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.pa-overlay.show { display: flex; }
.pa-box { background: #fff; border-radius: 16px; width: min(680px,100%); box-shadow: 0 24px 60px rgba(16,24,40,.35); }
.pa-head { display: flex; align-items: flex-start; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #eee; }
.pa-head h3 { color: #111827; }
.pa-x { background: none; border: 0; font-size: 24px; color: #9ca3af; cursor: pointer; line-height: 1; }
.pa-body { padding: 22px 24px; }
.pa-upload { display: flex; flex-direction: column; align-items: center; gap: 6px; border: 2px dashed #d1d5db; border-radius: 12px; padding: 26px; cursor: pointer; text-align: center; color: #6b7280; font-size: 14px; margin-bottom: 20px; transition: border-color .16s ease; }
.pa-upload:hover { border-color: #7c3aed; }
.pa-upload-ico { font-size: 26px; }
.pa-upload-sub { font-size: 12px; color: #9ca3af; }
.pa-variants { border: 1px solid #ece9fb; background: #faf9ff; border-radius: 12px; padding: 16px; margin: 6px 0 16px; }
.pa-variants-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.pa-combos-badge { background: #ede9fe; color: #6d28d9; border-radius: 99px; padding: 4px 12px; font-size: 12px; font-weight: 600; }
.pa-optrow { display: flex; gap: 8px; margin-bottom: 8px; }
.pa-optrow .opt-name { flex: 1; }
.pa-optrow .opt-vals { flex: 1.4; }
.pa-addopt { width: 100%; background: #fff; border: 1px dashed #c4b5fd; color: #6d28d9; border-radius: 10px; padding: 11px; cursor: pointer; font-size: 13.5px; font-weight: 500; }
.pa-combolist { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pa-combo { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 5px 12px; font-size: 12.5px; color: #374151; }
.pa-foot { display: flex; justify-content: flex-end; gap: 10px; padding-top: 6px; }

/* ===== user: collection single-col + PDP slider arrows + 100px thumbs ===== */
.collection-layout { grid-template-columns: 1fr; }
.pdp-main-wrap { position: relative; }
.pdp-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.85); border: 1px solid var(--line); color: var(--cream); font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; transition: background .18s ease; }
.pdp-arrow:hover { background: #fff; }
.pdp-arrow.prev { left: 14px; }
.pdp-arrow.next { right: 14px; }
.pdp-thumbs img { width: 100px; height: 100px; }

/* ===== Refer & Earn (account) ===== */
.ref-eyebrow { font-family: var(--font-display); text-transform: uppercase; font-size: 26px; font-weight: 600; color: var(--cream); }
.ref-how { margin: 26px 0; }
.ref-how h3 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-faint); margin: 0 0 16px; }
.ref-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.ref-step { display: flex; flex-direction: column; gap: 4px; }
.ref-num { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); color: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.ref-step b { font-size: 14px; color: var(--cream); }
.ref-step span { font-size: 12.5px; color: var(--cream-dim); line-height: 1.5; }
.ref-progress-card { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; margin-bottom: 22px; }
.ref-progress-top { display: flex; justify-content: space-between; font-size: 13px; color: var(--cream); margin-bottom: 12px; }
.ref-bar { height: 8px; border-radius: 99px; background: rgba(0,0,0,.1); overflow: hidden; }
.ref-bar span { display: block; height: 100%; background: var(--accent); border-radius: 99px; }
.ref-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 22px; }
.ref-stat { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.ref-stat-l { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--cream-faint); }
.ref-stat-n { font-size: 26px; font-weight: 700; color: var(--cream); margin: 4px 0 2px; }
.ref-stat-s { font-size: 11.5px; color: var(--cream-dim); }
.ref-code-card { background: #fff; border-radius: 16px; padding: 26px; text-align: center; margin-bottom: 22px; box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.ref-code-head { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-faint); }
.ref-code { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: .08em; color: var(--cream); background: #EDEDED; border-radius: 12px; padding: 18px; margin-bottom: 16px; border: 1px dashed rgba(0,0,0,.2); }
.ref-code-actions { display: flex; gap: 10px; justify-content: center; margin-bottom: 18px; }
.ref-link-row { text-align: left; }
.ref-link-row .a-input { margin-top: 6px; }
.ref-note { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.ref-note b { font-size: 13px; color: var(--cream); }
.ref-note ul { margin: 10px 0 0; padding-left: 18px; }
.ref-note li { font-size: 12.5px; color: var(--cream-dim); line-height: 1.7; }
@media (max-width: 700px){ .ref-steps, .ref-stats { grid-template-columns: 1fr; } }

/* ===== Goal quiz (member) ===== */
.quiz-wrap { padding-top: 140px; }
.quiz-eyebrow { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 8px; }
.quiz-head h1, .quiz-confirm h1 { font-family: var(--font-display); font-size: 34px; font-weight: 600; margin: 0 0 10px; }
.quiz-head p, .quiz-confirm p { color: var(--cream-dim); line-height: 1.6; }
.quiz-progress { display: flex; gap: 8px; margin: 26px 0 22px; }
.quiz-progress .qp { flex: 1; height: 4px; border-radius: 99px; background: rgba(0,0,0,.12); }
.quiz-progress .qp.on { background: var(--cream); }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: qzfade .25s ease; }
@keyframes qzfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.quiz-stepnum { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--cream-faint); }
.quiz-q { font-family: var(--font-display); font-size: 24px; font-weight: 600; margin: 6px 0 18px; }
.quiz-q .quiz-opt { font-family: var(--font); font-size: 13px; font-weight: 400; color: var(--cream-faint); text-transform: none; letter-spacing: 0; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-optrow { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 12px; padding: 15px 18px; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.quiz-optrow:hover { border-color: var(--cream-dim); }
.quiz-optrow input { accent-color: var(--cream); }
.quiz-optrow input:checked + span { font-weight: 600; }
.quiz-optrow:has(input:checked) { border-color: var(--cream); background: rgba(0,0,0,.04); }
.quiz-nav { display: flex; gap: 10px; margin-top: 22px; }
.quiz-shake { animation: qzshake .3s; }
@keyframes qzshake { 0%,100%{transform:none} 25%{transform:translateX(-6px)} 75%{transform:translateX(6px)} }
.quiz-confirm { text-align: center; padding: 20px 0; }
.quiz-prompt { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--cream); color: var(--bg); border-radius: 14px; padding: 16px 20px; margin-bottom: 20px; }
.quiz-prompt b { color: var(--bg); }
.quiz-prompt-cta { font-weight: 600; white-space: nowrap; }
.goals-list { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.goals-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.goals-q { color: var(--cream-dim); }
.goals-a { color: var(--cream); font-weight: 600; text-align: right; }

/* ===== PDP supply duration / size ===== */
.pdp-supply { margin: 18px 0 4px; font-size: 14px; color: var(--cream-dim); line-height: 1.7; }
.pdp-supply b { color: var(--cream); font-weight: 600; }

.repurchase-banner { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; background:var(--footer-wordmark-bg,#000000); color:#EDEDED; border-radius:16px; padding:18px 22px; margin-bottom:22px; }
.repurchase-banner b { display:block; font-size:15px; margin-bottom:2px; }
.repurchase-banner span { font-size:13px; opacity:.75; }
.protocol-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:18px; margin-top:16px; }
.protocol-card { border:1px solid var(--line); border-radius:16px; overflow:hidden; background:rgba(0,0,0,.02); display:flex; flex-direction:column; }
.protocol-media { display:block; aspect-ratio:1/1; background:#d8d4cc center/cover no-repeat; }
.protocol-body { padding:12px 14px; display:flex; flex-direction:column; gap:8px; }
.protocol-title { font-weight:600; font-size:14px; }
.protocol-price { font-size:13px; opacity:.8; }

.guides-page { padding-top:120px; }
.guides-title { font-size:clamp(28px,5vw,44px); margin:6px 0 10px; }
.guides-tabs { display:flex; gap:10px; margin:22px 0 26px; }
.guides-tab { padding:10px 22px; border:1px solid var(--line); border-radius:var(--radius-pill); font-size:14px; }
.guides-tab.active { background:var(--footer-wordmark-bg,#000000); color:#EDEDED; border-color:transparent; }
.guides-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:18px; }
.guides-video-wrap { margin-top:48px; }
.guides-video { width:100%; max-width:520px; border-radius:16px; margin-top:14px; }
.wholesale-page { padding-top:120px; }
.wholesale-wrap { max-width:640px; }
.wholesale-title { font-size:clamp(28px,5vw,44px); margin:6px 0 10px; }
.wholesale-form .acct-row { display:flex; gap:12px; margin-bottom:12px; }
.wholesale-form .acct-input { flex:1; }
.foot-wholesale-link { text-decoration:underline; opacity:.7; font-size:12px; }
.pdp-guide-link { display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-size:13px; text-decoration:underline; opacity:.8; }

.consult-page { padding-top:120px; }
.consult-wrap { max-width:760px; }
.consult-title, .consult-h2 { font-size:clamp(24px,4vw,38px); margin:6px 0 10px; }
.consult-book-card { border:1px solid var(--line); border-radius:18px; padding:24px; margin:22px 0 34px; }
.consult-fee { display:flex; justify-content:space-between; align-items:center; font-size:15px; padding-bottom:16px; border-bottom:1px solid var(--line); margin-bottom:16px; }
.consult-fee b { font-size:22px; }
.consult-consent { display:flex; gap:10px; align-items:flex-start; font-size:13px; opacity:.85; margin-bottom:18px; }
.consult-consent input { margin-top:3px; }
.consult-msg { font-size:13px; margin-top:10px; opacity:.85; }
.consult-list { display:flex; flex-direction:column; gap:14px; }
.consult-item { border:1px solid var(--line); border-radius:14px; padding:16px 18px; }
.consult-item-head { display:flex; gap:12px; align-items:center; margin-bottom:10px; }
.consult-when { font-size:13px; opacity:.75; }
.consult-summary summary { cursor:pointer; font-size:13px; margin-top:8px; }
.consult-summary p { font-size:13px; opacity:.85; margin-top:8px; }

.wa-concierge { position:fixed; right:20px; bottom:20px; z-index:900; width:56px; height:56px; border-radius:50%; background:#25d366; color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 24px rgba(0,0,0,.25); transition:transform .2s ease; }
.wa-concierge:hover { transform:scale(1.06); }
@media (max-width:600px){ .wa-concierge { width:52px; height:52px; right:16px; bottom:16px; } }

.quiz-shell { max-width: 640px; }
.quiz-card { background: rgba(255,255,255,.55); border: 1px solid var(--line); border-radius: 24px; padding: 34px 34px 30px; box-shadow: 0 20px 60px -30px rgba(0,0,0,.35); }
.quiz-topbar { margin-bottom: 26px; }
.quiz-steps-dots { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 14px; }
.quiz-steps-dots .qdot { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; border: 1.5px solid var(--line); color: var(--cream-faint); background: transparent; flex: 0 0 auto; transition: all .2s ease; }
.quiz-steps-dots .qdot.on { border-color: var(--cream); color: var(--cream); }
.quiz-steps-dots .qdot.done { background: var(--cream); color: var(--bg); border-color: var(--cream); }
.quiz-steps-dots .qdot-line { flex: 1; height: 1.5px; background: var(--line); min-width: 14px; transition: background .2s ease; }
.quiz-steps-dots .qdot-line.on { background: var(--cream); }
.quiz-stepcount { text-align: center; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--cream-faint); }
.quiz-card .quiz-q { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin: 0 0 20px; line-height: 1.3; }
.quiz-card .quiz-q .quiz-opt { display: inline-block; font-family: var(--font); font-size: 11px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--cream-faint); border: 1px solid var(--line); border-radius: 99px; padding: 2px 9px; vertical-align: middle; margin-left: 6px; }
.quiz-card .quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-card .quiz-optrow { display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--line); border-radius: 14px; padding: 15px 18px; cursor: pointer; transition: border-color .15s ease, background .15s ease, transform .1s ease; }
.quiz-card .quiz-optrow input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-card .quiz-optdot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); flex: 0 0 auto; position: relative; transition: border-color .15s ease; }
.quiz-card .quiz-optlabel { font-size: 15px; }
.quiz-card .quiz-optrow:hover { border-color: var(--cream-dim); }
.quiz-card .quiz-optrow:has(input:checked) { border-color: var(--cream); background: rgba(0,0,0,.05); }
.quiz-card .quiz-optrow:has(input:checked) .quiz-optdot { border-color: var(--cream); }
.quiz-card .quiz-optrow:has(input:checked) .quiz-optdot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--cream); }
.quiz-card .quiz-optrow:has(input:checked) .quiz-optlabel { font-weight: 600; }
.quiz-card .quiz-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 26px; }
.quiz-back { background: none; border: 0; color: var(--cream-dim); font-size: 14px; cursor: pointer; padding: 8px 4px; font-family: inherit; }
.quiz-back:hover { color: var(--cream); }
.quiz-continue { min-width: 150px; }
.quiz-skip { text-align: center; margin-top: 20px; }
.quiz-confirm { text-align: center; max-width: 480px; margin: 0 auto; padding: 30px 0; }
.quiz-confirm-badge { width: 64px; height: 64px; border-radius: 50%; background: var(--cream); color: var(--bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.quiz-confirm-note { color: var(--cream) !important; font-weight: 600; }
@media (max-width: 560px) { .quiz-card { padding: 24px 20px; border-radius: 18px; } .quiz-card .quiz-q { font-size: 19px; } .quiz-continue { min-width: 120px; } }

.dosing-page, .ddetail-page, .myp-page { padding-top: 110px; }
.dosing-hero, .ddetail-hero, .myp-hero { background: var(--footer-wordmark-bg,#000000); color: #EDEDED; border-radius: 22px; padding: 40px 40px 48px; margin-bottom: 24px; }
.dosing-hero-brand, .ddetail-brand, .myp-hero-brand { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.dosing-hero h1, .ddetail-hero h1, .myp-hero h1 { font-family: var(--font-display); font-size: clamp(30px,5vw,52px); margin: 30px 0 0; letter-spacing: .01em; }
.dosing-search { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); padding: 10px 4px; max-width: 320px; margin: 0 0 26px auto; color: var(--cream-dim); }
.dosing-search input { border: 0; background: none; outline: none; flex: 1; font-family: inherit; font-size: 14px; color: var(--fg); }
.dosing-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; }
.dosing-card { background: rgba(0,0,0,.04); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; }
.dosing-card-top h3 { font-family: var(--font-display); font-size: 20px; margin: 0 0 10px; }
.dosing-size { font-size: 13px; opacity: .6; font-weight: 400; }
.dosing-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }
.dosing-tag { font-size: 10px; letter-spacing: .04em; text-transform: uppercase; border: 1px solid var(--line); border-radius: 99px; padding: 3px 10px; opacity: .8; }
.dosing-card-media { aspect-ratio: 1/1; background: #e7e3da center/contain no-repeat; border-radius: 10px; margin: 14px 0 18px; }
.dosing-learn { align-self: center; margin-top: auto; min-width: 160px; }

.ddetail-body { display: grid; grid-template-columns: 260px 1fr; gap: 0; background: var(--footer-wordmark-bg,#000000); color: #EDEDED; border-radius: 22px; overflow: hidden; }
.ddetail-side { padding: 34px 26px; border-right: 1px solid rgba(255,255,255,.08); }
.ddetail-side-media { aspect-ratio: 1/1; background: rgba(255,255,255,.04) center/contain no-repeat; border-radius: 12px; margin-bottom: 16px; }
.ddetail-side-name { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.ddetail-side-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ddetail-side .dosing-tag { border-color: rgba(255,255,255,.2); }
.ddetail-main { padding: 34px 40px 44px; }
.ddetail-block { margin-bottom: 36px; }
.ddetail-block h2 { font-family: var(--font-display); font-size: 22px; letter-spacing: .02em; margin: 0 0 18px; }
.ddetail-block p { line-height: 1.7; opacity: .82; margin: 0 0 12px; font-size: 14px; }
.ddetail-subhead { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .55; margin: 20px 0 12px; }
.ddetail-rows { display: flex; flex-direction: column; gap: 10px; }
.ddetail-row { background: rgba(255,255,255,.05); border-radius: 12px; padding: 16px 20px; font-size: 14px; }
.ddetail-tabbar { display: flex; flex-wrap: wrap; gap: 4px; background: rgba(255,255,255,.05); border-radius: 12px; padding: 5px; margin-bottom: 14px; }
.ddetail-tab { background: none; border: 0; color: #EDEDED; opacity: .6; font-family: inherit; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; padding: 9px 16px; border-radius: 9px; cursor: pointer; }
.ddetail-tab.active { background: #EDEDED; color: var(--bg); opacity: 1; font-weight: 600; }
.ddetail-tabpanel { display: none; background: rgba(255,255,255,.05); border-radius: 12px; padding: 18px 20px; font-size: 14px; line-height: 1.7; }
.ddetail-tabpanel.active { display: block; }
.ddetail-cards { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; }
.ddetail-cards::-webkit-scrollbar { display: none; }
.ddetail-cards > .ddetail-card { flex: 0 0 calc((100% - 24px) / 3); scroll-snap-align: start; }
.ddetail-cards-wrap { position: relative; }
.ddetail-carousel-nav { display: flex; gap: 8px; justify-content: flex-end; margin-bottom: 10px; }
.ddetail-carousel-nav button { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #EDEDED; cursor: pointer; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.ddetail-carousel-nav button:hover { background: rgba(255,255,255,.1); }
@media (max-width: 760px){ .ddetail-cards > .ddetail-card { flex-basis: 80%; } }
.ddetail-card { background: rgba(255,255,255,.05); border-radius: 12px; padding: 18px; }
.ddetail-card-h { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.ddetail-card p { font-size: 13px; margin: 0; }
.ddetail-mech { background: rgba(255,255,255,.05); border-radius: 12px; padding: 18px 20px; margin-bottom: 10px; }
.ddetail-mech-h { font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.ddetail-mech p { margin: 0; font-size: 13px; }
@media (max-width:760px){ .ddetail-body { grid-template-columns: 1fr; } .ddetail-side { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); } .ddetail-main { padding: 26px 22px; } }
@media (max-width: 809px){
  .ddetail-page .wrap { padding-left: 16px; padding-right: 16px; }
  .ddetail-hero { padding: 26px 20px 30px; border-radius: 16px; }
  .ddetail-hero h1 { font-size: clamp(24px, 7vw, 34px); word-break: break-word; }
  .ddetail-body { border-radius: 16px; }
  .ddetail-side { padding: 24px 20px; }
  .ddetail-side-media { max-width: 240px; margin-left: auto; margin-right: auto; }
  .ddetail-main { padding: 22px 18px 30px; }
  .ddetail-block h2 { font-size: 19px; }
  .ddetail-block p, .ddetail-row, .ddetail-tabpanel, .ddetail-card p, .ddetail-mech p { overflow-wrap: anywhere; }
  .ddetail-tabbar { gap: 6px; }
  .ddetail-tab { padding: 8px 12px; font-size: 11px; }
  .ddetail-cards > .ddetail-card { flex-basis: 85%; }
  .ddetail-row { padding: 14px 16px; }
}
@media (max-width: 809px){
  body { overflow-x: hidden; }
  img, svg, video, iframe { max-width: 100%; height: auto; }
  .wrap { padding-left: 16px; padding-right: 16px; }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

.myp-milestones { background: linear-gradient(180deg, #3a0f10, #000000); color: #EDEDED; border-radius: 20px; padding: 26px 30px; margin-bottom: 18px; }
.myp-mile-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.myp-eyebrow { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .55; }
.myp-mile-title { font-family: var(--font-display); font-size: 20px; margin-top: 2px; }
.myp-mile-count { font-size: 12px; opacity: .7; }
.myp-mile-count b { font-size: 14px; }
.myp-mile-track { display: flex; align-items: center; margin-bottom: 22px; }
.myp-node { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 0 0 auto; }
.myp-node-dot { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; font-size: 13px; opacity: .6; }
.myp-node.current .myp-node-dot { border-color: #EDEDED; opacity: 1; }
.myp-node.done .myp-node-dot { background: #EDEDED; color: var(--bg); border-color: #EDEDED; opacity: 1; }
.myp-node-label { font-size: 11px; opacity: .7; }
.myp-node.done .myp-node-label, .myp-node.current .myp-node-label { opacity: 1; }
.myp-node-line { flex: 1; height: 1.5px; background: rgba(255,255,255,.2); margin: 0 4px; margin-bottom: 20px; }
.myp-node-line.done { background: #EDEDED; }
.myp-upnext { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; background: rgba(255,255,255,.06); border-radius: 14px; padding: 18px 22px; }
.myp-upnext-title { font-family: var(--font-display); font-size: 17px; margin: 4px 0 2px; }
.myp-upnext-desc { font-size: 13px; opacity: .7; }
.myp-reco { display: flex; justify-content: space-between; align-items: center; gap: 16px; background: #000000; color: #EDEDED; border-radius: 20px; padding: 22px 28px; margin-bottom: 40px; }
.myp-reco-l { display: flex; align-items: center; gap: 16px; }
.myp-reco-ico { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.myp-reco-title { font-family: var(--font-display); font-size: 18px; margin-top: 2px; }
.myp-reco-cta { background: #EDEDED; color: #111111; border-radius: 99px; padding: 12px 22px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.myp-noorders { text-align: center; padding: 40px 0 60px; }
.myp-noorders h2 { font-family: var(--font-display); font-size: 30px; margin: 0 0 12px; }
.myp-noorders p { color: var(--cream-dim); max-width: 460px; margin: 0 auto 24px; line-height: 1.6; }
.myp-orders-h { font-family: var(--font-display); font-size: 22px; margin: 0 0 16px; }
.myp-order-list { display: flex; flex-direction: column; gap: 10px; }
.myp-order { display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; }
.myp-order-date { font-size: 12px; opacity: .6; margin-left: 10px; }
.myp-order-r { display: flex; align-items: center; gap: 14px; }
.myp-learn { display: flex; justify-content: space-between; align-items: center; background: rgba(0,0,0,.05); border-radius: 14px; padding: 24px 28px; margin-top: 34px; }
.myp-learn span:first-child { font-family: var(--font-display); font-size: 20px; }
.myp-learn-cta { background: var(--footer-wordmark-bg,#000000); color: #EDEDED; border-radius: 99px; padding: 10px 20px; font-size: 13px; }
@media (max-width:640px){ .myp-node-label { font-size: 9px; } .myp-node-dot { width: 28px; height: 28px; } }

.cg-eyebrow,.std-eyebrow,.tst-eyebrow { font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--cream-faint); display:block; margin-bottom:8px; }
.cg-heading,.std-heading,.tst-heading { font-family:var(--font-display); font-size:clamp(24px,4vw,38px); margin:0 0 30px; }
.cg-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:22px; }
@media (max-width:1100px){ .cg-grid { grid-template-columns:repeat(3, 1fr); } }
@media (max-width:809px){ .cg-grid { grid-template-columns:repeat(2, 1fr); gap:14px; } }
@media (max-width:520px){ .cg-grid { grid-template-columns:1fr; } }
.cg-card { border-radius:16px; overflow:hidden; background:rgba(0,0,0,.03); border:1px solid rgba(17,17,17,.06); }
.cg-card-media { aspect-ratio:4/3; background:#d8d4cc center/cover no-repeat; }
.cg-card-body { padding:18px 20px; }
.cg-card-name { font-family:var(--font-display); font-size:18px; margin-bottom:6px; }
.cg-card-line { font-size:13px; color:var(--cream-dim); line-height:1.5; }
.std-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:16px; counter-reset:std; }
.std-item { position:relative; background:#fff; border:1px solid rgba(17,17,17,.1); border-radius:16px; padding:28px 22px 24px; counter-increment:std; transition:transform .2s ease, box-shadow .2s ease; }
.std-item:hover { transform:translateY(-3px); box-shadow:0 10px 28px rgba(17,17,17,.08); }
.std-item::before { content:counter(std,decimal-leading-zero); display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:11px; background:rgba(171,200,207,.28); color:#2b4a52; font-family:var(--font-display); font-size:15px; font-weight:600; margin-bottom:16px; }
.std-item-title { font-weight:600; font-size:15px; margin-bottom:9px; color:#111; letter-spacing:0; }
.std-item-text { font-size:13px; color:var(--cream-dim); line-height:1.65; }
.std-foot { margin-top:26px; font-size:12px; color:var(--cream-faint); letter-spacing:.02em; text-align:center; padding-top:20px; border-top:1px solid rgba(17,17,17,.08); }
.tst-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:18px; }
.tst-card { border:1px solid var(--line); border-radius:16px; padding:24px; }
.tst-stars { color:#ABC8CF; font-size:15px; letter-spacing:2px; margin-bottom:12px; }
.tst-stars-off { opacity:.25; }
.tst-title { font-weight:600; font-size:15px; margin-bottom:8px; }
.tst-body { font-size:14px; line-height:1.6; color:var(--cream-dim); margin:0 0 16px; }
.tst-meta { display:flex; justify-content:space-between; align-items:center; font-size:12px; }
.tst-name { font-weight:600; }
.tst-verified { color:#4a7c59; }
.tst-empty { color:var(--cream-dim); }

@font-face { font-family: "Nord"; src: url("/assets/fonts/Nord-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Nord"; src: url("/assets/fonts/Nord-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("/assets/fonts/SpaceGrotesk-Light.ttf") format("truetype"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("/assets/fonts/SpaceGrotesk-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("/assets/fonts/SpaceGrotesk-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("/assets/fonts/SpaceGrotesk-SemiBold.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("/assets/fonts/SpaceGrotesk-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }

:root {
  --brand-black: #000000;
  --brand-glacier: #ABC8CF;
  --brand-white: #FFFFFF;
  --brand-bone: #EDEDED;
  --panel: var(--brand-black);
  --font-eyebrow: "Nord", "Space Grotesk", system-ui, sans-serif;
}

.eyebrow, .cg-eyebrow, .std-eyebrow, .tst-eyebrow, .myp-eyebrow, .myp-hero-brand,
.dosing-hero-brand, .ddetail-brand, .quiz-eyebrow, .ni-badge, .press-eyebrow,
.section-eyebrow, .filter-eyebrow, .board-eyebrow, .steps-eyebrow, .fb-eyebrow,
.dosing-tag, .std-item-title, .tst-verified {
  font-family: var(--font-eyebrow);
  letter-spacing: 0.04em;
}

.repurchase-banner, .guides-tab.active,
.dosing-hero, .ddetail-hero, .myp-hero, .ddetail-body,
.myp-learn-cta, .myp-reco, .myp-milestones {
  background: var(--panel) !important;
}
.myp-milestones { background: linear-gradient(180deg, #141414, #000000) !important; }

.drawer { color: #111111; }
.drawer .drawer-head, .drawer .drawer-foot { border-color: rgba(0,0,0,.1); }
.drawer .cart-line { border-bottom-color: rgba(0,0,0,.09); }
.drawer .cart-line .info h4 { color: #111111; }
.drawer .cart-line .info .price, .drawer .drawer-empty, .drawer .foot-note { color: rgba(17,17,17,.62); }
.drawer .drawer-foot .row { color: #111111; }
.drawer .qty { border-color: rgba(0,0,0,.2); color: #111111; }
.drawer .qty button { color: #111111; }
.drawer .btn-light { background: #111111 !important; color: #EDEDED !important; }
.drawer .btn-outline { border: 1px solid rgba(0,0,0,.35) !important; color: #111111 !important; background: transparent !important; }
.drawer .cart-remove, .drawer a[data-remove] { color: rgba(17,17,17,.6); }

.nav a.nav-link, .nav .nav-right a, .nav .cart-btn, .nav .logo-mark, .nav .mega > a, .nav-toggle span { color: #111111; }
.nav a.nav-link, .nav .nav-right a { opacity: .85; }
.nav a.nav-link:hover, .nav .nav-right a:hover { opacity: 1; }
.nav-toggle span { background: #111111; }

.ref-stat-l { display:flex; justify-content:space-between; align-items:center; }
.ref-stat-ico { font-size:14px; opacity:.5; }
.ref-ico { margin-right:4px; }

@media (max-width: 900px) {
  .wrap { max-width: 100%; }
  .section { padding: 40px 18px; }
  .dosing-page, .ddetail-page, .myp-page, .consult-page, .guides-page, .wholesale-page { padding-top: 92px; }
  .dosing-hero, .ddetail-hero, .myp-hero { padding: 28px 22px 32px; border-radius: 16px; }
  .dosing-hero h1, .ddetail-hero h1, .myp-hero h1 { font-size: 30px; }
  .dosing-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .protocol-grid, .cg-grid, .std-grid, .tst-grid, .ddetail-cards { gap: 12px; }
  .cg-grid, .tst-grid { grid-template-columns: 1fr; }
  .std-grid { grid-template-columns: 1fr 1fr; }
  .myp-mile-track { overflow-x: auto; padding-bottom: 6px; }
  .myp-node-label { font-size: 9px; }
  .myp-reco { flex-direction: column; align-items: flex-start; }
  .consult-book-card { padding: 18px; }
}
@media (max-width: 600px) {
  .dosing-grid { grid-template-columns: 1fr; }
  .std-grid { grid-template-columns: 1fr; }
  .myp-hero h1, .ddetail-hero h1, .dosing-hero h1 { font-size: 26px; }
  .ddetail-main { padding: 22px 18px; }
  .quiz-card { padding: 22px 18px; }
  .repurchase-banner { flex-direction: column; align-items: flex-start; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 860px) {
  .admin-shell, .admin-layout { display: block !important; }
  .admin-sidebar, .admin-nav, .admin-side { position: relative !important; width: 100% !important; height: auto !important; }
  .admin-main, .admin-content { margin-left: 0 !important; padding: 18px !important; }
  .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
  .a-row { grid-template-columns: 1fr !important; }
}

.buywith-section .buywith-h2 { font-family: var(--font-display); font-size: clamp(22px,3.5vw,30px); margin: 6px 0 24px; }
.buywith-grid { display: flex; align-items: stretch; gap: 14px; flex-wrap: wrap; }
.buywith-anchor, .buywith-item { flex: 1 1 200px; min-width: 180px; border: 1px solid var(--line); border-radius: 16px; padding: 18px; display: flex; flex-direction: column; gap: 8px; text-align: center; align-items: center; }
.buywith-anchor { background: rgba(0,0,0,.03); }
.buywith-media { width: 100%; aspect-ratio: 1/1; background: #e7e3da center/contain no-repeat; border-radius: 12px; display: block; }
.buywith-name { font-weight: 600; font-size: 14px; }
.buywith-price { font-size: 13px; opacity: .75; }
.buywith-this { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; opacity: .5; }
.buywith-plus { align-self: center; font-size: 24px; opacity: .4; font-weight: 300; }
.buywith-addall { margin-top: 22px; min-width: 220px; }
@media (max-width: 700px){ .buywith-grid { flex-direction: column; } .buywith-plus { transform: rotate(0); } }

.tst-video { width: 100%; border-radius: 12px; margin-bottom: 14px; background: #000; aspect-ratio: 16/9; object-fit: cover; }

.pm-list { display: flex; flex-direction: column; gap: 12px; }
.pm-card { display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.pm-card-l { display: flex; flex-direction: column; gap: 4px; }
.pm-brand { font-weight: 600; font-size: 14px; }
.pm-dots { font-size: 13px; letter-spacing: .08em; opacity: .7; font-family: var(--font-display); }
.pm-card-r { display: flex; align-items: center; gap: 14px; }
.pm-exp { font-size: 13px; opacity: .6; }
.pm-remove { background: none; border: 0; color: var(--cream-dim); font-size: 22px; cursor: pointer; line-height: 1; }
.pm-remove:hover { color: #c0392b; }
.pm-empty { border: 1px solid var(--line); border-radius: 16px; padding: 34px; text-align: center; }
.pm-empty .btn { margin-top: 14px; }

/* ===== Auth form: force dark text on the light form panel ===== */
.auth-formside, .auth-card, .auth-card label, .auth-card span,
.auth-card .consent-row, .auth-card .consent-row span,
.auth-card .checkbox-row label, .auth-card p, .auth-card .field-label { color: #111111; }
.auth-card .sub, .auth-card .consent-row, .auth-card .consent-row span { color: rgba(17,17,17,.68); }
.auth-card .field-label { color: rgba(17,17,17,.6); }
.auth-card .form-link { color: #111111; font-weight: 600; }
.auth-card .consent-row { display: flex; gap: 10px; align-items: flex-start; text-align: left; font-size: 12px; line-height: 1.5; margin-bottom: 12px; cursor: pointer; }
.auth-card .consent-row input, .auth-card .checkbox-row input {
    appearance: none; -webkit-appearance: none;
    width: 18px; height: 18px; min-width: 18px; margin-top: 2px;
    border: 1.5px solid rgba(0,0,0,.3); border-radius: 5px; background: #fff; cursor: pointer; position: relative;
}
.auth-card .consent-row input:checked, .auth-card .checkbox-row input:checked { background: #111111; border-color: #111111; }
.auth-card .consent-row input:checked::after, .auth-card .checkbox-row input:checked::after {
    content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px;
    border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.auth-card .form-alert { color: #7a2a2a; }

/* ===== Category slider cards: light heading on dark image ===== */
.slide-shade { background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.12) 42%, rgba(0,0,0,.88) 100%) !important; }
.slide-top h5 { color: #FFFFFF !important; }
.slide-top p { color: rgba(255,255,255,.82) !important; }
.slide-btn { background: #EDEDED !important; color: #111111 !important; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.blog-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: rgba(0,0,0,.02); transition: transform .2s ease; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-media { aspect-ratio: 16/10; background: #ddd center/cover no-repeat; }
.blog-card-body { padding: 20px 22px 24px; }
.blog-card-date { font-size: 12px; color: var(--cream-faint); letter-spacing: .04em; }
.blog-card-body h3 { font-family: var(--font-display); font-size: 20px; margin: 8px 0 8px; }
.blog-card-body p { font-size: 13px; color: var(--cream-dim); line-height: 1.6; margin: 0; }
.post-body { line-height: 1.8; font-size: 16px; }
.post-body h2 { font-family: var(--font-display); font-size: 26px; margin: 30px 0 12px; }
.post-body p { margin: 0 0 18px; }
.post-body img { max-width: 100%; border-radius: 12px; }
.acct-hero-points { margin-top: 12px; font-size: 13px; opacity: .8; }
.acct-pts-n { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.co-points-row { border-top: 1px dashed var(--line); padding-top: 10px; margin-top: 4px; }

.stock-notify { margin-top: 18px; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; max-width: 460px; }
.stock-notify-msg { color: #2e7d32; font-size: 13px; margin: 0 0 6px; }

.announce-bar { background: #000; color: #EDEDED; text-align: center; font-size: 12.5px; letter-spacing: .04em; padding: 9px 16px; }
.announce-bar a { color: #EDEDED; text-decoration: underline; }
.foot-newsletter { display: flex; gap: 8px; margin-top: 14px; max-width: 360px; }
.foot-newsletter input { flex: 1; background: rgba(0,0,0,.04); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 11px 16px; font: inherit; font-size: 13px; color: var(--footer-text, #111); }
.foot-newsletter button { border: 0; border-radius: var(--radius-pill); padding: 11px 20px; background: var(--footer-text, #111); color: var(--footer-bg, #EDEDED); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; }
.foot-nl-msg { font-size: 12px; margin: 8px 0 0; opacity: .8; }
.wish-heart { position: absolute; top: 14px; right: 14px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.85); color: #999; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: color .15s, transform .15s; }
.wish-heart:hover { transform: scale(1.08); }
.wish-heart.is-saved { color: #c0392b; border-color: #c0392b; }
.wish-btn.is-saved { color: #c0392b; border-color: #c0392b; }
.saved-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 16px; }
.saved-card { border: 1px solid var(--line); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.saved-media { aspect-ratio: 1/1; background: #e7e3da center/contain no-repeat; border-radius: 10px; display: block; }
.saved-name { font-weight: 600; font-size: 14px; }
.saved-price { font-size: 13px; opacity: .7; display: block; margin-top: 2px; }
.saved-actions { display: flex; gap: 8px; }

.refill-optin { margin-top: 14px; }
.refill-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.refill-label { font-size: 13px; opacity: .8; }
.refill-select { padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--radius-pill); background: transparent; font: inherit; font-size: 13px; color: inherit; }
.refill-list { margin-bottom: 26px; }
.refill-h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .05em; opacity: .7; margin: 0 0 12px; }
.refill-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; margin-bottom: 8px; font-size: 14px; }

/* ===== Nav scrolled: dark glass + white text ===== */
.nav.scrolled { background: rgba(0,0,0,.85) !important; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.nav.scrolled a.nav-link, .nav.scrolled .nav-right a, .nav.scrolled .cart-btn,
.nav.scrolled .logo-mark, .nav.scrolled .mega > a, .nav.scrolled .nav-toggle span { color: #FFFFFF !important; opacity: 1; }
.nav.scrolled .nav-toggle span { background: #FFFFFF !important; }
.nav.scrolled .logo-mark svg, .nav.scrolled .logo-mark path { fill: #FFFFFF !important; }

/* ===== NON-INJECTABLES heading black + section spacing ===== */
h2.ni-heading, .sec-wrap .section h2.ni-heading { color: #000000 !important; margin-top: 8px; }
.sec-wrap .section:has(.ni-heading) { padding-top: 60px; padding-bottom: 60px; }
.ni-badge { margin-top: 6px; }
.ni-grid { margin-bottom: 8px; }

/* ===== Account page top spacing ===== */
.acct-hero-wrap { padding-top: 148px; }

/* ===== Solid dark button (admin login + light-panel CTAs) ===== */
.btn-dark { background: #111111; color: #FFFFFF; border: 1px solid #111111; }
.btn-dark:hover { background: #000000; color: #FFFFFF; transform: translateY(-1px); }
.btn-dark:disabled { opacity: .55; }
/* Dark outline that stays readable on light panels */
.auth-card .btn-outline, .pm-empty .btn-outline, .saved-actions .btn-outline,
.coa-page .btn-outline, .refill-row .btn-outline { border-color: #111111; color: #111111; background: transparent; }
.auth-card .btn-outline:hover, .pm-empty .btn-outline:hover, .saved-actions .btn-outline:hover,
.coa-page .btn-outline:hover, .refill-row .btn-outline:hover { background: #111111; color: #FFFFFF; }

/* Admin login polish */
.auth-card h1 { font-size: 30px; letter-spacing: -.02em; margin-bottom: 6px; }
.auth-card .btn-block { margin-top: 6px; letter-spacing: .08em; }

/* ============================================================
   PRODUCT PAGE — brand colour scheme (Bone / Glacier / Black)
   ============================================================ */
/* Gallery */
.pdp-main { background: linear-gradient(158deg, #EDEDED 0%, #C6D9DE 100%) !important; }
.pdp-main-wrap { background: #EDEDED; border-radius: var(--radius-card); }
.pdp-arrow { background: rgba(255,255,255,.9) !important; border-color: rgba(17,17,17,.12) !important; color: #111111 !important; }
.pdp-arrow:hover { background: #ABC8CF !important; color: #000000 !important; }
.pdp-thumbs img { border: 1px solid rgba(17,17,17,.12); }
.pdp-thumbs img.active { outline: 2px solid #ABC8CF; outline-offset: 1px; }

/* Info column */
.pdp-info h1 { color: #111111; }
.pdp-price { color: #000000; }
.pdp-price .was { color: rgba(17,17,17,.4); }
.pdp-tag { border-color: rgba(17,17,17,.16); color: rgba(17,17,17,.66); }
.pdp-tag:hover { border-color: #ABC8CF; color: #111111; }
.pdp-supply b { color: #000000; }
.pdp-guide-link { color: #111111; text-decoration-color: #ABC8CF; }

/* Buy-with / dosing / saved media placeholders -> soft glacier-bone */
.buywith-media, .dosing-card-media, .saved-media { background-color: #E4ECEE; }
.buywith-anchor { background: rgba(171,200,207,.14); border-color: rgba(17,17,17,.12); }
.buywith-item, .buywith-anchor { border-color: rgba(17,17,17,.12); }
.buywith-section .eyebrow, .related-section .eyebrow { color: #4a6a72; }

/* Product cards shown on the product page (related + recently viewed) */
.related-section .pcard { background: linear-gradient(160deg,#141414,#000000) !important; border-color: rgba(17,17,17,.12) !important; }

/* Refill opt-in + wishlist on product page */
.refill-select { border-color: rgba(17,17,17,.18); color: #111111; }
.wish-btn { border-color: rgba(17,17,17,.18); color: #111111; }
.wish-btn.is-saved { color: #c0392b; border-color: #c0392b; }

/* Out-of-stock notify */
.stock-notify { border-color: rgba(17,17,17,.12); background: rgba(171,200,207,.1); }

/* Reviews on product page */
.tst-card, .review-card { border-color: rgba(17,17,17,.1); }

/* ===== My Protocol — top spacing + clickable milestones ===== */
.myp-page { padding-top: 148px !important; }
.myp-hero { margin-bottom: 26px; }
a.myp-node { text-decoration: none; color: inherit; cursor: pointer; transition: transform .15s ease; }
a.myp-node:hover .myp-node-dot { border-color: #EDEDED; opacity: 1; transform: scale(1.08); }
a.myp-node:hover .myp-node-label { opacity: 1; }
a.myp-node .myp-node-dot { transition: transform .15s ease, border-color .15s ease, opacity .15s ease; }
.myp-upnext .btn-light { background: #EDEDED; color: #111111; font-weight: 600; }
.myp-upnext .btn-light:hover { background: #FFFFFF; }
@media (max-width: 809px){ .myp-page { padding-top: 120px !important; } }

/* ===== My Protocol — interactive milestones + video ===== */
.dosing-page, .ddetail-page, .myp-page { padding-top: 186px !important; }
@media (max-width: 809px){ .dosing-page, .ddetail-page, .myp-page { padding-top: 120px !important; } }
.myp-node { background: none; border: 0; font: inherit; }
.myp-node.sel .myp-node-dot { outline: 2px solid #EDEDED; outline-offset: 2px; }
.myp-steps { position: relative; }
.myp-step-panel { display: none; }
.myp-step-panel.active { display: flex; }
.myp-step-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.myp-video-modal { position: fixed; inset: 0; z-index: 1200; display: none; align-items: center; justify-content: center; padding: 24px; }
.myp-video-modal.open { display: flex; }
.myp-video-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(4px); }
.myp-video-inner { position: relative; z-index: 2; max-width: 460px; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.myp-video-inner video { width: 100%; border-radius: 18px; background: #000; max-height: 78vh; }
.myp-video-close { position: absolute; top: -42px; right: 0; background: none; border: 0; color: #EDEDED; font-size: 13px; letter-spacing: .1em; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.myp-video-cap { color: rgba(237,237,237,.6); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }

/* ===== Guides page — brand placeholder + spacing ===== */
.guides-page { padding-top: 156px !important; }
.guides-page > .wrap > .eyebrow:first-child { display: inline-block; margin-bottom: 14px; }
.guides-tabs { margin-top: 24px !important; }
.guide-card-img-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: linear-gradient(158deg, #EDEDED 0%, #C6D9DE 100%) !important; color: #2b4a52; position: relative; }
.guide-card-img-empty svg { width: 54px; height: 54px; opacity: .85; }
.guide-card-img-empty .guide-card-num { font-family: var(--font-display); font-size: 60px; font-weight: 700; color: rgba(43,74,82,.22); line-height: 1; }
@media (max-width: 809px){ .guides-page { padding-top: 120px !important; } }

/* ===== Guides — 4 per row + hover effects ===== */
.guides-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 22px !important; }
.guide-card { flex: none !important; transition: transform .22s ease, box-shadow .22s ease; }
.guide-card:hover { transform: translateY(-6px); box-shadow: 0 18px 42px rgba(0,0,0,.15); }
.guide-card-img, .guide-card-img-empty { transition: transform .3s ease; }
.guide-card:hover .guide-card-img { transform: scale(1.05); }
.guide-card:hover .guide-card-img-empty svg { transform: scale(1.12); }
.guide-card:hover .guide-card-body h4 { color: #2b4a52; }
.guide-card-body h4 { transition: color .2s ease; }
@media (max-width: 1100px){ .guides-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 620px){ .guides-grid { grid-template-columns: 1fr !important; } }

/* ===== B2B / Wholesale product pricing ===== */
.pdp-b2b-badge { display:inline-block; background:#111111; color:#fff; font-size:10px; letter-spacing:.12em; text-transform:uppercase; padding:5px 11px; border-radius:999px; margin-bottom:8px; }
.pdp-b2b-unit { font-size:14px; opacity:.55; font-weight:400; }
.pdp-b2b-tiers { border:1px solid rgba(17,17,17,.14); border-radius:14px; padding:14px 16px; margin:14px 0 4px; max-width:320px; }
.pdp-b2b-tier-head { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:rgba(17,17,17,.5); margin-bottom:8px; }
.pdp-b2b-tier { display:flex; justify-content:space-between; padding:5px 0; font-size:14px; border-top:1px solid rgba(17,17,17,.07); }
.pdp-b2b-tier:first-of-type { border-top:0; }
.pdp-b2b-tier b { font-family:var(--font-display); }

/* ===== Cart drawer discount ===== */
.drawer-disc { display:flex; gap:8px; margin-bottom:12px; }
.drawer-disc-input { flex:1; padding:10px 12px; border:1px solid rgba(255,255,255,.2); background:transparent; color:inherit; border-radius:10px; font-size:13px; }
.drawer-disc-input::placeholder { color:rgba(255,255,255,.4); }
.drawer-disc-msg { color:#ff9b9b; font-size:12px; min-height:14px; margin-bottom:6px; }
.drawer-foot .row.disc { color:#8fe0a6; font-size:13px; }
.drawer-foot .row.row-total { font-weight:600; border-top:1px solid rgba(255,255,255,.14); padding-top:8px; margin-top:4px; }

/* ===== Fixes: drawer discount visible, prices, auth buttons ===== */
.drawer .drawer-disc-input { border:1px solid rgba(17,17,17,.22) !important; color:#111111 !important; background:#fff !important; }
.drawer .drawer-disc-input::placeholder { color:rgba(17,17,17,.45) !important; }
.drawer .drawer-disc-msg { color:#c0392b !important; }
.drawer .drawer-foot .row.disc { color:#2e7d32 !important; }
.drawer .cart-line .info .price { color:#111111 !important; font-weight:600; }
.pdp-price { color:#000000 !important; font-weight:700; }
.pdp-price .was { color:rgba(17,17,17,.4) !important; }
.auth-card .btn-dark, .auth-formside .btn-dark { background:#111111 !important; color:#fff !important; border:1px solid #111111 !important; }
.auth-card .btn-dark:hover { background:#000 !important; }

/* ===== CMS pages (legal/info) — brand + spacing ===== */
.cms-page { padding-top: 150px; padding-bottom: 80px; }
@media (max-width: 809px){ .cms-page { padding-top: 116px; } }
.cms-title { font-size: 42px; letter-spacing: -.02em; margin: 12px 0 26px; }
.cms-body { color: rgba(17,17,17,.78); font-size: 16px; line-height: 1.75; }
.cms-body h3 { font-family: var(--font-display); font-size: 20px; color: #111; margin: 30px 0 10px; }
.cms-body p { margin: 0 0 16px; }
.cms-body a { color: #111; text-decoration: underline; text-decoration-color: #ABC8CF; }
.cms-body ul, .cms-body ol { margin: 0 0 16px 20px; }
.cms-body li { margin-bottom: 8px; }

/* ===== Consistent, tighter top spacing across sub-pages ===== */
.cms-page, .guides-page, .consult-page, .wholesale-page, .dosing-page, .ddetail-page,
.faq-page, .coa-page, .blog-page, .post-page, .collection-page, .account-page {
  padding-top: 126px !important;
}
@media (max-width: 809px){
  .cms-page, .guides-page, .consult-page, .wholesale-page, .dosing-page, .ddetail-page,
  .faq-page, .coa-page, .blog-page, .post-page, .collection-page, .account-page {
    padding-top: 104px !important;
  }
}

/* ===== Admin: wholesale tier builder ===== */
.ws-card { border:1px solid rgba(17,17,17,.12); border-radius:14px; padding:20px; margin:6px 0 18px; background:#fafafa; }
.ws-card-head { margin-bottom:14px; }
.ws-card-title { font-weight:600; font-size:15px; color:#111; }
.ws-card-sub { font-size:12px; color:rgba(17,17,17,.55); margin-top:3px; max-width:560px; }
.ws-tiers { display:flex; flex-direction:column; gap:10px; }
.ws-tier { display:grid; grid-template-columns:1fr 1fr 40px; gap:12px; align-items:center; }
.ws-tier-head { font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:rgba(17,17,17,.5); }
.ws-tier-head span:last-child { }
.ws-price-wrap { position:relative; display:flex; align-items:center; }
.ws-cur { position:absolute; left:12px; color:rgba(17,17,17,.5); font-size:14px; pointer-events:none; }
.ws-price-wrap .a-input { padding-left:26px; }
.ws-remove { width:34px; height:34px; border-radius:8px; border:1px solid rgba(17,17,17,.16); background:#fff; color:#c0392b; font-size:18px; line-height:1; cursor:pointer; transition:all .15s; }
.ws-remove:hover { background:#c0392b; color:#fff; border-color:#c0392b; }
.ws-add { margin-top:14px; background:#111; color:#fff; border:0; border-radius:999px; padding:10px 20px; font-size:12px; font-weight:600; letter-spacing:.04em; cursor:pointer; transition:opacity .15s; }
.ws-add:hover { opacity:.88; }

/* ===== Drawer discount box redesign + price + eyebrow spacing ===== */
.drawer .drawer-disc { display:flex; gap:0; margin-bottom:16px; border:1px solid rgba(17,17,17,.16); border-radius:12px; overflow:hidden; background:#fff; }
.drawer .drawer-disc-input { flex:1; border:0 !important; background:transparent !important; padding:13px 14px !important; font-size:13px; color:#111 !important; }
.drawer .drawer-disc-input:focus { outline:none; }
.drawer .drawer-disc [data-disc-apply], .drawer .drawer-disc [data-disc-clear] { border:0 !important; border-radius:0 !important; background:#111 !important; color:#fff !important; padding:0 20px !important; font-size:11px; letter-spacing:.06em; font-weight:600; text-transform:uppercase; cursor:pointer; }
.drawer .drawer-disc [data-disc-clear] { background:#666 !important; }
.drawer .cart-line .price, .drawer .cart-line span.price { color:#111111 !important; font-weight:700; }
.drawer .cart-line .info .price { color:rgba(17,17,17,.55) !important; font-weight:400; }
.drawer-foot .row.row-total { font-weight:700; color:#111 !important; }

/* Eyebrow -> title spacing tighter */
.eyebrow { margin-bottom:10px !important; }
.cms-title { margin-top:8px !important; }
.cms-page .wrap > .eyebrow { display:inline-block; margin-bottom:8px !important; }

/* ============================================================
   LEVEL 1 — images show fully (no crop) + admin 5-per-row
   ============================================================ */
/* Product gallery: contain, no crop, brand padding */
.pdp-main {
  width: 100% !important;
  aspect-ratio: 1 !important;
  object-fit: contain !important;
  border-radius: var(--radius-card) !important;
  background: linear-gradient(158deg, #EDEDED 0%, #C6D9DE 100%) !important;
  padding: 20px !important;
}
.pdp-thumbs img { object-fit: contain !important; background:#EDEDED; padding:6px; }

/* Card vial images: always contain */
.pcard-media img, .ccard-media img, .rc-media img { object-fit: contain !important; }
.buywith-media, .dosing-card-media { background-size: contain !important; }

/* Admin products grid: 5 per row + non-cropping images */
.prod-grid { grid-template-columns: repeat(5, 1fr) !important; gap: 16px !important; }
@media (max-width: 1400px){ .prod-grid { grid-template-columns: repeat(4, 1fr) !important; } }
@media (max-width: 1100px){ .prod-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 809px){ .prod-grid { grid-template-columns: repeat(2, 1fr) !important; } }
.prod-media { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; background: #f4f5f7; overflow: hidden; }
.prod-media img { width: 100%; height: 100%; object-fit: contain !important; padding: 10px; }

/* ============================================================
   LEVEL 2 — product-page section colours -> brand
   ============================================================ */
/* Dark sections: pure brand black + clearly visible headings */
.guide-section, .video-section { background: #000000 !important; }
.guide-section h2, .video-section h2 { color: #FFFFFF !important; opacity: 1 !important; -webkit-text-fill-color: #FFFFFF !important; }
.guide-section .eyebrow, .video-section .eyebrow { color: rgba(255,255,255,.66) !important; border-color: rgba(255,255,255,.3) !important; }
.guide-section .lead, .video-section .lead { color: rgba(255,255,255,.72) !important; }
.guide-section .slider-arrow, .video-section .slider-arrow { border-color: rgba(255,255,255,.32) !important; color: #FFFFFF !important; background: transparent !important; }
.guide-section .slider-arrow:hover, .video-section .slider-arrow:hover { background: #ABC8CF !important; color: #000 !important; border-color: #ABC8CF !important; }
.guide-section .guide-step, .guide-section .guide-card-body h4 { color: #111 !important; }
.video-section .slider-track video, .video-section .vg-card, .video-section .vguide-card { background: #141414 !important; border-radius: 16px; }

/* Light sections (Complete the protocol + Synergistic): brand ink */
.related-section h2, .buywith-section .buywith-h2, .buywith-section h2 { color: #111111 !important; }
.related-section .eyebrow, .buywith-section .eyebrow { color: #4a6a72 !important; border-color: rgba(17,17,17,.16) !important; }
.related-section .slider-track .pcard { background: linear-gradient(160deg,#141414,#000000) !important; }
.buywith-media { background-color: #E4ECEE !important; }

/* ============================================================
   LEVEL 3 — Step-by-step guide: 2.7 peek + hover-reveal overlay
   ============================================================ */
.guide-track { scroll-snap-type: x mandatory; }
.guide-section .guide-card { flex: 0 0 calc((100% - 2 * 24px) / 2.7) !important; scroll-snap-align: start; position: relative !important; aspect-ratio: 3 / 4.1; border-radius: 22px; overflow: hidden; cursor: pointer; background: #000; }
@media (max-width: 809px){ .guide-section .guide-card { flex-basis: 78% !important; aspect-ratio: 3/4; } }
.guide-section .guide-card-img, .guide-section .guide-card-img-empty { position: absolute !important; inset: 0 !important; height: 100% !important; width: 100%; transition: transform .5s ease; }
.guide-section .guide-card:hover .guide-card-img { transform: scale(1.06); }
.guide-section .guide-card-body {
  position: absolute !important; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 22px 24px !important;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.7) 55%, transparent 100%) !important;
  transform: translateY(calc(100% - 92px));
  transition: transform .42s cubic-bezier(.4,0,.2,1);
}
.guide-section .guide-card:hover .guide-card-body,
.guide-section .guide-card.open .guide-card-body { transform: translateY(0); }
.guide-section .guide-card-body .guide-step { color: rgba(255,255,255,.65) !important; }
.guide-section .guide-card-body h4 { color: #FFFFFF !important; margin: 6px 0 10px !important; }
.guide-section .guide-card-body p { color: rgba(255,255,255,.82) !important; font-size: 13px !important; opacity: 0; transition: opacity .3s ease .1s; }
.guide-section .guide-card:hover .guide-card-body p,
.guide-section .guide-card.open .guide-card-body p { opacity: 1; }
.guide-section .guide-card::after { content: "+"; position: absolute; top: 16px; right: 18px; z-index: 3; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; backdrop-filter: blur(4px); transition: transform .3s ease, background .3s ease; }
.guide-section .guide-card:hover::after, .guide-section .guide-card.open::after { transform: rotate(45deg); background: #ABC8CF; color: #000; }

/* ============================================================
   LEVEL 4 — Guide icon-point boxes
   ============================================================ */
.guide-points { margin-top: 40px; }
.guide-points-h { font-family: var(--font-display); font-size: 20px; color: #FFFFFF; margin: 0 0 18px; }
.guide-points-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 1100px){ .guide-points-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 809px){ .guide-points-grid { grid-template-columns: 1fr; } }
.guide-point { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 16px 18px; }
.guide-point-ico { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 10px; background: rgba(171,200,207,.16); color: #ABC8CF; display: flex; align-items: center; justify-content: center; }
.guide-point-ico svg { width: 20px; height: 20px; }
.guide-point-title { font-weight: 600; font-size: 13px; color: #FFFFFF; margin-bottom: 3px; }
.guide-point-text { font-size: 12.5px; color: rgba(255,255,255,.62); line-height: 1.5; }

/* LEVEL 7 — video guide cards brand polish */
.video-section .slider-track > * { border-radius: 18px; overflow: hidden; }
.video-section video { border-radius: 18px; background: #141414; width: 100%; display: block; }

/* Guides page — custom content sections */
.guides-extra { max-width: 900px; margin: 56px auto 0; }
.guides-extra-h { font-family: var(--font-display); font-size: 26px; color: #111; margin: 0 0 18px; letter-spacing: -.01em; }
.guides-extra-body { color: rgba(17,17,17,.78); font-size: 16px; line-height: 1.75; }
.guides-extra-body h3 { font-size: 19px; margin: 24px 0 8px; }
.guides-extra-body p { margin: 0 0 14px; }
.guides-extra-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 809px){ .guides-extra-points { grid-template-columns: 1fr; } }
.guides-extra-point { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid rgba(17,17,17,.1); border-radius: 14px; padding: 16px 18px; }
.gep-ico { width: 34px; height: 34px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 9px; background: rgba(171,200,207,.25); color: #2b4a52; }
.gep-ico svg { width: 18px; height: 18px; }
.gep-title { font-weight: 600; font-size: 14px; color: #111; }
.gep-text { font-size: 13px; color: rgba(17,17,17,.6); margin-top: 3px; }

/* ===== Admin product multi-select picker ===== */
.pe-picker { display:grid; grid-template-columns:repeat(2, 1fr); gap:10px; max-height:360px; overflow-y:auto; padding:12px; border:1px solid #e5e7eb; border-radius:12px; background:#fbfbfc; }
@media (max-width:700px){ .pe-picker { grid-template-columns:1fr; } }
.pe-pick { position:relative; display:flex !important; align-items:center; gap:12px; padding:10px 44px 10px 10px; border:1px solid #e5e7eb; border-radius:12px; background:#fff; cursor:pointer; transition:all .12s; }
.pe-pick:hover { border-color:#c7cdd6; }
.pe-pick.sel { border-color:#111; box-shadow:0 0 0 1.5px #111 inset; }
.pe-pick input { position:absolute; top:50%; right:12px; transform:translateY(-50%); margin:0; width:20px; height:20px; cursor:pointer; accent-color:#111; z-index:2; }
.pe-pick-img { position:relative; width:52px; height:52px; border-radius:10px; background:#f0f1f3 center/contain no-repeat; flex-shrink:0; border:1px solid rgba(17,17,17,.1); }
.pe-pick-img:not([style])::after, .pe-pick-img[style=""]::after { content:""; position:absolute; inset:0; background:center/22px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23b8bcc4' stroke-width='1.6'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E"); }
.pe-pick-t { font-size:13px; color:#111; line-height:1.35; font-weight:500; overflow:hidden; }

/* ===== PDP add-to-cart + heart-only wish (one line) ===== */
.pdp-cart-row { display:flex; gap:12px; align-items:stretch; }
.pdp-cart-row .pdp-add-btn { flex:1; }
.pdp-cart-row .wish-btn { flex:0 0 auto; width:54px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(17,17,17,.18); border-radius:999px; background:transparent; color:#111; cursor:pointer; padding:0; transition:all .15s; }
.pdp-cart-row .wish-btn:hover { border-color:#c0392b; color:#c0392b; }
.pdp-cart-row .wish-btn.is-saved { color:#c0392b; border-color:#c0392b; background:rgba(192,57,43,.06); }
.pdp-cart-row .wish-btn svg { display:block; }

/* ===== Header wishlist icon ===== */
.wishlist-icon-btn { display:inline-flex; align-items:center; justify-content:center; color:inherit; text-decoration:none; }
.wishlist-icon-btn svg { width:22px; height:22px; }
.wishlist-icon-btn:hover { color:#c0392b; }

/* L3 — testimonials spacing + polish */
.tst-grid { grid-template-columns:repeat(3, 1fr) !important; gap:18px; }
@media (max-width:1000px){ .tst-grid { grid-template-columns:repeat(2, 1fr) !important; } }
@media (max-width:640px){ .tst-grid { grid-template-columns:1fr !important; } }
.tst-card { background:#fff; border:1px solid rgba(17,17,17,.1); border-radius:18px; padding:26px; display:flex; flex-direction:column; }
.tst-video { width:100%; border-radius:12px; margin-bottom:16px; background:#000; }
.tst-stars { color:#ABC8CF; letter-spacing:2px; margin-bottom:12px; font-size:15px; }
.tst-stars-off { color:rgba(17,17,17,.15); }
.tst-title { font-weight:600; font-size:15px; margin-bottom:8px; color:#111; }
.tst-body { flex:1; }
.tst-meta { display:flex; justify-content:space-between; align-items:center; margin-top:16px; padding-top:14px; border-top:1px solid rgba(17,17,17,.08); font-size:12px; }
.tst-name { font-weight:600; color:#111; }
.tst-empty { color:var(--cream-dim); text-align:center; padding:40px 0; }

/* L4 — product picker dropdown */
.pe-dropdown { position:relative; }
.pe-dd-trigger { width:100%; display:flex; align-items:center; justify-content:space-between; gap:10px; padding:11px 14px; border:1px solid #e5e7eb; border-radius:12px; background:#fff; cursor:pointer; font-size:13px; color:#111; }
.pe-dd-trigger:hover { border-color:#c7cdd6; }
.pe-dd-count { color:#111; }
.pe-dropdown.open .pe-dd-trigger svg { transform:rotate(180deg); }
.pe-dd-trigger svg { transition:transform .2s; flex-shrink:0; }
.pe-dd-panel { display:none; position:absolute; z-index:30; left:0; right:0; top:calc(100% + 6px); background:#fff; border:1px solid #e5e7eb; border-radius:12px; box-shadow:0 12px 32px rgba(16,24,40,.14); padding:8px; }
.pe-dropdown.open .pe-dd-panel { display:block; }
.pe-dd-panel .pe-picker { border:0; background:transparent; padding:4px; max-height:300px; }

/* L5 — rich FAQ answer content (reference-style callouts/warnings/bullets) */
.faq-rich { font-size:14px; line-height:1.7; }
.faq-rich h4 { font-family:var(--font-display); font-size:19px; font-weight:600; margin:20px 0 10px; color:inherit; }
.faq-rich h4:first-child { margin-top:0; }
.faq-rich p { margin:0 0 14px; }
.faq-rich ul, .faq-rich ol { margin:0 0 14px 4px; padding:0; list-style:none; }
.faq-rich ul li, .faq-rich ol li { position:relative; padding-left:18px; margin-bottom:8px; }
.faq-rich ul li::before { content:"•"; position:absolute; left:0; color:#ABC8CF; font-weight:700; }
.faq-rich .faq-callout { background:rgba(255,255,255,.05); border-left:4px solid #ABC8CF; border-radius:10px; padding:16px 18px; margin:0 0 16px; }
.faq-rich .faq-callout .faq-callout-title, .faq-rich .faq-callout strong:first-child { font-weight:600; color:#ABC8CF; display:block; margin-bottom:6px; }
.faq-rich .faq-warn { background:rgba(192,57,43,.08); border-left:4px solid #c0392b; border-radius:10px; padding:16px 18px; margin:16px 0; }
.faq-rich .faq-warn .faq-warn-title, .faq-rich .faq-warn strong { color:#e57373; font-weight:600; }
/* light-context (CMS faq page) */
.faqpage-a .faq-rich .faq-callout, .cms-page .faq-rich .faq-callout { background:rgba(171,200,207,.14); }

/* L6 — sticky add-to-cart bar */
.pdp-sticky { position:fixed; left:0; right:0; bottom:0; z-index:60; padding:12px 0; background:rgba(17,17,17,.0); transform:translateY(120%); transition:transform .35s cubic-bezier(.4,0,.2,1); pointer-events:none; }
.pdp-sticky.show { transform:translateY(0); pointer-events:auto; }
.pdp-sticky-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; background:#111111; border-radius:999px; padding:10px 12px 10px 14px; box-shadow:0 12px 40px rgba(0,0,0,.28); }
.pdp-sticky-left { display:flex; align-items:center; gap:14px; min-width:0; }
.pdp-sticky-img { width:46px; height:46px; border-radius:50%; background:#EDEDED center/contain no-repeat; flex-shrink:0; }
.pdp-sticky-info { min-width:0; }
.pdp-sticky-name { color:#fff; font-weight:600; font-size:14px; text-transform:uppercase; letter-spacing:.03em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.pdp-sticky-tags { display:flex; gap:6px; margin-top:5px; flex-wrap:wrap; }
.pdp-sticky-tag { font-size:10px; color:rgba(255,255,255,.75); border:1px solid rgba(255,255,255,.28); border-radius:999px; padding:2px 9px; white-space:nowrap; }
.pdp-sticky-right { display:flex; align-items:center; gap:16px; flex-shrink:0; }
.pdp-sticky-price { color:#fff; font-weight:600; font-size:16px; }
.pdp-sticky-btn { white-space:nowrap; }
@media (max-width:640px){
  .pdp-sticky-tags { display:none; }
  .pdp-sticky-name { font-size:13px; max-width:120px; }
  .pdp-sticky-price { font-size:14px; }
  .pdp-sticky-inner { padding:8px 8px 8px 10px; }
}

/* ============================================================
   FIX PACK — 22 Aug 2026
   ============================================================ */

/* --- Section headings: consistent breathing room under the h2. --------
   Requested rule. .slider-head h2 is excluded because those headings sit
   in a flex row next to the prev/next arrows and a bottom margin there
   would knock the arrows out of alignment. */
.section h2 { margin: 0 0 14px !important; }
.section .slider-head h2 { margin-bottom: 0 !important; }

/* --- "Our standards" spacing ----------------------------------------
   The eyebrow, heading, grid and footnote were bunched together because
   only the heading carried any margin. */
.std-eyebrow { margin-bottom: 10px; }
.std-heading { margin: 0 0 24px; }
.std-grid { margin-top: 4px; row-gap: 18px; }
.std-item { padding: 26px 22px 24px; }
.std-item-title { margin-bottom: 10px; }
.std-item-text { line-height: 1.55; }
.std-foot { margin-top: 30px; padding-top: 22px; }

/* --- "What we cover" cards ------------------------------------------
   A card with no image used to render as a flat grey block. It now shows
   a soft placeholder so an empty slot reads as "no image yet" instead of
   looking broken. */
.cg-card-media { aspect-ratio: 4/3; background: #d8d4cc center/cover no-repeat; }
.cg-card-media.is-empty {
  background: linear-gradient(135deg, #e6e2da 0%, #d5d0c6 100%);
  display: flex; align-items: center; justify-content: center;
}
.cg-card-media.is-empty::after {
  content: ""; width: 34px; height: 34px; border-radius: 8px;
  border: 2px solid rgba(17,17,17,.16);
}

/* --- Product page: full-width Add to cart ---------------------------- */
.pdp-buy-row { width: 100%; }
.pdp-cart-row { display: flex; gap: 12px; align-items: stretch; width: 100%; flex: 1 1 100%; }
.pdp-cart-row .pdp-add-btn { flex: 1 1 auto; width: 100%; justify-content: center; text-align: center; }

/* --- Product page: provider-review accordion ------------------------- */
.pdp-rx-faq { max-width: none; }
.pdp-rx-faq .faq-q { width: 100%; }

/* --- Mega menu: hover bridge + closable ------------------------------
   The panel sits 10px below the trigger. Without a bridge that gap is
   "not hovering anything", so the menu closed the moment the pointer
   left the link. This invisible strip spans the gap. */
.mega-panel::before {
  content: ""; position: absolute; left: 0; right: 0;
  top: -16px; height: 16px;
}
/* Keep the trigger itself hoverable while the panel is open. */
.mega { position: relative; }
.mega .nav-link { cursor: pointer; }

/* The .mega-open class is set by JS (click toggle, outside-click and
   Escape close). Hover still works; this just adds the click path. */
.mega.mega-open > .mega-panel { display: flex;margin-top: 35px; }
.mega.mega-open > .mega-panel.mega-cols { display: block; }

/* THE reason click-to-close did nothing before.
   .mega:hover .mega-panel { display:flex } is still matching while you
   click, because the pointer is sitting on the trigger. So closing by
   click was instantly undone by the hover rule. JS now adds .mega-closed
   on a close-click and removes it on mouseleave, and this rule beats the
   hover rule. */
.mega.mega-closed > .mega-panel,
.mega.mega-closed:hover > .mega-panel { display: none !important; }

/* Panel is a light surface now, so its links must be dark. */
.mega-panel a { color: #111111; }
.mega-panel a:hover { background: rgba(17,17,17,.06); color: #111111; }

/* "View all" row inside the plain dropdown, so the parent page stays
   reachable now that its link toggles instead of navigating. */
.mega-panel .mega-viewall {
  margin-top: 6px; padding-top: 10px;
  border-top: 1px solid rgba(17,17,17,.10);
  font-size: 13px; opacity: .75;
}
.mega-panel .mega-viewall span { margin-left: 4px; }

/* --- My Protocol: goal image from Admin > Protocols ------------------- */
.myp-reco-img {
  width: 54px; height: 54px; object-fit: cover;
  border-radius: 12px; display: block; flex: 0 0 54px;
}

/* ===== Orders admin + confirmation (user) ===== */
.admin-sub { color: #6b7280; font-size: 13px; margin-top: 4px; }
.admin-topbar-actions { display: flex; gap: 10px; }
.ord-export { display: inline-flex; align-items: center; gap: 7px; }

.ord-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.ord-tab { padding: 10px 18px; border-radius: 99px; background: #eef0f3; color: #4b5563; font-size: 13px; font-weight: 500; white-space: nowrap; transition: background .16s, color .16s; }
.ord-tab:hover { background: #e5e7eb; }
.ord-tab.active { background: linear-gradient(135deg,#7c3aed,#a855f7); color: #fff; }

.ord-search { display: flex; align-items: center; gap: 10px; background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 12px; padding: 10px 16px; margin-bottom: 18px; color: #6b7280; }
.ord-search input { flex: 1; border: 0; background: transparent; outline: none; font-size: 14px; color: #1f2937; font-family: var(--font); }
.ord-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ord-table td, .ord-table th { white-space: nowrap; }
.ta-r { text-align: right; }
.ord-id { color: #7c3aed; font-weight: 600; }
.ord-id:hover { text-decoration: underline; }
.ord-total { font-weight: 600; }
.ord-date { color: #6b7280; }
.ord-cust { display: flex; align-items: center; gap: 10px; }
.ord-avatar { width: 34px; height: 34px; border-radius: 50%; background: #ede9fe; color: #7c3aed; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ord-cust-name { font-weight: 500; }
.ord-cust-mail { font-size: 12px; color: #9ca3af; }
.ord-view { display: inline-flex; align-items: center; gap: 6px; }
.admin .badge.shipped { background: #dbeafe; color: #1e40af; }
.admin .badge.approved { background: #dcfce7; color: #166534; }
.admin .badge.rejected { background: #fee2e2; color: #b91c1c; }

.od-back { display: inline-block; color: #6b7280; font-size: 14px; margin-bottom: 16px; }
.od-back:hover { color: #111827; }
.od-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.od-head h1 { font-size: 26px; margin: 0; }
.od-head-status { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6b7280; }
.od-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block; }
.od-grid { display: grid; grid-template-columns: 1fr 360px; gap: 20px; align-items: start; }
.od-card { padding: 20px 22px; }
.od-card-h { font-size: 14px; font-weight: 600; color: #111827; margin-bottom: 16px; }
.od-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid #f3f4f6; }
.od-item:last-child { border-bottom: 0; }
.od-item-img { width: 52px; height: 52px; border-radius: 10px; background: #f3f4f6 center/cover no-repeat; flex-shrink: 0; }
.od-item-info { flex: 1; min-width: 0; }
.od-item-title { font-weight: 500; color: #111827; }
.od-item-meta { font-size: 12.5px; color: #9ca3af; margin-top: 3px; }
.od-item-total { font-weight: 600; color: #111827; }
.od-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.od-field-row label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: #6b7280; }
.od-track-form .btn { margin-top: 4px; }
.od-timeline { display: flex; flex-direction: column; gap: 16px; }
.od-tl-item { display: flex; gap: 12px; }
.od-tl-dot { width: 10px; height: 10px; border-radius: 50%; background: #7c3aed; margin-top: 5px; flex-shrink: 0; }
.od-tl-title { font-size: 14px; color: #111827; }
.od-info { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; font-size: 13.5px; border-bottom: 1px solid #f6f6f7; }
.od-info:last-child { border-bottom: 0; }
.od-info-l { color: #6b7280; flex-shrink: 0; }
.od-info-v { color: #111827; text-align: right; }
.od-neg { color: #16a34a; }
.od-total-row { font-weight: 700; font-size: 16px; margin-top: 4px; border-top: 1px solid #e5e7eb; padding-top: 12px; }
.od-total-row .od-info-l { color: #111827; }
@media (max-width: 900px){ .od-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px){ .od-field-row { grid-template-columns: 1fr; } }

.confirm-page { padding-top: 150px; }
.confirm-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.confirm-check { width: 66px; height: 66px; border-radius: 50%; background: #000; color: #EDEDED; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.confirm-check svg { width: 30px; height: 30px; }
.confirm-head h1 { margin: 0 0 12px; }
.confirm-head .lead { margin: 0 auto; }
.confirm-card { max-width: 620px; margin: 0 auto 26px; background: rgba(0,0,0,.03); border: 1px solid var(--line); border-radius: 22px; padding: 26px 28px; }
.confirm-card-top { display: flex; flex-wrap: wrap; gap: 20px 40px; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.confirm-card-top > div { display: flex; flex-direction: column; gap: 4px; }
.confirm-k { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-faint); }
.confirm-v { font-size: 15px; font-weight: 600; color: var(--cream); }
.confirm-items { display: flex; flex-direction: column; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.confirm-item { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.confirm-item-name { color: var(--cream); }
.confirm-qty { color: var(--cream-dim); }
.confirm-item-price { font-weight: 600; color: var(--cream); white-space: nowrap; }
.confirm-totals { display: flex; flex-direction: column; gap: 9px; }
.confirm-trow { display: flex; justify-content: space-between; font-size: 14px; color: var(--cream-dim); }
.confirm-grand { font-size: 17px; font-weight: 700; color: var(--cream); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px; }
.confirm-ship { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.confirm-ship-addr { font-size: 14px; color: var(--cream); margin-top: 6px; line-height: 1.6; }
.confirm-btn { display: block; width: max-content; margin: 0 auto; }
@media (max-width: 560px){ .confirm-page { padding-top: 120px; } .confirm-card { padding: 22px 20px; } }

/* ===== Settings categories + admin scroll (user) ===== */
.set-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; position: sticky; top: 0; background: #f6f6f7; padding: 6px 0 10px; z-index: 20; }
.set-tab { padding: 10px 20px; border-radius: 99px; border: 1px solid #e5e7eb; background: #fff; color: #4b5563; font-size: 13.5px; font-weight: 500; cursor: pointer; white-space: nowrap; transition: background .15s, color .15s, border-color .15s; font-family: var(--font); }
.set-tab:hover { background: #f3f4f6; }
.set-tab.active { background: linear-gradient(135deg,#7c3aed,#a855f7); color: #fff; border-color: transparent; }
.settings-form .settings-card { display: none; }
.settings-form[data-active="general"] .settings-card[data-cat="general"],
.settings-form[data-active="checkout"] .settings-card[data-cat="checkout"],
.settings-form[data-active="payments"] .settings-card[data-cat="payments"],
.settings-form[data-active="marketing"] .settings-card[data-cat="marketing"],
.settings-form[data-active="content"] .settings-card[data-cat="content"],
.settings-form[data-active="regions"] .settings-card[data-cat="regions"] { display: block; }
.set-savebar { position: sticky; bottom: 0; background: rgba(246,246,247,.9); backdrop-filter: blur(6px); border-top: 1px solid #e5e7eb; padding: 14px 0; margin-top: 8px; display: flex; justify-content: flex-end; z-index: 20; }
.set-savebar .btn { min-width: 160px; }
@media (max-width: 809px){ .set-tabs { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; } .set-tabs::-webkit-scrollbar { display: none; } }

.admin-side::-webkit-scrollbar { width: 8px; }
.admin-side::-webkit-scrollbar-track { background: transparent; }
.admin-side::-webkit-scrollbar-thumb { background: rgba(242,241,236,.16); border-radius: 99px; }
.admin-side::-webkit-scrollbar-thumb:hover { background: rgba(242,241,236,.28); }
.admin-side { scrollbar-width: thin; scrollbar-color: rgba(242,241,236,.18) transparent; overscroll-behavior: contain; }
.admin-main { min-height: 100vh; }
.admin-main::-webkit-scrollbar { width: 10px; }
.admin-main::-webkit-scrollbar-track { background: transparent; }
.admin-main::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 99px; border: 2px solid #f6f6f7; }
.admin-main::-webkit-scrollbar-thumb:hover { background: #b8bdc6; }
@media (min-width: 810px){
  .admin { height: 100vh; overflow: hidden; }
  .admin-main { height: 100vh; overflow-y: auto; }
}

/* ===== Color picker fields + product-edit polish (user) ===== */
.color-field { display: flex; align-items: center; gap: 10px; }
.color-field .a-input { flex: 1; min-width: 0; }
.color-swatch { width: 46px; height: 46px; padding: 0; border: 1px solid #d1d5db; border-radius: 10px; background: none; cursor: pointer; flex-shrink: 0; }
.color-swatch::-webkit-color-swatch-wrapper { padding: 3px; }
.color-swatch::-webkit-color-swatch { border: none; border-radius: 7px; }
.color-swatch::-moz-color-swatch { border: none; border-radius: 7px; }
.pe-card > h3 { padding-left: 12px; border-left: 3px solid #7c3aed; }
.pe-wrap { max-width: 960px; margin: 0 auto; }
@media (max-width: 809px){
  .pe-topbar { flex-wrap: wrap; }
  .pe-card { padding: 18px 16px; }
  .color-swatch { width: 42px; height: 42px; }
}

/* ===== Products list polish (user) ===== */
.prod-toolbar { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px 16px; margin-bottom: 18px; box-shadow: 0 1px 2px rgba(16,24,40,.05); }
.prod-selall { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #374151; cursor: pointer; }
.prod-selcount { font-size: 13px; color: #6b7280; }
.prod-toolbar [data-del-bulk] { margin-left: auto; }
.prod-cardx { transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease; }
.prod-cardx:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(16,24,40,.10); border-color: #d9dce1; }
.prod-chk input { width: 16px; height: 16px; accent-color: #7c3aed; cursor: pointer; }
.prod-info { padding: 14px 16px 4px; }
.prod-title { font-size: 15px; }
.prod-meta { font-weight: 500; color: #4b5563; }
.prod-info .badge { margin-right: 6px; margin-bottom: 6px; }
.prod-actions { display: flex; flex-direction: column; gap: 8px; padding: 6px 16px 16px; margin-top: auto; }
.prod-actions .prod-edit { width: 100%; text-align: center; }
.prod-actions-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.prod-actions-row .btn { width: 100%; text-align: center; padding: 8px 10px; }

/* ===== Checkout payment notice (user) ===== */
.co-paynotice { background: #fff6e6; border: 1px solid #f5d78a; border-radius: 12px; padding: 16px 18px; color: #7a5a00; }
.co-paynotice b { display: block; margin-bottom: 4px; font-size: 14px; }
.co-paynotice p { margin: 0; font-size: 13px; line-height: 1.5; }

/* ===== Currency switcher (user) ===== */
.nav-cur { background: transparent; border: 1px solid rgba(255,255,255,.25); color: inherit; font: inherit; font-size: 12px; letter-spacing: .04em; padding: 5px 8px; border-radius: 8px; cursor: pointer; margin-right: 6px; }
.nav-cur option { color: #111; }

/* ===== Currency repeater (settings) ===== */
.cur-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.cur-row .cur-code { width: 110px; flex-shrink: 0; }
.cur-row .cur-sym { width: 90px; flex-shrink: 0; }
.cur-row .cur-rate { flex: 1; min-width: 120px; }
.cur-row .cur-del { flex-shrink: 0; padding: 8px 12px; }


/* ===================== ABOUT PAGE (VITARA) ===================== */
.ab-wrap { --ab-accent: var(--accent); padding-top: 120px; }
.ab-section { position: relative; }
.ab-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* intro */
.ab-intro { padding: 40px 0 80px; }
.ab-intro-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.ab-intro-badge { width: 64px; height: 78px; }
.ab-intro-badge svg { width: 100%; height: 100%; display: block; }
.ab-intro h1 { font-family: var(--font-display); font-size: clamp(30px, 5vw, 48px); letter-spacing: -0.8px; text-transform: uppercase; margin: 0; line-height: 1.1; }
.ab-intro-body { max-width: 720px; font-size: 17px; line-height: 1.7; opacity: .85; }
.ab-intro-body p { margin: 0 0 14px; }

/* split (image + text) */
.ab-split { padding: 44px 0; }
.ab-split .ab-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.ab-split.rev .ab-inner { grid-template-columns: 1fr 1.1fr; }
.ab-split.rev .ab-media { order: 2; }
.ab-media { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4/5; background: #111; }
.ab-media img, .ab-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-eyebrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: 20px; margin: 0 0 16px; }
.ab-copy h2 { font-family: var(--font-display); font-size: clamp(24px,3.4vw,34px); text-transform: uppercase; letter-spacing: -0.4px; margin: 0 0 16px; line-height: 1.15; }
.ab-copy p { margin: 0 0 14px; line-height: 1.7; opacity: .85; font-size: 16px; }

/* checklist ("why we're different") */
.ab-checklist { padding: 60px 0; }
.ab-statement { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 34px; }
.ab-pill { border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 10px 22px; font-family: var(--font-display); text-transform: uppercase; font-size: 14px; letter-spacing: .04em; }
.ab-pill.solid { background: var(--ab-accent); color: #000; border-color: transparent; }
.ab-statement-note { flex: 1 1 240px; opacity: .8; font-size: 15px; }
.ab-check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 40px; margin-top: 8px; }
.ab-check { display: flex; gap: 16px; align-items: flex-start; }
.ab-check-mark { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--ab-accent); display: grid; place-items: center; margin-top: 2px; }
.ab-check-mark svg { width: 15px; height: 15px; }
.ab-check h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: 17px; font-weight: 500; }
.ab-check p { margin: 0; opacity: .78; font-size: 15px; line-height: 1.55; }

/* mission (bg image + overlay) */
.ab-mission { min-height: 460px; display: flex; align-items: flex-end; border-radius: var(--radius-card); overflow: hidden; margin: 40px auto; max-width: 1200px; position: relative; }
.ab-mission-bg { position: absolute; inset: 0; }
.ab-mission-bg img { width: 100%; height: 100%; object-fit: cover; }
.ab-mission-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.72) 100%); }
.ab-mission-content { position: relative; padding: 48px; max-width: 640px; }
.ab-mission-content .ab-eyebrow { color: var(--cream); }
.ab-mission-content p { line-height: 1.7; margin: 0 0 14px; }

/* media hub (light band + cards) */
.ab-media-band { padding: 60px 24px; border-radius: var(--radius-card); max-width: 1200px; margin: 40px auto; }
.ab-media-band h2 { font-family: var(--font-display); font-size: clamp(24px,3.2vw,32px); margin: 0 0 28px; }
.ab-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ab-hcard { border-radius: var(--radius-card); border: 1px solid rgba(0,0,0,.12); padding: 26px; min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(0,0,0,.03); transition: transform .3s ease; }
.ab-hcard:hover { transform: translateY(-4px); }
.ab-hcard .tag { font-family: var(--font-display); text-transform: uppercase; font-size: 12px; letter-spacing: .06em; border: 1px solid currentColor; border-radius: 40px; padding: 5px 14px; align-self: flex-start; opacity: .7; }
.ab-hcard h3 { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; letter-spacing: -0.4px; margin: 18px 0 0; line-height: 1.15; }

/* cta band */
.ab-cta { padding: 70px 24px; text-align: center; border-radius: var(--radius-card); max-width: 1200px; margin: 40px auto 20px; }
.ab-cta h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.4px; font-size: clamp(22px,3vw,30px); margin: 0; }

@media (max-width: 820px) {
  .ab-split .ab-inner, .ab-split.rev .ab-inner { grid-template-columns: 1fr; }
  .ab-split.rev .ab-media { order: 0; }
  .ab-check-grid, .ab-card-grid { grid-template-columns: 1fr; }
  .ab-mission-content { padding: 30px; }
}

/* admin about editor helpers */
.ab-adm-sec { border: 1px solid #e5e7eb; border-radius: 16px; padding: 22px; margin-bottom: 18px; background: #ffffff; box-shadow: 0 1px 2px rgba(16,24,40,.05); }
.ab-adm-sec > form { margin-top: 4px; }
.ab-adm-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.ab-adm-row .full { grid-column: 1 / -1; }
@media (max-width: 900px){ .ab-adm-row { grid-template-columns: 1fr; } }
.ab-adm-item { display: grid; grid-template-columns: 1fr 2fr auto; gap: 10px; margin-bottom: 10px; align-items: start; }
@media (max-width: 700px){ .ab-adm-item { grid-template-columns: 1fr; } }
.ab-adm-thumb { width: 88px; height: 88px; object-fit: cover; border-radius: 10px; border: 1px solid #e5e7eb; }
.ab-adm-row label, .ab-adm-item label, .ab-adm-sec label { display: block; font-size: 12px; font-weight: 600; color: #6b7280; }
.a-head { margin-bottom: 22px; }
.a-head h1 { font-size: 26px; }
.a-muted { color: #6b7280; font-size: 13px; }
.a-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: #111827; color: #fff; border: 1px solid #111827; border-radius: 9px; padding: 9px 15px; font-size: 13px; font-weight: 600; cursor: pointer; transition: opacity .15s ease, background .15s ease; }
.a-btn:hover { opacity: .9; }
.a-btn.ghost { background: #fff; color: #374151; border-color: #d1d5db; padding: 8px 12px; }
.a-btn.ghost:hover { background: #f9fafb; }
.a-btn.ghost:disabled { opacity: .4; cursor: not-allowed; }
.a-btn.danger { background: #fff; color: #dc2626; border-color: #f0c2c2; }
.a-btn.danger:hover { background: #fef2f2; }
.ab-adm-sec .ab-adm-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid #f0f1f3; }
.ab-adm-sec .ab-adm-head form { display: inline; }
.ab-adm-sec .ab-adm-head .row-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.color-field { display: flex; gap: 8px; align-items: center; }


/* ===================== GUEST/LIGHT THEME OVERRIDES (user) ===================== */
.intro-band { background-color: #e3dfd6; background-position: center; }
.intro-text-box p { color: #000000 !important; }
.intro-text-box { border: 1px solid #000000; color: #000000 !important; }
.intro-pill { border: 1px solid #000000; color: #000000 !important; }
.intro-line { background: #000000; }
.cta-band-shade { background: transparent; }
.cta-band-text { color: #000000; }
.sec-wrap .section h2 { color: #000000; }
.cta-band { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
.mega-cols { top: 45px; }

/* blog card: brand gradient fallback when a post has no cover image */
.blog-card-media { background-color: #111; background-image: linear-gradient(135deg, #1a1a1a 0%, #2b0a09 60%, #ABC8CF 190%); background-size: cover; background-position: center; }
