:root {
    --red: #c8102e;
    --red-mid: #9b0018;
    --red-deep: #5c0010;
    --red-bg: #3a0008;
    --gold: #e2c04a;
    --gold-light: #f5dc6a;
    --gold-dark: #a88418;
    --white: #ffffff;
    --cream: #f7f2ea;
    --cream-border: #e8dfd2;
    --ink: #14060a;
    --text-muted: rgba(255,255,255,.72);
    --font-display: 'Bebas Neue', 'Anton', Impact, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --text-display: clamp(2.35rem, 10.5vw, 4.5rem);
    --text-h1: clamp(2rem, 4.5vw, 2.8rem);
    --text-h2: clamp(1.75rem, 3.5vw, 2.4rem);
    --text-body: 1rem;
    --text-small: .8125rem;
    --text-xs: .6875rem;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --radius: 18px;
    --radius-lg: 24px;
    --shadow: 0 28px 60px rgba(0,0,0,.32);
    --shadow-sm: 0 12px 32px rgba(0,0,0,.2);
    --topbar-h: 40px;
    --header-h: 62px;
    --dock-h: 88px;
    --dock-h-compact: 132px;
    --site-top-shell: 18px;
    --site-top-h: calc(var(--site-top-shell) + var(--topbar-h) + var(--header-h));
    --ease: cubic-bezier(.22,1,.36,1);
    --copy-max: 360px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--site-top-h) + 16px);
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--red-bg);
    color: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(var(--dock-h-compact) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 640px) {
    body {
        padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px));
    }
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
strong { font-weight: 700; }

.container {
    width: min(1180px, calc(100% - 24px));
    margin-inline: auto;
}

@media (min-width: 768px) {
    .container {
        width: min(1180px, calc(100% - 32px));
    }
}

body.modal-open {
    overflow: hidden;
    touch-action: none;
}

/* ── Site top (topbar + header) ──────────────────────────── */
.site-top {
    position: fixed;
    inset: 0 0 auto;
    z-index: 400;
    padding: 10px 12px 0;
    background: transparent;
    pointer-events: none;
}

.site-top .top-bar,
.site-top .header-bar {
    pointer-events: auto;
}

.site-top.is-scrolled .header-bar {
    box-shadow: 0 14px 36px rgba(0,0,0,.32);
}

.top-bar {
    height: var(--topbar-h);
    max-width: min(1180px, calc(100% - 8px));
    margin: 0 auto 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff3b30 0%, var(--red) 45%, #7a0012 100%);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow:
        0 8px 28px rgba(200,16,46,.35),
        inset 0 1px 0 rgba(255,255,255,.18);
    overflow: hidden;
}

.top-bar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
}

.top-bar-text {
    margin: 0;
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.top-bar-text--short { display: none; }

@media (max-width: 639px) {
    .top-bar-text--full { display: none; }
    .top-bar-text--short { display: block; }

    body {
        padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
    }

    .dock-row {
        gap: 8px;
        padding: 10px 0;
        min-height: auto;
    }

    .dock-thumb {
        width: 44px;
        height: 44px;
    }

    .dock-title {
        font-size: .8125rem;
    }

    .btn-dock {
        padding: 12px 14px !important;
        font-size: .8125rem !important;
        border-radius: 10px !important;
    }

    .section {
        padding: var(--space-7) 0;
    }

    .hero-cinema {
        padding: var(--space-5) 0 var(--space-6);
    }
}

.top-bar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 8px rgba(245,220,106,.8);
    animation: blink 1.5s ease infinite;
    flex-shrink: 0;
}

@keyframes blink {
    50% { opacity: .35; transform: scale(.85); }
}

