/* ============================================================
   KAANJIA — retro Indian soda-shop pop
   Baloo 2 (display, Indian Type Foundry) + Karla (body)
   ============================================================ */

:root {
    --cream: #FFF4DC;
    --cream-deep: #FFE9BC;
    --ink: #2A2767;
    --ink-soft: #54519A;
    --yellow: #FFC93C;
    --yellow-deep: #F2A93B;
    --orange: #F4793B;
    --red: #D8403A;
    --beet: #C03059;
    --jeera: #2FA36B;
    --amla: #8FBF3F;
    --pine: #F2A93B;
    --paper: #FFFDF6;
    --shadow: 0 6px 0 var(--ink);
    --border: 3px solid var(--ink);
    --radius: 22px;
    --font-display: "Baloo 2", "Comic Sans MS", cursive;
    --font-body: "Karla", "Trebuchet MS", sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-x: clip;
}

h1, h2, h3, .btn, .sticker, .ticker, .mode-btn strong, .crate-base {
    font-family: var(--font-display);
    line-height: 1.05;
}

h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-weight: 700; }

::selection { background: var(--yellow); color: var(--ink); }

/* ---------- shared bits ---------- */

.eyebrow {
    display: inline-block;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--yellow);
    padding: 0.35em 1em;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}

.eyebrow-light { background: var(--yellow); color: var(--ink); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; padding: 0 1.2rem; }
.section-sub { margin-top: 1rem; color: var(--ink-soft); font-size: 1.08rem; }

.btn {
    display: inline-block;
    font-weight: 700;
    font-size: 1.02rem;
    text-decoration: none;
    color: var(--ink);
    background: var(--paper);
    border: var(--border);
    border-radius: 999px;
    padding: 0.65em 1.5em;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--ink); }
.btn:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--ink); }

.btn-solid { background: var(--orange); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-ghost { background: transparent; }
.btn-big { font-size: 1.15rem; padding: 0.75em 1.8em; }

.circled { position: relative; white-space: nowrap; }
.circled::after {
    content: "";
    position: absolute;
    inset: -0.18em -0.35em;
    border: 3px solid var(--orange);
    border-radius: 50%;
    transform: rotate(-3deg);
}

.underline-squiggle {
    text-decoration: underline wavy var(--orange) 4px;
    text-underline-offset: 8px;
}

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- ticker ---------- */

.ticker {
    background: var(--ink);
    color: var(--yellow);
    overflow: hidden;
    padding: 0.45rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ticker-track {
    display: inline-flex;
    gap: 1.6rem;
    white-space: nowrap;
    animation: tick 28s linear infinite;
    padding-right: 1.6rem;
}

.ticker-track i { font-style: normal; color: var(--orange); }

@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

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

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 0.7rem clamp(1rem, 4vw, 2.4rem);
    background: var(--cream);
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.nav.scrolled { border-bottom-color: var(--ink); background: var(--cream-deep); }

.nav-logo img { height: 46px; display: block; }

.nav-links { display: flex; gap: 1.3rem; margin-left: auto; }

.nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    border-bottom: 3px solid transparent;
}

.nav-links a:hover { border-bottom-color: var(--orange); }

.nav-cta { box-shadow: 0 4px 0 var(--ink); padding: 0.45em 1.2em; font-size: 0.95rem; }

@media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-cta { margin-left: auto; }
}

/* ---------- hero ---------- */

.hero { position: relative; padding: clamp(2rem, 6vw, 5rem) clamp(1.2rem, 5vw, 3rem) 0; overflow: hidden; }

.hero-burst {
    position: absolute;
    top: 50%; right: -10%;
    width: min(70vw, 820px);
    aspect-ratio: 1;
    transform: translateY(-55%);
    background: repeating-conic-gradient(var(--cream-deep) 0deg 9deg, transparent 9deg 18deg);
    border-radius: 50%;
    opacity: 0.85;
    animation: spin 90s linear infinite;
    pointer-events: none;
}

@keyframes spin { to { transform: translateY(-55%) rotate(360deg); } }

.hero-devanagari {
    position: absolute;
    top: 4rem; left: -1rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(7rem, 18vw, 16rem);
    color: var(--ink);
    opacity: 0.045;
    pointer-events: none;
    user-select: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    max-width: 1180px;
    margin: 0 auto;
    align-items: center;
    padding-bottom: 5rem;
}

.hero h1 {
    font-size: clamp(3.2rem, 8.5vw, 6.4rem);
    font-weight: 800;
    letter-spacing: -0.015em;
}

