/* 鸭嘴兽 — 深色科技感全站视觉系统 v2.0 */
:root {
    --bg:            #07090f;
    --surface:       #0d1220;
    --surface-soft:  #111827;
    --card-bg:       #0d1220;
    --text:          #e2e8f0;
    --text-muted:    #94a3b8;
    --border:        rgba(255,255,255,0.07);
    --border-gold:   rgba(201,150,58,0.22);
    --accent:        #c9963a;
    --accent-hover:  #b8832a;
    --gold:          #c9963a;
    --gold-light:    #f0c060;
    --red:           #ef4444;
    --green:         #22c55e;
    --radius:        12px;
    --radius-lg:     18px;
    --shadow-sm:     0 2px 12px rgba(0,0,0,0.45);
    --shadow-md:     0 8px 32px rgba(0,0,0,0.55);
    --shadow-gold:   0 4px 28px rgba(201,150,58,0.18);
}

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

body {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══ HEADER ═══ */
.header {
    background: rgba(7,9,15,0.88);
    border-bottom: 1px solid var(--border-gold);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header .container {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { color: var(--text); text-decoration: none; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.3px; }
.logo-accent { color: var(--gold); }
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { color: var(--text-muted); text-decoration: none; font-size: 0.93rem; font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--text); }
.cart-link {
    background: linear-gradient(135deg, var(--gold), var(--accent-hover));
    color: #fff !important;
    border-radius: 10px;
    padding: 9px 16px;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(201,150,58,0.3);
    transition: opacity .2s, transform .15s;
}
.cart-link:hover { opacity: .9; transform: translateY(-1px); }
.cart-link span { margin-left: 4px; background: rgba(255,255,255,0.2); color: #fff; padding: 1px 7px; border-radius: 6px; font-size: .82rem; }
.cart-link.is-disabled,
.btn-primary.is-disabled,
.btn-secondary.is-disabled {
    opacity: .45 !important;
    pointer-events: none;
    box-shadow: none;
}

.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn { background: none; border: none; cursor: pointer; font-size: .85rem; color: var(--text-muted); padding: 4px 8px; border-radius: 6px; font-family: inherit; font-weight: 500; transition: color .2s, background .2s; }
.lang-btn:hover { color: var(--text); background: rgba(255,255,255,.06); }
.lang-btn.active { color: var(--gold); font-weight: 700; }
.lang-sep { color: var(--border); font-size: .8rem; }

/* ═══ COUNTDOWN BAR ═══ */
.countdown-bar {
    background: linear-gradient(90deg, #0f1a0a 0%, #1a2a0f 50%, #0f1a0a 100%);
    border-bottom: 1px solid rgba(34,197,94,0.25);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}
.countdown-bar-inner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.countdown-fire { font-size: 1.1rem; }
.countdown-label { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.8); letter-spacing: .03em; }
.countdown-clock { display: flex; align-items: center; gap: 4px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; background: rgba(0,0,0,.35); border: 1px solid rgba(34,197,94,0.3); border-radius: 6px; padding: 2px 8px; min-width: 40px; }
.cd-unit span { font-size: 1rem; font-weight: 800; color: var(--green); line-height: 1.2; }
.cd-unit small { font-size: .58rem; color: rgba(255,255,255,.5); letter-spacing: .04em; }
.cd-sep { color: var(--green); font-weight: 800; font-size: 1.1rem; margin: 0 1px; }
.countdown-cta { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; text-decoration: none; padding: 6px 18px; border-radius: 8px; font-weight: 700; font-size: .82rem; transition: opacity .2s, transform .15s; white-space: nowrap; }
.countdown-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ═══ HERO ═══ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 0 80px;
}
.hero-bg-img { position: absolute; inset: 0; background: url('../images/havancloud-hero.jpg') center center / cover no-repeat; z-index: 0; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(5,8,18,0.92) 0%, rgba(10,15,30,0.85) 50%, rgba(20,10,5,0.88) 100%);
    z-index: 1;
}
.hero::before {
    content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,150,58,0.08) 0%, transparent 65%);
    top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,150,58,0.12); border: 1px solid rgba(201,150,58,0.35);
    color: var(--gold-light); font-size: .8rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; padding: 6px 18px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { font-size: 3.6rem; line-height: 1.15; font-weight: 800; color: #fff; margin-bottom: 18px; letter-spacing: -0.8px; }
.hero-highlight { color: var(--gold-light); position: relative; display: inline-block; }
.hero-highlight::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); border-radius: 2px; }
.hero p { font-size: 1.08rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 32px; line-height: 1.75; }
.hero-cta-row { display: flex; gap: 14px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--accent-hover)); color: #fff;
    padding: 16px 40px; border-radius: 12px; font-weight: 800; font-size: 1.02rem;
    text-decoration: none; transition: transform .15s, box-shadow .2s; display: inline-block;
    box-shadow: 0 4px 20px rgba(201,150,58,0.4);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(201,150,58,0.55); }