.header-bar {
    height: var(--header-h);
    display: flex;
    align-items: center;
    max-width: min(1180px, calc(100% - 8px));
    margin: 0 auto;
    padding: 0 12px;
    border-radius: 18px;
    background: rgba(14,4,8,.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 10px 32px rgba(0,0,0,.28);
    transition: box-shadow .25s var(--ease);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 0 4px;
}

.header-links {
    display: none;
    gap: 24px;
    margin-left: auto;
    font-size: .875rem;
    font-weight: 600;
    color: rgba(255,255,255,.88);
}

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

.header-cta {
    flex-shrink: 0;
    padding: 11px 18px !important;
    font-size: .8125rem !important;
    letter-spacing: .02em;
    min-height: 44px;
    white-space: nowrap;
}

@media (min-width: 768px) {
    :root {
        --header-h: 72px;
        --topbar-h: 42px;
    }

    .site-top {
        padding: 12px 16px 0;
    }

    .header-links { display: flex; }

    .header-cta {
        padding: 12px 22px !important;
        font-size: .875rem !important;
        min-height: 48px;
    }

    .top-bar-text {
        font-size: .75rem;
        letter-spacing: .07em;
    }
}

/* ── Brand & tags ────────────────────────────────────────── */
.brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: .05em;
    line-height: 1;
    flex-shrink: 0;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.brand-logo img {
    display: block;
    width: auto;
    height: 34px;
    max-width: 148px;
}

@media (min-width: 768px) {
    .brand-logo img {
        height: 38px;
        max-width: 160px;
    }
}

.brand-logo--footer img {
    height: 24px;
    max-width: 110px;
    opacity: .92;
}

.modal-logo {
    display: block;
    margin: 0 auto;
    height: 28px;
    width: auto;
}

.modal-logo {
    display: block;
    margin: 0 auto;
    height: 34px;
    width: auto;
}

@media (max-width: 767px) {
    .hero-title {
        display: none;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
        font-weight: 600;
        max-width: 30ch;
    }

    .header-row {
        gap: 10px;
    }

    .scarcity-pill {
        width: 100%;
        justify-content: center;
        font-size: .5625rem;
        padding: 6px 10px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-eyebrow {
        text-align: center;
    }

    .hero-title,
    .hero-subtitle,
    .hero-desc {
        text-align: center;
        margin-inline: auto;
    }

    .hero-desc {
        max-width: 34ch;
    }

    .section-header .scarcity-pill--dark {
        display: inline-flex;
        margin-inline: auto;
    }
}

.brand--sm { font-size: 1.4rem; }

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(226,192,74,.14);
    border: 1px solid rgba(226,192,74,.38);
    color: var(--gold-light);
    margin-bottom: 18px;
}

.tag--outline {
    background: transparent;
    border-color: rgba(255,255,255,.22);
    color: rgba(255,255,255,.82);
}

.tag--red {
    background: rgba(200,16,46,.1);
    border-color: rgba(200,16,46,.28);
    color: var(--red);
}

/* legacy header selector removed — use .site-top */

@media (min-width: 768px) {
    .hide-mobile { display: inline-flex; }
}

@media (max-width: 767px) {
    .hide-mobile { display: none; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 999px;
    font-weight: 800;
    transition: transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s var(--ease);
}

.btn:active { transform: scale(.98); }

.btn-primary {
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--ink);
    box-shadow: 0 6px 24px rgba(226,192,74,.28), inset 0 1px 0 rgba(255,255,255,.35);
}

.btn-primary:hover {
    filter: brightness(1.04);
    box-shadow: 0 10px 32px rgba(226,192,74,.36);
}

.btn-primary:disabled {
    opacity: .42;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    padding: 14px 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.22);
    color: var(--white);
    font-size: .9375rem;
}

.btn-outline.btn-lg {
    padding: 17px 30px;
    font-size: 1rem;
    min-height: 52px;
}

.btn-outline:hover { background: rgba(255,255,255,.14); }

.btn-sm { padding: 10px 18px; font-size: .8125rem; min-height: auto; }

.btn-lg {
    padding: 17px 30px;
    font-size: 1rem;
    min-height: 52px;
}

/* ── Action row (unified CTAs) ───────────────────────────── */
.action-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
}

.action-row .btn {
    width: 100%;
    min-height: 52px;
}

@media (min-width: 768px) {
    .action-row {
        flex-direction: row;
        align-items: stretch;
        gap: var(--space-3);
    }

    .action-row .btn {
        width: auto;
        flex: 1;
    }

    .action-row--start {
        justify-content: flex-start;
    }

    .action-row--start .btn {
        flex: 0 1 auto;
        min-width: 200px;
    }

    .action-row--inline {
        flex: 0 0 auto;
    }

    .action-row--inline .btn {
        flex: 0 0 auto;
        min-width: 200px;
    }
}

.btn-select {
    width: 100%;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--red-mid);
    color: var(--white);
    font-size: .875rem;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.1);
}

.product-card.is-selected .btn-select,
.btn-select:hover {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    color: var(--ink);
    border-color: transparent;
}