.hero h1 em {
    font-style: normal;
    color: var(--orange);
    position: relative;
}

.hero-sub { margin: 1.3rem 0 1.8rem; font-size: 1.15rem; color: var(--ink-soft); max-width: 34rem; }

.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-stickers { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 2rem; }

.sticker {
    background: var(--yellow);
    border: var(--border);
    border-radius: 999px;
    padding: 0.3em 1em;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 3px 0 var(--ink);
}

.s-rot1 { transform: rotate(-2deg); }
.s-rot2 { transform: rotate(1.5deg); background: var(--paper); }
.s-rot3 { transform: rotate(-1deg); background: var(--orange); color: #fff; }

/* bottles */
.hero-bottles { position: relative; height: clamp(320px, 42vw, 480px); }

.bottle svg { width: 100%; height: 100%; overflow: visible; }

.hero-bottles .bottle { position: absolute; bottom: 0; width: 34%; filter: drop-shadow(0 14px 0 rgba(42, 39, 103, 0.18)); }

.b-left { left: 2%; transform: rotate(-7deg); animation: bob 5s ease-in-out infinite; }
.b-mid { left: 33%; width: 38%; z-index: 2; animation: bob 5s ease-in-out 0.6s infinite; }
.b-right { right: 2%; transform: rotate(7deg); animation: bob 5s ease-in-out 1.2s infinite; }

@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }

.bottle-label-k {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 40px;
    fill: var(--ink);
}

/* flavor colorways */
.f-beet { --liq: #C03059; --cap: #2A2767; }
.f-jeera { --liq: #2FA36B; --cap: #2A2767; }
.f-amla { --liq: #8FBF3F; --cap: #2A2767; }
.f-pine { --liq: #F2A93B; --cap: #2A2767; }

/* rising bubbles behind bottles */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.bubbles i {
    position: absolute;
    bottom: -30px;
    width: 14px; height: 14px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    opacity: 0;
    background: var(--paper);
    animation: rise 7s linear infinite;
}

.bubbles i:nth-child(1) { left: 6%; animation-delay: 0s; }
.bubbles i:nth-child(2) { left: 18%; width: 9px; height: 9px; animation-delay: 1.1s; }
.bubbles i:nth-child(3) { left: 30%; animation-delay: 2.3s; }
.bubbles i:nth-child(4) { left: 42%; width: 20px; height: 20px; animation-delay: 0.7s; }
.bubbles i:nth-child(5) { left: 54%; animation-delay: 3.4s; }
.bubbles i:nth-child(6) { left: 64%; width: 10px; height: 10px; animation-delay: 1.9s; }
.bubbles i:nth-child(7) { left: 74%; animation-delay: 4.5s; }
.bubbles i:nth-child(8) { left: 84%; width: 18px; height: 18px; animation-delay: 2.8s; }
.bubbles i:nth-child(9) { left: 92%; width: 8px; height: 8px; animation-delay: 5.2s; }
.bubbles i:nth-child(10) { left: 48%; width: 12px; height: 12px; animation-delay: 6s; }

@keyframes rise {
    0% { transform: translateY(0) scale(0.6); opacity: 0; }
    12% { opacity: 0.8; }
    100% { transform: translateY(-460px) scale(1.1); opacity: 0; }
}

.wave { display: block; width: 100%; height: 70px; margin-top: -1px; }

@media (max-width: 860px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-bottles { height: 390px; max-width: 420px; margin: 1.5rem auto 0; width: 100%; }
    .hero-bottles .bottle { width: 27%; }
    .hero-bottles .b-mid { width: 31%; }
}

/* ---------- why 24 (dark) ---------- */

.why24 { background: var(--ink); color: var(--cream); padding: 4.5rem clamp(1.2rem, 5vw, 3rem) 5rem; }

.why24 h2 { color: var(--paper); }

.why24 .circled::after { border-color: var(--yellow); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background: #353179;
    border: 3px solid var(--yellow);
    border-radius: var(--radius);
    padding: 1.8rem 1.6rem;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.35);
}

.why-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--ink);
    background: var(--yellow);
    width: 2.6em; height: 2.6em;
    display: grid; place-items: center;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.why-card h3 { font-size: 1.45rem; margin-bottom: 0.5rem; color: var(--yellow); }
.why-card p { color: #D9D6F2; font-size: 0.98rem; }
.why-card strong { color: var(--paper); }

.why-math {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.math-chip {
    background: var(--paper);
    color: var(--ink);
    border: var(--border);
    border-radius: 999px;
    padding: 0.5em 1.3em;
    font-weight: 700;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.4);
}

.chip-hot { background: var(--yellow); }

.math-op { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--orange); }

@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; max-width: 480px; } }