.btn-hero-secondary {
    background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.25);
    padding: 16px 40px; border-radius: 12px; font-weight: 600; font-size: 1.02rem;
    text-decoration: none; transition: background .2s, border-color .2s, transform .15s; display: inline-block; backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.trust-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.trust-badges span { padding: 7px 16px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); border-radius: 999px; color: rgba(255,255,255,0.8); font-size: .82rem; font-weight: 500; backdrop-filter: blur(4px); transition: border-color .2s, background .2s; }
.trust-badges span:hover { border-color: rgba(201,150,58,0.4); background: rgba(201,150,58,0.08); }

/* ═══ MARQUEE ═══ */
.marquee-bar {
    background: linear-gradient(90deg, #050810 0%, #0a1220 50%, #050810 100%);
    border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold);
    overflow: hidden; position: relative; height: 46px; display: flex; align-items: center;
}
.marquee-bar::before { left: 0; background: linear-gradient(90deg, #050810, transparent); }
.marquee-bar::after  { right: 0; background: linear-gradient(-90deg, #050810, transparent); }
.marquee-bar::before, .marquee-bar::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 38s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-content { display: flex; align-items: center; white-space: nowrap; padding: 0 16px; }
.marquee-content span { font-size: .8rem; font-weight: 600; color: rgba(240,192,96,.9); letter-spacing: .03em; padding: 0 18px; line-height: 46px; transition: color .2s; }
.marquee-content span:not(.marquee-dot):hover { color: #fff; }
.marquee-dot { color: rgba(201,150,58,.35) !important; font-size: .65rem !important; padding: 0 4px !important; }

/* ═══ HOT PRODUCTS ═══ */
.hot-section { padding: 60px 0 20px; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(201,150,58,.1); border: 1px solid var(--border-gold); color: var(--gold-light); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 12px; }
.section-header h2 { font-size: 2.1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.section-header .section-sub { color: var(--text-muted); font-size: .95rem; }
.hot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.hot-card { position: relative; background: var(--surface); border: 1px solid var(--border-gold); border-radius: 20px; overflow: hidden; transition: transform .28s, box-shadow .28s, border-color .28s; cursor: pointer; text-decoration: none; color: var(--text); display: flex; flex-direction: column; }
.hot-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(201,150,58,0.2); border-color: rgba(201,150,58,0.5); }
.hot-card-badge { position: absolute; top: 14px; left: 14px; background: linear-gradient(135deg,#ef4444,#dc2626); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; z-index: 3; box-shadow: 0 2px 10px rgba(239,68,68,0.4); }
.hot-card-image { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg,#0d1520,#141e30); position: relative; }
.hot-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.hot-card:hover .hot-card-image img { transform: scale(1.06); }
.hot-card-shine { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,255,255,0.04) 0%,transparent 50%); pointer-events: none; }
.hot-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.hot-card-brand { font-size: .72rem; font-weight: 700; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }
.hot-card-name { font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.hot-card-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.hot-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); margin-top: 4px; }
.hot-card-price { font-size: 1.4rem; font-weight: 800; color: var(--gold-light); }
.hot-card-price small { font-size: .75rem; font-weight: 500; color: var(--text-muted); }
.hot-card-btn { background: linear-gradient(135deg,var(--gold),var(--accent-hover)); color: #fff; border: none; border-radius: 10px; padding: 9px 18px; font-size: .85rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: opacity .2s, transform .15s; white-space: nowrap; }
.hot-card-btn:hover { opacity: .9; transform: translateY(-1px); }

/* ═══ PRODUCTS SECTION ═══ */
.products-section { padding: 48px 0 72px; }
.products-section > .container > h2 { margin-bottom: 8px; font-size: 2rem; font-weight: 800; text-align: center; color: var(--text); }
.products-section .section-sub { text-align: center; color: var(--text-muted); font-size: .95rem; margin-bottom: 40px; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .28s, transform .28s, border-color .28s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(201,150,58,0.16); border-color: var(--border-gold); }
.product-card-image { position: relative; background: linear-gradient(135deg,#0d1520,#141e30); aspect-ratio: 4/3; overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-overlay { display: none; }
.btn-quick-view { display: none; }
.product-card-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.product-badge { font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: .03em; text-transform: uppercase; }
.product-badge-flavors { background: rgba(201,150,58,0.15); color: var(--gold-light); }
.product-badge-ship { background: rgba(34,197,94,0.12); color: #4ade80; }
.product-badge-min { background: rgba(239,68,68,0.12); color: #f87171; }
.product-card-content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; color: var(--text); }
.product-card-tagline { color: var(--text-muted); font-size: .87rem; line-height: 1.55; margin-bottom: 14px; flex: 1; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.product-card-footer .price { color: var(--gold-light); font-weight: 800; font-size: 1.28rem; }
.product-card-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.product-card-actions .btn-add-cart { width: 100%; text-align: center; }
.product-card-actions .btn-view { width: 100%; text-align: center; display: block; }

/* ═══ VIDEO ═══ */
.video-section { padding: 10px 0 56px; }
.video-section h2 { margin-bottom: 18px; font-size: 1.5rem; color: var(--text); }
.video-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.video-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s; }
.video-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.video-thumb { position: relative; aspect-ratio: 16/9; cursor: pointer; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 999px; border: none; background: rgba(0,0,0,.65); color: #fff; font-size: 20px; cursor: pointer; transition: background .2s, transform .2s; }
.video-play:hover { background: var(--gold); transform: translate(-50%,-50%) scale(1.1); }
.video-card-body { padding: 12px; }
.video-card-body h3 { font-size: .96rem; margin-bottom: 4px; color: var(--text); }
.video-card-body p { color: var(--text-muted); font-size: .84rem; }
.video-modal { position: fixed; inset: 0; z-index: 1200; background: rgba(0,0,0,.85); display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(6px); }
.video-modal.hidden { display: none; }
.video-modal-content { width: min(980px,100%); background: #000; border-radius: 14px; overflow: hidden; position: relative; border: 1px solid var(--border-gold); }
.video-close { position: absolute; right: 10px; top: 10px; z-index: 2; border: none; background: rgba(0,0,0,.65); color: #fff; width: 36px; height: 36px; border-radius: 999px; font-size: 18px; cursor: pointer; transition: background .2s; }
.video-close:hover { background: var(--red); }
.video-modal-content video { width: 100%; max-height: 80vh; display: block; background: #000; }

/* ═══ BUTTONS ═══ */
.btn-primary, .btn-add-cart {
    background: linear-gradient(135deg, var(--gold), var(--accent-hover));
    color: #fff; border: none; border-radius: 10px; padding: 11px 18px;
    font-size: .88rem; font-weight: 700; cursor: pointer; text-decoration: none;
    display: inline-block; transition: opacity .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 2px 12px rgba(201,150,58,0.28); font-family: inherit;
}
.btn-primary:hover, .btn-add-cart:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,150,58,0.45); }
.btn-add-cart.added { background: linear-gradient(135deg,#22c55e,#16a34a); }
.btn-secondary {
    background: rgba(255,255,255,.06); color: var(--text-muted); border: 1px solid var(--border);
    border-radius: 10px; padding: 11px 18px; font-size: .88rem; font-weight: 600; cursor: pointer;
    text-decoration: none; display: inline-block; transition: background .2s, border-color .2s, color .2s; font-family: inherit;
}
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--border-gold); color: var(--text); }
.btn-full { width: 100%; }
.btn-add-large { padding: 14px 20px; font-size: .97rem; }

/* ═══ PRODUCT DETAIL ═══ */
.product-page { padding: 32px 0 52px; }
.product-detail { background: transparent; }
.breadcrumb { color: var(--text-muted); font-size: .86rem; margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.product-detail-main { display: grid; grid-template-columns: 1.05fr 1fr; gap: 28px; }
.product-gallery, .product-info { min-width: 0; }
.product-gallery-main { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); width: 100%; aspect-ratio: 1/1; max-height: 480px; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.product-gallery-strip { position: relative; margin-top: 10px; width: 100%; overflow: hidden; }
.product-gallery-thumbs { display: flex; gap: 8px; width: 100%; overflow-x: auto; scroll-behavior: smooth; padding: 4px 2px 6px; scrollbar-width: none; }
.product-gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb { width: 68px; height: 68px; border: 2px solid var(--border); border-radius: 10px; object-fit: cover; cursor: pointer; flex-shrink: 0; transition: border-color .18s, transform .18s, box-shadow .18s; background: var(--surface); }
.gallery-thumb:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.gallery-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,150,58,.2); transform: translateY(-2px); }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .85rem; color: var(--text-muted); z-index: 2; transition: background .15s, color .15s, opacity .2s; opacity: .85; padding: 0; }
.gallery-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); opacity: 1; }
.gallery-arrow.arrow-prev { left: -14px; }
.gallery-arrow.arrow-next { right: -14px; }
.gallery-arrow.hidden { opacity: 0; pointer-events: none; }
.product-info { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; min-width: 0; overflow: hidden; }
.product-info h1 { font-size: 1.7rem; margin-bottom: 10px; color: var(--text); }
.product-info .price { color: var(--gold-light); font-size: 1.75rem; font-weight: 800; margin-bottom: 14px; display: block; }
.product-info .description { color: var(--text-muted); margin-bottom: 6px; font-size: .9rem; line-height: 1.65; }
.desc-collapsed { max-height: 72px; overflow: hidden; position: relative; }
.desc-collapsed::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 28px; background: linear-gradient(transparent, var(--surface)); pointer-events: none; }
.desc-toggle { background: none; border: none; color: var(--gold); font-size: .8rem; font-weight: 600; cursor: pointer; padding: 0; margin-bottom: 12px; font-family: inherit; }
.desc-toggle:hover { text-decoration: underline; }
.pd-trust-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 4px; margin-top: 14px; padding: 12px 16px; background: rgba(201,150,58,0.06); border: 1px solid var(--border-gold); border-radius: 12px; font-size: .76rem; font-weight: 600; color: rgba(240,192,96,0.8); }
.pd-trust-sep { color: rgba(201,150,58,.35); font-size: .7rem; }
.pd-specs { margin-top: 16px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.pd-specs-title { background: rgba(255,255,255,0.04); padding: 10px 16px; font-size: .8rem; font-weight: 700; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; border-bottom: 1px solid var(--border); }
.pd-spec-row { display: flex; align-items: center; padding: 9px 16px; border-bottom: 1px solid var(--border); font-size: .84rem; }
.pd-spec-row:last-child { border-bottom: none; }
.pd-spec-key { color: var(--text-muted); width: 90px; flex-shrink: 0; }
.pd-spec-val { color: var(--text); font-weight: 600; }
.btn-buy-now { background: linear-gradient(135deg,#ef4444,#dc2626); color: #fff; border: none; border-radius: 10px; padding: 14px 20px; font-size: .97rem; font-weight: 800; cursor: pointer; text-decoration: none; display: block; width: 100%; text-align: center; transition: opacity .2s, transform .15s, box-shadow .2s; box-shadow: 0 4px 18px rgba(239,68,68,0.35); font-family: inherit; margin-top: 10px; }
.btn-buy-now:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(239,68,68,0.5); }
.quantity-selector { margin-bottom: 16px; }
.quantity-selector label { display: block; font-size: .9rem; margin-bottom: 6px; color: var(--text-muted); }
.quantity-selector input { width: 90px; border: 1px solid var(--border); border-radius: 8px; padding: 10px; font-size: 1rem; background: var(--surface-soft); color: var(--text); }
.related-products { margin-top: 40px; }
.related-products h2 { font-size: 1.25rem; margin-bottom: 14px; color: var(--text); }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.related-card { display: block; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; text-decoration: none; color: var(--text); overflow: hidden; transition: border-color .2s, transform .2s; }
.related-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.related-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.related-card h3 { font-size: .88rem; padding: 10px 10px 4px; color: var(--text); }
.related-card .price { color: var(--gold-light); padding: 0 10px 10px; font-weight: 700; font-size: .9rem; }
.fomo-hook { margin-top: 18px; padding: 12px 16px; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.22); border-radius: 12px; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.15)} }
.pulse-dot { animation: pulse 1.5s infinite; }

/* ═══ CART ═══ */
.cart-page, .checkout-page, .page-content { padding: 40px 0 52px; }
.cart-page h1, .checkout-page h1, .page-content h1 { margin-bottom: 24px; font-size: 1.9rem; color: var(--text); }
.cart-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; display: flex; align-items: center; gap: 16px; margin-bottom: 12px; transition: border-color .2s; }
.cart-item:hover { border-color: var(--border-gold); }
.cart-item img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cart-item-info .price { color: var(--gold-light); font-weight: 700; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.qty-btn { background: rgba(255,255,255,0.04); border: none; color: var(--text); width: 34px; height: 34px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: background .15s, color .15s; font-family: inherit; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--gold); color: #fff; }
.qty-val { min-width: 36px; text-align: center; font-weight: 700; font-size: .95rem; color: var(--text); border-left: 1px solid var(--border); border-right: 1px solid var(--border); line-height: 34px; }
.cart-item-subtotal { font-weight: 800; font-size: 1.05rem; color: var(--gold-light); white-space: nowrap; min-width: 70px; text-align: right; }
.cart-item-remove { color: var(--red); cursor: pointer; font-size: .82rem; font-weight: 600; transition: opacity .2s; border: 1px solid rgba(239,68,68,0.25); border-radius: 8px; padding: 5px 10px; background: rgba(239,68,68,0.07); white-space: nowrap; flex-shrink: 0; }
.cart-item-remove:hover { opacity: .75; }
.cart-footer, .order-summary, .checkout-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.cart-footer { padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.cart-footer-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cart-total { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.cart-total strong { color: var(--gold-light); }
.cart-empty { background: var(--surface); border: 1px dashed var(--border-gold); border-radius: var(--radius-lg); text-align: center; padding: 48px 28px; color: var(--text-muted); }
.cart-empty p { font-size: 1.05rem; margin-bottom: 16px; }
.cart-empty a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ═══ CHECKOUT ═══ */
.checkout-content { display: grid; grid-template-columns: 1fr 380px; gap: 16px; }
.checkout-form { padding: 18px; }
.checkout-form h2, .order-summary h2 { margin-bottom: 12px; font-size: 1.2rem; color: var(--text); }
.checkout-form label { display: block; color: var(--text-muted); font-size: .86rem; margin: 10px 0 5px; }
.checkout-form input { width: 100%; border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 14px; font-size: .93rem; background: var(--surface-soft); color: var(--text); font-family: inherit; outline: none; transition: border-color .2s, box-shadow .2s; }
.checkout-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,150,58,0.12); }
.checkout-form select { width: 100%; border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 14px; font-size: .93rem; background: var(--surface-soft); color: var(--text); font-family: inherit; outline: none; }
.order-summary { padding: 18px; align-self: start; }
.order-item { display: flex; justify-content: space-between; border-bottom: 1px solid var(--border); padding: 8px 0; font-size: .9rem; color: var(--text-muted); }
.order-total { margin: 14px 0; font-size: 1.05rem; color: var(--text); }
.usdt-modal { position: fixed; inset: 0; background: rgba(0,0,0,.75); display: flex; align-items: center; justify-content: center; z-index: 9999; backdrop-filter: blur(6px); }
.usdt-modal.hidden { display: none; }
.usdt-modal-content { width: 92%; max-width: 460px; background: var(--surface); border: 1px solid var(--border-gold); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 24px 64px rgba(0,0,0,.7); }
.usdt-modal-content h2 { margin-bottom: 6px; color: var(--text); }
.usdt-amount { color: var(--gold-light); font-weight: 700; font-size: 1.15rem; margin: 14px 0; }
.usdt-address input { width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: 9px 12px; margin: 8px 0; background: var(--surface-soft); color: var(--text); font-family: inherit; }
.usdt-qr { margin: 12px 0; text-align: center; }
.usdt-qr img { width: min(260px, 78vw); height: min(260px, 78vw); border: 1px solid var(--border); border-radius: 10px; background: #fff; object-fit: contain; }
.usdt-note { font-size: .84rem; color: var(--text-muted); }
.usdt-warning { font-size: .8rem; color: var(--red); margin: 10px 0 14px; }
.modal-btn-row { display: flex; gap: 12px; margin-top: 4px; }
.modal-btn-confirm { flex: 1.4; background: linear-gradient(135deg,var(--gold),var(--accent-hover)); color: #fff; border: none; border-radius: 10px; padding: 13px 16px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: opacity .2s, transform .15s; font-family: inherit; }
.modal-btn-confirm:hover { opacity: .88; transform: translateY(-1px); }
.modal-btn-later { flex: 1; background: transparent; color: var(--text-muted); border: 1.5px solid var(--border); border-radius: 10px; padding: 13px 16px; font-size: .93rem; font-weight: 600; cursor: pointer; transition: background .18s, color .18s, border-color .18s, transform .15s; font-family: inherit; white-space: nowrap; }
.modal-btn-later:hover { background: rgba(255,255,255,.05); border-color: var(--border-gold); color: var(--text); transform: translateY(-1px); }
.modal-later-hint { text-align: center; font-size: .75rem; color: var(--text-muted); margin-top: 10px; margin-bottom: 0; }

/* ═══ PROMO POPUP ═══ */
.promo-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.78); z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(8px); animation: promoFadeIn .4s ease; }
.promo-modal-overlay.hidden { display: none; }
@keyframes promoFadeIn { from{opacity:0} to{opacity:1} }
.promo-modal { position: relative; background: linear-gradient(145deg,#0d1a2e,#1a0d05); border: 1px solid rgba(201,150,58,0.35); border-radius: 24px; padding: 44px 36px 36px; max-width: 420px; width: 100%; text-align: center; box-shadow: 0 32px 80px rgba(0,0,0,0.7); animation: promoSlideUp .45s cubic-bezier(.34,1.56,.64,1) both; overflow: hidden; }
.promo-modal::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -10%,rgba(240,192,96,0.14) 0%,transparent 65%); pointer-events: none; }
@keyframes promoSlideUp { from{opacity:0;transform:translateY(40px) scale(.94)} to{opacity:1;transform:translateY(0) scale(1)} }
.promo-close { position: absolute; top: 14px; right: 16px; background: rgba(255,255,255,0.06); border: none; color: var(--text-muted); width: 32px; height: 32px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.promo-close:hover { background: rgba(255,255,255,.12); color: var(--text); }
.promo-badge { display: inline-block; background: linear-gradient(135deg,var(--gold),var(--accent-hover)); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 14px; border-radius: 999px; margin-bottom: 14px; }
.promo-title { font-size: 1.6rem; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.25; }
.promo-sub { font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.promo-sub span { color: var(--red); font-weight: 700; }
.promo-code-box { display: flex; align-items: center; gap: 10px; background: rgba(201,150,58,0.1); border: 1.5px dashed rgba(201,150,58,0.4); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; justify-content: space-between; }
.promo-code { font-size: 1.35rem; font-weight: 800; color: var(--gold-light); letter-spacing: .08em; font-family: monospace; }
.promo-copy { background: linear-gradient(135deg,var(--gold),var(--accent-hover)); color: #fff; border: none; border-radius: 8px; padding: 8px 14px; font-size: .8rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: opacity .2s; white-space: nowrap; }
.promo-copy:hover { opacity: .85; }
.promo-hint { font-size: .78rem; color: var(--text-muted); margin-bottom: 18px; }
.promo-action { display: block; background: linear-gradient(135deg,var(--gold),var(--accent-hover)); color: #fff; text-decoration: none; padding: 15px; border-radius: 12px; font-weight: 800; font-size: 1.02rem; margin-bottom: 10px; transition: opacity .2s, transform .15s; box-shadow: 0 4px 20px rgba(201,150,58,0.4); }
.promo-action:hover { opacity: .9; transform: translateY(-2px); }
.promo-skip { font-size: .8rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; transition: color .2s; }
.promo-skip:hover { color: var(--text); }

/* ═══ FOOTER ═══ */
.footer { margin-top: 40px; border-top: 1px solid var(--border-gold); background: #04060c; padding: 36px 0 16px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 24px; margin-bottom: 20px; }
.footer-col h4 { font-size: .92rem; margin-bottom: 10px; color: var(--text); }
.footer-col p, .footer-col a { color: var(--text-muted); font-size: .84rem; text-decoration: none; display: block; margin-bottom: 4px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 14px; text-align: center; font-size: .78rem; color: var(--text-muted); }

/* ═══ INNER PAGE THEME ═══ */
.inner-page-shell {
    background:
        radial-gradient(circle at top center, rgba(201,150,58,0.08), transparent 28%),
        linear-gradient(180deg, #07101b 0%, #06090f 100%);
}
.inner-page-shell .surface-panel {
    background: linear-gradient(180deg, rgba(13,18,32,.96) 0%, rgba(12,16,28,.96) 100%);
    border: 1px solid var(--border);
    box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.inner-page-shell .surface-panel h2,
.inner-page-shell .surface-panel h3,
.inner-page-shell .surface-panel h4 {
    color: var(--text);
}
.inner-page-shell .surface-panel p,
.inner-page-shell .surface-panel li,
.inner-page-shell .surface-panel label,
.inner-page-shell .surface-panel a:not(.btn-primary):not(.btn-secondary) {
    color: var(--text-muted);
}
.inner-page-shell .surface-panel input,
.inner-page-shell .surface-panel select,
.inner-page-shell .surface-panel textarea {
    background: var(--surface-soft);
    border-color: var(--border);
    color: var(--text);
}
.inner-page-shell .surface-panel input:focus,
.inner-page-shell .surface-panel select:focus,
.inner-page-shell .surface-panel textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,150,58,.12);
}

/* ═══ TOAST ═══ */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%,120%); background: var(--surface); border: 1px solid var(--border-gold); color: var(--text); border-radius: 999px; font-size: .88rem; font-weight: 600; padding: 11px 20px; z-index: 9999; opacity: 0; transition: all .28s ease; box-shadow: 0 8px 28px rgba(0,0,0,.5); }
.toast.show { transform: translate(-50%,0); opacity: 1; }
.toast-error { border-color: rgba(239,68,68,.4); }

/* ═══ AGE GATE ═══ */
.age-gate-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; z-index: 2000; backdrop-filter: blur(10px); }
.age-gate-overlay.hidden { display: none; }
.age-gate-modal { width: 92%; max-width: 420px; background: linear-gradient(145deg,#0d1220,#0a0f1c); border: 1px solid var(--border-gold); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; box-shadow: 0 24px 64px rgba(0,0,0,.8); position: relative; overflow: hidden; }
.age-gate-modal::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%,rgba(201,150,58,0.1),transparent 65%); pointer-events: none; }
.age-gate-modal h1 { font-size: 1.55rem; margin-bottom: 8px; color: var(--text); }
.age-gate-modal p { color: var(--text-muted); font-size: .9rem; margin-bottom: 8px; }
.age-warning { margin-top: 2px !important; font-size: .8rem !important; }
.age-gate-buttons { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.hidden { display: none !important; }

/* ═══ FLAVOR SELECTOR ═══ */
.flavor-section { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.flavor-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; gap: 8px; }
.flavor-label { font-weight: 700; font-size: .95rem; color: var(--text); }
.flavor-required-hint { font-size: .78rem; color: var(--red); display: none; }
.flavor-required-hint.show { display: inline; }
.flavor-selected-badge { font-size: .8rem; font-weight: 600; color: var(--gold); background: rgba(201,150,58,0.12); border-radius: 999px; padding: 3px 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.flavor-track { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; max-height: 300px; overflow-y: auto; overflow-x: hidden; padding-right: 4px; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.flavor-track::-webkit-scrollbar { width: 4px; }
.flavor-track::-webkit-scrollbar-track { background: transparent; }
.flavor-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.flavor-chip-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.flavor-chip-qty { display: flex; align-items: center; gap: 4px; background: var(--surface); border: 1.5px solid var(--gold); border-radius: 999px; padding: 2px 4px; font-size: .78rem; font-weight: 600; color: var(--gold); }
.flavor-chip-qty.hidden { display: none; }
.fq-btn { background: none; border: none; cursor: pointer; font-size: 1rem; font-weight: 700; color: var(--gold); line-height: 1; padding: 0 4px; border-radius: 50%; transition: background .12s; }
.fq-btn:hover { background: rgba(201,150,58,0.15); }
.fq-val { min-width: 18px; text-align: center; }
.flavor-summary { margin-top: 10px; }
.flavor-summary-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.flavor-summary-tag { background: rgba(201,150,58,0.12); color: var(--gold); border-radius: 999px; padding: 3px 10px; font-size: .78rem; font-weight: 600; }
.flavor-summary-total { font-size: .8rem; color: var(--text-muted); font-weight: 500; margin-left: 4px; }
.flavor-chip { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 6px 5px 5px; border: 1.5px solid var(--border); border-radius: 10px; background: var(--surface-soft); cursor: pointer; width: 100%; transition: border-color .15s, background .15s, transform .12s; font-size: .68rem; font-weight: 500; color: var(--text-muted); text-align: center; line-height: 1.2; position: relative; }
.flavor-chip:hover { border-color: var(--gold); transform: translateY(-1px); }
.flavor-chip.selected { border-color: var(--gold); background: rgba(201,150,58,0.1); }
.flavor-chip.selected::after { content: '✓'; position: absolute; top: 3px; right: 5px; font-size: .65rem; color: var(--gold); font-weight: 700; }
.flavor-dot { width: 30px; height: 30px; border-radius: 50%; display: block; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,.1); box-shadow: 0 1px 4px rgba(0,0,0,.3); }
.flavor-chip-img { width: 42px; height: 42px; border-radius: 6px; object-fit: cover; display: block; flex-shrink: 0; border: 1px solid rgba(255,255,255,.06); }
.flavor-chip-name { word-break: break-word; hyphens: auto; color: var(--text-muted); }
.cart-flavor-tag { display: inline-block; font-size: .75rem; color: var(--gold); background: rgba(201,150,58,0.12); border-radius: 999px; padding: 1px 8px; margin-top: 3px; font-weight: 500; }

/* ═══ HAMBURGER + DRAWER ═══ */
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 6px; z-index: 201; }
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--text-muted); margin: 4px 0; border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-cart-link { display: none; }
.mobile-cart-link.cart-link { background: linear-gradient(135deg,var(--gold),var(--accent-hover)) !important; color: #fff !important; font-weight: 700; box-shadow: 0 2px 10px rgba(201,150,58,.4); }
.nav-drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 199; opacity: 0; transition: opacity .3s; backdrop-filter: blur(4px); }
.nav-drawer-overlay.open { display: block; opacity: 1; }
.nav-drawer { position: fixed; top: 0; right: -290px; width: 270px; height: 100%; background: var(--surface); border-left: 1px solid var(--border-gold); z-index: 200; box-shadow: -8px 0 32px rgba(0,0,0,.5); transition: right .3s ease; display: flex; flex-direction: column; padding: 76px 24px 32px; }
.nav-drawer.open { right: 0; }
.nav-drawer a { display: block; padding: 14px 0; font-size: 1rem; font-weight: 600; color: var(--text-muted); text-decoration: none; border-bottom: 1px solid var(--border); transition: color .2s; }
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .cart-link { margin-top: 20px; text-align: center; border-radius: 12px; }

/* ═══ BACK TO TOP ═══ */
.back-to-top { position: fixed; bottom: 110px; right: 26px; z-index: 90; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--accent-hover)); color: #fff; border: none; cursor: pointer; font-size: 1.1rem; box-shadow: 0 4px 16px rgba(201,150,58,.35); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; display: flex; align-items: center; justify-content: center; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: scale(1.12) translateY(-2px); }

/* ═══ SKELETON ═══ */
.skeleton { background: linear-gradient(90deg,#0e1421 25%,#141e2e 50%,#0e1421 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius); }
.skeleton-card { height: 320px; }
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }

/* ═══ PAGE CONTENT ═══ */
.page-content .lead { color: var(--text-muted); margin-bottom: 16px; }
.content-block { margin-bottom: 24px; }
.content-block h2 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.content-block ul { margin-left: 18px; color: var(--text-muted); }
.content-block li { margin-bottom: 6px; }

/* ═══ RESPONSIVE 960px ═══ */
@media (max-width: 960px) {
    .product-detail-main { grid-template-columns: 1fr; }
    .product-gallery-main { max-height: 340px; aspect-ratio: 4/3; }
    .checkout-content { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2,1fr); }
    .video-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .flavor-track { grid-template-columns: repeat(5,1fr); }
    .hot-grid { grid-template-columns: repeat(2,1fr); }
}

/* ═══ RESPONSIVE 700px ═══ */
@media (max-width: 700px) {
    .container { padding: 0 16px; }
    .hero { padding: 72px 0 60px; min-height: 480px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: .95rem; }
    .hero-cta-row { flex-direction: column; align-items: center; gap: 10px; }
    .btn-hero-primary, .btn-hero-secondary { width: 240px; text-align: center; padding: 14px 24px; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .products-section { padding: 36px 0 44px; }
    .product-card-image { aspect-ratio: 16/9; }
    .product-card-content { padding: 14px; }
    .products-section > .container > h2 { font-size: 1.5rem; }
    .hot-grid { grid-template-columns: 1fr; gap: 16px; }
    .hot-section { padding: 40px 0 10px; }
    .section-header h2 { font-size: 1.6rem; }
    .video-grid { grid-template-columns: 1fr; }
    .cart-item { flex-wrap: wrap; align-items: flex-start; gap: 12px; }
    .cart-item img { width: 64px; height: 64px; }
    .cart-item-info { width: calc(100% - 80px); }
    .cart-item-subtotal { text-align: left; }
    .usdt-modal-content { padding: 20px; max-height: 92vh; overflow-y: auto; }
    .modal-btn-row { flex-direction: column; }
    .modal-btn-confirm, .modal-btn-later { width: 100%; }
    .hamburger { display: block; }
    .mobile-cart-link { display: inline-flex; }
    .header .container { min-height: 58px; padding: 0 16px; }
    .header .nav { display: none; }
    .header .header-right { display: flex; align-items: center; gap: 10px; }
    .flavor-track { grid-template-columns: repeat(3,1fr) !important; gap: 6px !important; }
    .flavor-chip { font-size: .72rem !important; padding: 5px 4px !important; }
    .back-to-top { bottom: 80px; right: 16px; width: 42px; height: 42px; font-size: .95rem; }
    .countdown-bar-inner { gap: 8px; }
    .countdown-label { display: none; }
    .promo-modal { padding: 36px 20px 28px; }
    .promo-title { font-size: 1.35rem; }
    .promo-code { font-size: 1.1rem; }
    .promo-code-box { flex-direction: column; gap: 8px; }
}