.btn-link {
    border: none;
    background: none;
    color: #888;
    font-size: .8125rem;
    text-decoration: underline;
    padding: 8px;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding-top: var(--site-top-h);
    overflow: hidden;
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(200,16,46,.35), transparent 55%),
        linear-gradient(180deg, var(--red-deep) 0%, var(--red-bg) 100%);
}

.hero-texture {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 11px 11px;
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    padding: var(--space-4) 0 var(--space-5);
    align-items: start;
}

.hero-copy {
    width: 100%;
    max-width: none;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.hero-eyebrow {
    margin: 0;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.scarcity-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .625rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink);
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    box-shadow: 0 4px 14px rgba(226,192,74,.28);
}

.scarcity-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: blink 1.2s ease infinite;
    flex-shrink: 0;
}

.scarcity-pill--dark {
    color: var(--gold-light);
    background: rgba(226,192,74,.12);
    border: 1px solid rgba(226,192,74,.32);
    box-shadow: none;
    margin-bottom: var(--space-3);
}

.scarcity-pill--dark::before {
    background: var(--gold);
}

.hero-title {
    margin: 0 0 var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    text-align: left;
}

.hero-title-line {
    font-family: var(--font-display);
    font-size: var(--text-display);
    line-height: 1.02;
    letter-spacing: .02em;
    text-transform: uppercase;
    display: block;
    text-wrap: balance;
    max-width: none;
}

.hero-subtitle {
    margin: 0 0 var(--space-3);
    font-size: clamp(.9375rem, 2.8vw, 1.125rem);
    font-weight: 500;
    color: rgba(255,255,255,.92);
    max-width: 42ch;
    text-align: left;
}

.hero-desc {
    margin: 0 0 var(--space-4);
    font-size: .9375rem;
    color: var(--text-muted);
    max-width: 38ch;
    text-align: left;
    line-height: 1.55;
}

.hero-title-line--gold {
    color: var(--gold);
    text-shadow: 0 4px 28px rgba(226,192,74,.22);
}

.hero-desc strong { color: var(--gold-light); }

.hero-actions {
    display: grid;
    gap: var(--space-4);
    max-width: none;
}

/* ── Deal panel (offer + scarcity) ───────────────────────── */
.deal-panel {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-3);
    border-radius: 18px;
    background: rgba(0,0,0,.34);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.scarcity-bar {
    display: grid;
    gap: 8px;
}

.scarcity-track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.1);
}

.scarcity-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    box-shadow: 0 0 12px rgba(226,192,74,.45);
    transition: width .6s var(--ease);
}

.scarcity-caption {
    margin: 0;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}

.deal-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.deal-chip {
    display: grid;
    gap: 2px;
    padding: 10px 8px;
    border-radius: 12px;
    text-align: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    min-width: 0;
}

.deal-chip--hero {
    background: rgba(226,192,74,.12);
    border-color: rgba(226,192,74,.28);
}