/* ---------- heritage ---------- */

.heritage { background: var(--cream-deep); padding: 4.5rem 1.4rem; text-align: center; }

.heritage-inner { max-width: 720px; margin: 0 auto; position: relative; }

.heritage-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--orange);
    line-height: 0.5;
    display: block;
    margin-bottom: 1rem;
}

.heritage blockquote {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.4rem, 3.4vw, 2.1rem);
    line-height: 1.3;
}

.heritage-tag { margin-top: 1.4rem; color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- inside ---------- */

.inside { padding: 5rem clamp(1.2rem, 5vw, 3rem); }

.inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.inside-card {
    background: var(--paper);
    border: var(--border);
    border-radius: var(--radius);
    padding: 1.8rem 1.6rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

.inside-card:hover { transform: translateY(-6px) rotate(-0.5deg); }

.inside-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.inside-card h3 { font-size: 1.3rem; }

.inside-stat {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--orange);
    margin: 0.2rem 0 0.5rem;
}

.inside-card p:last-child { color: var(--ink-soft); font-size: 0.97rem; }

.sugar-vs {
    max-width: 700px;
    margin: 0 auto;
    background: var(--paper);
    border: var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.8rem 2rem;
}

.sugar-vs h3 { font-size: 1.4rem; margin-bottom: 1.2rem; }

.sugar-row {
    display: grid;
    grid-template-columns: 7.5em 1fr 3.5em;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.sugar-bar {
    height: 22px;
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 999px;
    overflow: hidden;
}

.sugar-bar i { display: block; height: 100%; width: 0; border-radius: 999px; transition: width 1.1s cubic-bezier(0.2, 0.7, 0.2, 1); }

.in .bar-bad, .sugar-vs.in .bar-bad { width: var(--w); }
.in .bar-good, .sugar-vs.in .bar-good { width: var(--w); }

.bar-bad { background: repeating-linear-gradient(135deg, var(--red) 0 10px, #E2685F 10px 20px); }
.bar-good { background: var(--jeera); }

.sugar-val { text-align: right; }
.sugar-note { margin-top: 1rem; color: var(--ink-soft); font-size: 0.92rem; }

@media (max-width: 860px) { .inside-grid { grid-template-columns: 1fr; max-width: 480px; } }

/* ---------- flavors ---------- */

.flavors { background: var(--ink); padding: 4.5rem clamp(1.2rem, 5vw, 3rem) 5.5rem; }

.flavors h2 { color: var(--paper); }

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    max-width: 1180px;
    margin: 0 auto;
}

.flavor-card {
    position: relative;
    background: var(--cream);
    border: var(--border);
    border-radius: var(--radius);
    padding: 2.6rem 1.3rem 1.6rem;
    text-align: center;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.flavor-card:hover { transform: translateY(-8px) rotate(0.6deg); }

.flavor-card:nth-child(odd):hover { transform: translateY(-8px) rotate(-0.6deg); }

.flavor-role {
    position: absolute;
    top: -0.9em; left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: var(--orange);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25em 1em;
    border: 2px solid var(--ink);
    border-radius: 999px;
    white-space: nowrap;
}

.flavor-bottle { height: 190px; margin-bottom: 1rem; }
.flavor-bottle svg { height: 100%; width: auto; }

.flavor-card h3 { font-size: 1.35rem; }

.flavor-line { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.4rem; }

@media (max-width: 980px) { .flavor-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; } }
@media (max-width: 520px) { .flavor-grid { grid-template-columns: 1fr; max-width: 320px; } }

/* ---------- preorder / builder ---------- */

.preorder { padding: 5rem clamp(1.2rem, 5vw, 3rem); background: var(--cream); }

.builder {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.2rem;
    max-width: 1100px;
    margin: 0 auto 2.6rem;
    align-items: start;
}

.builder-step {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    margin: 1.8rem 0 0.9rem;
}

.builder-left .builder-step:first-child { margin-top: 0; }

.mode-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }

.mode-btn {
    font-family: var(--font-body);
    background: var(--paper);
    border: var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 0 var(--ink);
    padding: 0.8rem 0.6rem;
    cursor: pointer;
    text-align: center;
    transition: transform 0.12s ease, background 0.12s ease;
}

.mode-btn strong { display: block; font-size: 1.05rem; color: var(--ink); }
.mode-btn span { font-size: 0.82rem; color: var(--ink-soft); }

.mode-btn:hover { transform: translateY(-2px); }

.mode-btn.active { background: var(--yellow); }

@media (max-width: 430px) {
    .mode-row { grid-template-columns: 1fr; }
    .mode-btn { display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem; text-align: left; padding: 0.7rem 1.1rem; }
}

.flavor-pickers { display: grid; gap: 0.6rem; margin-top: 1.1rem; }

.picker {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--paper);
    border: var(--border);
    border-radius: 999px;
    padding: 0.45rem 0.6rem 0.45rem 1rem;
    transition: opacity 0.15s ease;
}

.picker.dim { opacity: 0.45; }

.picker-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--ink); background: var(--liq); flex-shrink: 0; }