.deal-chip-kicker {
    font-size: .5625rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

.deal-chip strong {
    font-family: var(--font-display);
    font-size: clamp(1rem, 4.2vw, 1.25rem);
    line-height: 1;
    letter-spacing: .03em;
    color: var(--gold-light);
}

.deal-chip--hero strong {
    font-size: clamp(1.15rem, 4.8vw, 1.45rem);
}

.deal-chip s {
    font-size: .625rem;
    color: rgba(255,255,255,.38);
}

.deal-chip-note {
    font-size: .5625rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

@media (min-width: 960px) {
    .hero-layout {
        grid-template-columns: 5fr 7fr;
        gap: var(--space-7);
        padding: var(--space-7) 0 var(--space-6);
        align-items: center;
    }

    .hero-art { order: 2; }
    .hero-copy { order: 1; max-width: none; }

    .hero-title-line { max-width: 12ch; }

    .hero-actions { max-width: var(--copy-max); }

    .deal-panel { padding: var(--space-4); }
}

@media (max-width: 959px) {
    .hero-art { order: -1; }

    .hero-frame,
    .hero-frame--campaign {
        aspect-ratio: 1280 / 426;
        max-height: none;
    }

    .hero-subtitle {
        font-size: .9375rem;
    }
}

/* legacy offer-card — replaced by deal-panel */
.offer-card {
    display: none;
}

.offer-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.offer-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.offer-values {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.offer-values s {
    font-size: .9375rem;
    color: rgba(255,255,255,.42);
}

.offer-values strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: .04em;
}

.offer-shipping {
    font-size: 1.125rem;
    color: var(--white);
}

.offer-card-divider {
    height: 1px;
    margin: 14px 0;
    background: rgba(255,255,255,.1);
}

.hero-art {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
}

.hero-stage {
    position: relative;
}

.hero-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
    background: var(--red-mid);
    aspect-ratio: 1280 / 426;
}

.hero-frame--campaign {
    background: var(--red-deep);
}

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

.hero-poster {
    display: none;
}

@media (min-width: 768px) {
    .hero-art { margin-inline: 0; }

    .hero-poster {
        display: block;
        position: absolute;
        right: -20px;
        bottom: 24px;
        width: 28%;
        max-width: 160px;
        z-index: 2;
        border-radius: 14px;
        overflow: hidden;
        border: 2px solid rgba(255,255,255,.2);
        box-shadow: var(--shadow-sm);
        transform: rotate(3deg);
    }

    .hero-poster img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.hero-frame-shine {
    position: absolute;
    inset: auto 8% -8px 8%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(226,192,74,.35), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

.hero-metrics {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
}

.hero-metrics--desktop {
    display: none;
}

@media (min-width: 768px) {
    .hero-metrics--desktop {
        display: block;
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
}

@media (min-width: 768px) {
    .metrics-grid { grid-template-columns: repeat(4, 1fr); }
}

.metric {
    padding: var(--space-5) var(--space-4);
    text-align: center;
    background: rgba(20,6,10,.55);
}

@media (min-width: 768px) {
    .metric + .metric {
        border-left: 1px solid rgba(255,255,255,.08);
    }
}

.metric strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    color: var(--gold);
    letter-spacing: .03em;
    margin-bottom: var(--space-1);
}

.metric span {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
}

.hero-gold-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), #fff6d0, var(--gold), transparent);
}

/* ── Hero cinema ─────────────────────────────────────────── */
.hero-cinema {
    padding: var(--space-6) 0 var(--space-7);
    background:
        radial-gradient(60% 40% at 50% 0%, rgba(200,16,46,.2), transparent),
        var(--red-bg);
}

.cinema-header {
    text-align: center;
    margin-bottom: var(--space-5);
}

.cinema-header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--text-h2);
    line-height: 1.05;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.cinema-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(226,192,74,.28);
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
    background: var(--red-mid);
}

.cinema-frame::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 40%;
    background: linear-gradient(180deg, rgba(58,0,8,.45), transparent);
    pointer-events: none;
    z-index: 1;
}

.cinema-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Sections ────────────────────────────────────────────── */
.section { padding: var(--space-8) 0; }
.section--light { background: var(--cream); color: var(--ink); }

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 44px;
}

.section-header h2 {
    margin: 0 0 var(--space-3);
    font-family: var(--font-display);
    font-size: var(--text-h1);
    line-height: 1.05;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.section--light .section-header h2 { color: var(--red-mid); }

.section-header p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.section--light .section-header p { color: #5a5a5a; }

.section-header strong { color: var(--gold-dark); }

/* ── Catalog ─────────────────────────────────────────────── */
.catalog {
    background:
        radial-gradient(80% 50% at 50% 0%, rgba(200,16,46,.18), transparent),
        var(--red-bg);
}

.catalog-list {
    display: grid;
    gap: 18px;
}

.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.04);
    border: 2px solid rgba(255,255,255,.08);
    transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
    overflow: hidden;
}

.product-card--featured {
    border-color: rgba(226,192,74,.22);
}

.product-card:hover {
    border-color: rgba(226,192,74,.28);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,.24);
}

.product-card.is-selected {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 20px 48px rgba(226,192,74,.12);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: .625rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.product-check {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.28);
    opacity: 0;
    transform: scale(.7);
    transition: opacity .2s, transform .2s, background .2s;
}

.product-check::after {
    content: '';
    position: absolute;
    inset: 7px 6px 6px 7px;
    background: var(--ink);
    clip-path: polygon(14% 44%, 0 59%, 42% 100%, 100% 18%, 84% 4%, 38% 62%);
    opacity: 0;
}

.product-card.is-selected .product-check {
    opacity: 1;
    transform: scale(1);
    background: var(--gold);
    border-color: var(--gold);
}

.product-card.is-selected .product-check::after { opacity: 1; }

.product-card-inner {
    display: grid;
    grid-template-columns: 1fr;
}

@media (max-width: 639px) {
    .product-card-inner {
        grid-template-columns: 118px 1fr;
        align-items: stretch;
    }

    .product-thumb {
        min-height: 100%;
        padding: 10px;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,.08);
    }

    .product-thumb img {
        max-height: 108px;
    }

    .product-content {
        padding: 14px 14px 16px;
    }

    .product-content h3 {
        font-size: 1rem;
    }

    .product-text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: .8125rem;
    }

    .product-pricing {
        margin-top: 12px;
        padding-top: 12px;
    }

    .btn-select {
        margin-top: 12px;
        padding: 12px 14px;
    }
}

@media (min-width: 640px) {
    .product-card--featured .product-card-inner {
        grid-template-columns: 280px 1fr;
    }
}

.product-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: var(--space-4);
    background:
        radial-gradient(ellipse at 50% 80%, rgba(200,16,46,.28), transparent 70%),
        linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(0,0,0,.22) 100%);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.product-card--featured .product-thumb {
    min-height: 100%;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,.08);
}

.product-thumb img {
    width: auto;
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.35));
}

.product-thumb--pack img {
    max-height: 150px;
    object-fit: contain;
    width: auto;
    border-radius: 0;
}

.product-thumb--single img {
    max-height: 190px;
}

.product-content {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.product-variant {
    margin: 0 0 10px;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .02em;
}

.product-text {
    margin: 0;
    flex: 1;
    font-size: .875rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.product-pricing {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.product-pricing-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-pricing-main s {
    font-size: .875rem;
    color: rgba(255,255,255,.4);
}

.product-pricing-main strong {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--gold);
    letter-spacing: .03em;
}

.product-pricing-ship {
    font-size: .75rem;
    color: var(--text-muted);
    text-align: right;
}

@media (min-width: 900px) {
    .catalog-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card--featured {
        grid-column: 1 / -1;
    }
}

/* ── Story ───────────────────────────────────────────────── */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .story-grid { grid-template-columns: .9fr 1.1fr; gap: 56px; }
}

.story-media {
    max-width: 420px;
    margin-inline: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4;
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.story-content h2 {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1;
    text-transform: uppercase;
    color: var(--red-mid);
}

.story-content p {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.checklist {
    list-style: none;
    margin: 24px 0 28px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.checklist li {
    position: relative;
    padding-left: 28px;
    font-weight: 600;
    font-size: .9375rem;
    color: #333;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
}

.checklist li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

/* ── Steps ───────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.step-card {
    padding: 28px 22px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.step-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.step-card p {
    margin: 0;
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
    margin: 0;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--cream-border);
    box-shadow: 0 10px 28px rgba(0,0,0,.05);
}

.review-stars {
    color: var(--gold-dark);
    letter-spacing: 2px;
    font-size: .8125rem;
    margin-bottom: 12px;
}

.review-card p {
    margin: 0 0 16px;
    font-size: .9375rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.review-card footer {
    display: grid;
    gap: 2px;
}

.review-card footer strong {
    color: var(--red-mid);
    font-size: .875rem;
}

.review-card footer span {
    font-size: .75rem;
    color: #888;
}

/* ── CTA strip ───────────────────────────────────────────── */
.cta-strip {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
    border-block: 2px solid rgba(226,192,74,.45);
}

.cta-strip-inner {
    display: grid;
    gap: var(--space-5);
    align-items: center;
    text-align: center;
}

.cta-strip h2 {
    margin: 0 0 var(--space-2);
    font-family: var(--font-display);
    font-size: var(--text-h2);
    line-height: 1.05;
    text-transform: uppercase;
}

.cta-strip p {
    margin: 0;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .cta-strip-inner {
        grid-template-columns: 1fr auto;
        text-align: left;
        align-items: center;
    }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.faq-item:first-child { border-top: 1px solid rgba(0,0,0,.08); }

.faq-item summary {
    padding: 20px 0;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--red);
    font-weight: 400;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    margin: 0 0 20px;
    font-size: .9375rem;
    line-height: 1.65;
    color: #666;
}

/* ── Dock (sticky) ───────────────────────────────────────── */
.dock {
    position: fixed;
    inset: auto 0 0;
    z-index: 350;
    background: rgba(20,6,10,.98);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(226,192,74,.24);
    box-shadow: 0 -12px 40px rgba(0,0,0,.32);
    transform: translateY(0);
    transition: transform .28s var(--ease);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.dock.is-hidden { transform: translateY(100%); }

.dock-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
    min-height: var(--dock-h-compact);
    align-content: center;
}

.dock-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.dock-copy {
    min-width: 0;
    flex: 1;
}

.dock-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255,255,255,.08) center/contain no-repeat;
    border: 1px solid rgba(255,255,255,.1);
    flex-shrink: 0;
}

.dock-info.has-product .dock-thumb {
    background-color: rgba(255,255,255,.06);
    background-size: 82%;
}

.dock-title {
    font-weight: 800;
    font-size: .875rem;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dock-sub {
    font-size: .6875rem;
    color: var(--text-muted);
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dock-action {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
}

.dock-price {
    display: none;
    align-items: baseline;
    gap: 8px;
}

.dock-price s {
    font-size: .8125rem;
    color: rgba(255,255,255,.4);
}

.dock-price strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
}

.btn-dock {
    width: 100%;
    padding: 14px 18px !important;
    font-size: .875rem !important;
    border-radius: 12px !important;
}

@media (min-width: 640px) {
    .dock-row {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 16px;
        min-height: var(--dock-h);
        padding: 14px 0;
    }

    .dock-action {
        display: flex;
        align-items: center;
        gap: 14px;
        width: auto;
    }

    .dock-price {
        display: flex;
    }

    .btn-dock {
        width: auto;
        min-width: 180px;
        border-radius: 999px !important;
        padding: 14px 24px !important;
    }

    .dock-title { font-size: .9375rem; }

    .dock-sub { font-size: .75rem; }
}

/* ── Modals ──────────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal[hidden] { display: none !important; }

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(8px);
}

.modal-panel {
    position: relative;
    width: min(100%, 440px);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: auto;
    flex-shrink: 0;
}

.modal-panel--age {
    width: min(100%, 760px);
    display: grid;
    grid-template-columns: 1fr;
    max-height: min(92dvh, 720px);
    overflow-y: auto;
}

@media (min-width: 640px) {
    .modal-panel--age {
        grid-template-columns: 1.05fr 1fr;
        overflow: hidden;
    }
}

.modal-age-art {
    background:
        radial-gradient(120% 80% at 50% 100%, rgba(200,16,46,.35), transparent),
        var(--red-deep);
    display: grid;
    place-items: center;
    padding: 20px;
    min-height: 0;
}

.modal-age-banner {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.modal-age-poster {
    max-height: min(320px, 42dvh);
    width: auto;
    object-fit: contain;
    border-radius: 12px;
}

@media (max-width: 639px) {
    .modal {
        align-items: flex-end;
        padding: 0;
    }

    .modal-panel--age {
        width: 100%;
        max-height: min(94dvh, 100%);
        border-radius: 22px 22px 0 0;
        overflow-y: auto;
    }

    .modal-age-art {
        padding: 14px 14px 0;
    }

    .modal-age-banner {
        display: block;
    }

    .modal-age-poster {
        display: none;
    }

    .modal-age-content {
        padding: 18px 18px calc(22px + env(safe-area-inset-bottom, 0px));
    }

    .modal-age-content .btn-lg {
        width: 100%;
    }
}

.modal-age-content {
    padding: 28px 24px 32px;
    text-align: center;
    display: grid;
    gap: 12px;
    align-content: center;
}

.modal-age-content h2 {
    margin: 0;
    font-size: 1.35rem;
}

.modal-age-content p {
    margin: 0 0 4px;
    color: #666;
    line-height: 1.55;
    font-size: .9375rem;
}

.modal-panel--notice {
    padding: 40px 32px;
    text-align: center;
}

.modal-check {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--gold);
    position: relative;
}

.modal-check::after {
    content: '';
    position: absolute;
    inset: 18px 16px 16px 18px;
    background: var(--ink);
    clip-path: polygon(14% 44%, 0 59%, 42% 100%, 100% 18%, 84% 4%, 38% 62%);
}

.modal-panel--notice h2 {
    margin: 0 0 10px;
    color: var(--red-mid);
}

.modal-panel--notice p {
    margin: 0 0 22px;
    color: #555;
    line-height: 1.6;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
    padding: 48px 0 20px;
    background: var(--ink);
    color: rgba(255,255,255,.5);
    font-size: .8125rem;
}

.footer-row {
    display: grid;
    gap: 24px;
    margin-bottom: 28px;
}

@media (min-width: 640px) {
    .footer-row {
        grid-template-columns: 1fr auto;
        align-items: start;
    }
}

.footer-row p {
    margin: 10px 0 0;
    max-width: 360px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

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

.footer-copy {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

/* ── Reveal ──────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

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

/* ── Catalog v8 · cards + carrinho ───────────────────────── */
.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: var(--white);
    cursor: pointer;
}

.header-cart.has-items {
    border-color: var(--gold);
    background: rgba(226,192,74,.12);
}

.header-cart-icon {
    width: 18px;
    height: 18px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M6 6h15l-1.5 9h-12z'/%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='18' cy='20' r='1'/%3E%3Cpath d='M6 6 5 3H2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: .625rem;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.catalog-filter {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: var(--text-muted);
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
}

.catalog-filter.is-active,
.catalog-filter:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(226,192,74,.1);
}

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

@media (min-width: 760px) {
    .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
    .catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.beer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 12px 32px rgba(0,0,0,.22);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.beer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.beer-card.is-in-cart {
    box-shadow: 0 0 0 2px var(--gold), 0 18px 40px rgba(226,192,74,.16);
}

.beer-card.is-filtered-out { display: none; }

.beer-card--featured {
    grid-column: 1 / -1;
    flex-direction: row;
}

@media (max-width: 639px) {
    .beer-card--featured { flex-direction: column; }
}

.beer-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: .625rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.beer-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    padding: 18px;
    background:
        radial-gradient(circle at 50% 100%, rgba(200,16,46,.12), transparent 65%),
        linear-gradient(180deg, #fafafa 0%, #ececec 100%);
}

.beer-card--featured .beer-card-media {
    flex: 0 0 min(42%, 320px);
    min-height: 260px;
}

.beer-card-media img {
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}

.beer-card-media--pack img { max-height: 140px; }

.beer-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 16px 18px;
    flex: 1;
}

.beer-card-category {
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--red);
}

.beer-card-body h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.15;
}