.picker-name { font-weight: 700; flex: 1; font-size: 0.98rem; }

.stepper { display: flex; align-items: center; gap: 0.15rem; }

.stepper button, .case-stepper button {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    width: 2.1em; height: 2.1em;
    border-radius: 50%;
    border: var(--border);
    background: var(--cream);
    color: var(--ink);
    cursor: pointer;
    line-height: 1;
    transition: background 0.12s ease, transform 0.12s ease;
}

.stepper button:hover:not(:disabled), .case-stepper button:hover:not(:disabled) { background: var(--yellow); transform: scale(1.06); }

.stepper button:disabled, .case-stepper button:disabled { opacity: 0.3; cursor: not-allowed; }

.stepper output { min-width: 2em; text-align: center; font-weight: 700; font-size: 1.05rem; }

.case-stepper {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: var(--paper);
    border: var(--border);
    border-radius: 999px;
    padding: 0.55rem 0.7rem;
    width: fit-content;
    box-shadow: 0 4px 0 var(--ink);
}

.case-stepper button { width: 2.4em; height: 2.4em; }

.case-count { text-align: center; min-width: 11em; }
.case-count output { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; margin-right: 0.3em; }
.case-count span { color: var(--ink-soft); font-size: 0.95rem; }
.case-count b { color: var(--ink); }

/* crate */
.crate-wrap { text-align: center; }

.crate-status { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin-bottom: 0.7rem; }
.crate-status output { color: var(--orange); font-size: 1.3em; }

.crate {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 7px;
    background: var(--paper);
    border: var(--border);
    border-radius: 18px 18px 6px 6px;
    box-shadow: var(--shadow);
    padding: 14px;
}

.crate-slot {
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2.5px dashed #C9C2E8;
    transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.18s ease, border 0.18s ease;
}

.crate-slot.filled {
    border: 2.5px solid var(--ink);
    background:
        radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.75) 0 18%, transparent 22%),
        var(--c);
    transform: scale(1.02);
}

.crate-slot.pop { animation: cap-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }

@keyframes cap-pop { 0% { transform: scale(0.4); } 100% { transform: scale(1.02); } }

.crate-base {
    background: var(--ink);
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    border-radius: 0 0 14px 14px;
    padding: 0.45rem;
    margin: 0 10px;
    box-shadow: 0 6px 0 rgba(42, 39, 103, 0.25);
}

/* price card */
.price-card {
    margin-top: 1.6rem;
    background: var(--paper);
    border: var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.4rem 1.6rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.45rem 0;
    font-weight: 600;
}

.price-row strong { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }

.price-dep { color: var(--ink-soft); border-top: 2px dashed #D9D2F0; }
.price-dep strong { color: var(--jeera); font-size: 1.1rem; }

.price-eff { border-top: var(--border); margin-top: 0.3rem; padding-top: 0.7rem; }
.price-eff strong { color: var(--orange); font-size: 1.7rem; }

.price-foot { margin-top: 0.7rem; font-size: 0.88rem; color: var(--ink-soft); }

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

/* form */
.order-form { max-width: 1100px; margin: 0 auto; }

.hidden-field { display: none; }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.field span { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 0.35rem; }

.field input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1.02rem;
    color: var(--ink);
    background: var(--paper);
    border: var(--border);
    border-radius: 14px;
    padding: 0.7em 1em;
    outline: none;
    transition: box-shadow 0.15s ease, background 0.15s ease;
}

.field input:focus { box-shadow: 0 4px 0 var(--orange); background: #fff; }

.field input::placeholder { color: #B3AED6; }

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

.btn-submit { display: block; width: 100%; text-align: center; font-size: 1.25rem; }

.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: var(--shadow); }

.form-fine { text-align: center; margin-top: 1rem; color: var(--ink-soft); font-size: 0.88rem; }

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

/* success */
.order-done {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: var(--paper);
    border: var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 3rem 2rem;
}

.done-cap {
    width: 74px; height: 74px;
    margin: 0 auto 1.2rem;
    display: grid; place-items: center;
    background: var(--jeera);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.2rem;
    border: var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.order-done h3 { font-size: 2rem; margin-bottom: 0.6rem; }
.order-done p { color: var(--ink-soft); }

/* ---------- faq ---------- */

.faq { background: var(--cream-deep); padding: 4.5rem clamp(1.2rem, 5vw, 3rem) 5rem; }

.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 0.8rem; }

.faq details {
    background: var(--paper);
    border: var(--border);
    border-radius: 18px;
    box-shadow: 0 4px 0 var(--ink);
    overflow: hidden;
}

.faq summary {
    list-style: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.12rem;
    padding: 1.1rem 3.2rem 1.1rem 1.4rem;
    position: relative;
    user-select: none;
}

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

.faq summary::after {
    content: "+";
    position: absolute;
    right: 1.2rem; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--orange);
    transition: transform 0.2s ease;
}

.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq details p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ---------- final cta ---------- */

.final-cta {
    background: var(--orange);
    text-align: center;
    padding: 5rem 1.4rem;
    border-top: var(--border);
    border-bottom: var(--border);
}

.final-cta h2 { color: #fff; text-shadow: 0 4px 0 rgba(42, 39, 103, 0.3); margin-bottom: 1.8rem; }

/* ---------- footer ---------- */

.footer { background: var(--ink); color: #C9C5EC; text-align: center; padding: 3rem 1.4rem; }

.footer-logo { height: 54px; margin-bottom: 1rem; }

.footer p { font-size: 0.95rem; }

.footer-fine { margin-top: 0.5rem; font-size: 0.82rem; opacity: 0.7; }

/* ---------- plain-language benefits ---------- */

.benefits { background: var(--cream-deep); padding: 4rem clamp(1.2rem, 5vw, 3rem) 4.5rem; margin-top: -1px; }

.benefits .inside-grid { margin-bottom: 0; }

.synbiotic-note {
    text-align: center;
    max-width: 560px;
    margin: -1.4rem auto 3rem;
    color: var(--ink-soft);
    font-size: 1.02rem;
}

/* ---------- dictionary card ---------- */

.dict-card {
    max-width: 620px;
    margin: -1rem auto 3rem;
    background: var(--paper);
    border: var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem 2rem;
    transform: rotate(-0.8deg);
}

.dict-word { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; }

.dict-pos { font-family: var(--font-body); font-style: italic; font-weight: 400; font-size: 0.85rem; color: var(--ink-soft); margin-left: 0.5rem; letter-spacing: 0.04em; }

.dict-def { margin-top: 0.4rem; color: var(--ink-soft); font-size: 1.05rem; }

.dict-def strong { color: var(--ink); }

.dict-short { margin-top: 0.6rem; font-weight: 700; }

.dict-short mark { background: var(--yellow); padding: 0.05em 0.35em; border-radius: 6px; }

/* ---------- final cta sub ---------- */

.final-sub { color: #FFE8D6; font-size: 1.15rem; font-weight: 600; margin: -0.9rem 0 1.8rem; }

/* ---------- crate confetti ---------- */

.crate-wrap { position: relative; }

.confetti { position: absolute; inset: 0; pointer-events: none; z-index: 5; }

.confetti i {
    position: absolute;
    left: 50%; top: 45%;
    width: 13px; height: 13px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    background: var(--c, var(--yellow));
    animation: burst 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

@keyframes burst {
    from { transform: translate(-50%, -50%) scale(0.4) rotate(0deg); opacity: 1; }
    to { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1) rotate(220deg); opacity: 0; }
}

/* ---------- zero story ---------- */

.sugar-cap {
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 1rem 0 0.55rem;
}

.val-zero {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--jeera);
}

/* ---------- sweetened-by showdown ---------- */

.zero-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 2px dashed #EFE3C8;
    font-weight: 600;
}

.zero-row:last-of-type { border-bottom: none; }

.zr-val { text-align: right; }

.zr-bad { color: var(--red); }

.zr-good { color: var(--jeera); font-weight: 700; }

.flavor-pickers[data-mode="single"] .picker { cursor: pointer; }