.beer-card-variant {
    margin: 0;
    font-size: .8125rem;
    font-weight: 700;
    color: #666;
}

.beer-card-desc {
    margin: 0;
    flex: 1;
    font-size: .8125rem;
    line-height: 1.5;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.beer-card-pricing {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.beer-card-pricing s {
    font-size: .8125rem;
    color: #999;
    margin-right: 6px;
}

.beer-card-pricing strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--red);
    letter-spacing: .03em;
}

.beer-card-extra {
    font-size: .6875rem;
    font-weight: 700;
    color: #777;
    text-align: right;
}

.beer-card-actions {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}

.qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 999px;
    overflow: hidden;
    background: #fafafa;
}

.qty-stepper--sm { transform: scale(.92); transform-origin: right center; }

.qty-btn {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.qty-btn:hover { background: #eee; }

.qty-value {
    min-width: 24px;
    text-align: center;
    font-size: .875rem;
    font-weight: 800;
}

.btn-add {
    width: 100%;
    padding: 11px 14px;
    font-size: .8125rem;
}

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
}

.cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    color: var(--ink);
    box-shadow: -12px 0 40px rgba(0,0,0,.28);
}

.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.cart-drawer-head h2 {
    margin: 0;
    font-size: 1.1rem;
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.cart-drawer-body {
    flex: 1;
    overflow: auto;
    padding: 16px 20px;
}

.cart-empty {
    margin: 0;
    color: #666;
    text-align: center;
    padding: 40px 0;
}

.cart-line {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-line-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #f5f5f5 center/contain no-repeat;
}

.cart-line-copy strong {
    display: block;
    font-size: .875rem;
}

.cart-line-copy span {
    font-size: .75rem;
    color: #666;
}

.cart-drawer-foot {
    padding: 16px 20px 24px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.cart-drawer-lines {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.cart-drawer-lines div {
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
}

.cart-drawer-note {
    margin: 0 0 14px;
    font-size: .75rem;
    color: #666;
}

body.cart-open { overflow: hidden; }

.dock-info {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    padding: 0;
}

.dock-price span {
    display: block;
    font-size: .6875rem;
    opacity: .75;
}

@media (max-width: 639px) {
    .header-links { display: none; }
    .catalog-grid { grid-template-columns: 1fr; }
    .beer-card-actions { grid-template-columns: 1fr; }
    .qty-stepper { justify-self: start; }
}

