/* Vape Daily — bold ember theme (warm midnight bg + orange-amber accent).
   Same class architecture as the EU site, but the palette is loud and warm —
   premium combustion energy vs the cream/indigo editorial calm. */
:root {
  --bg: #0c0807;
  --bg-2: #140d0a;
  --surface: #1b110d;
  --surface-2: #221612;
  --elevated: #25180f;
  --line: #2d1d18;
  --line-soft: #20140f;
  --text: #fff4ec;
  --dim: #c3a89a;
  --faint: #7a655a;
  --mint: #ff6a3d;        /* ember — primary accent */
  --mint-2: #ff3d3d;      /* flame */
  --frost: #ffaa3d;       /* amber */
  --amber: #ffd66e;       /* gold */
  --danger: #ff5252;
  --on-accent: #1a0a04;
  --grad-mint: linear-gradient(135deg, #ff6a3d 0%, #ff3d3d 60%, #ff8a4d 100%);
  --grad-frost: linear-gradient(135deg, #ffaa3d 0%, #ff6a3d 100%);
  --grad-dark: linear-gradient(180deg, #150e0b 0%, #0c0807 100%);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --max: 1200px;
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.75);
  --shadow-mint: 0 18px 44px -18px rgba(255, 106, 61, 0.55);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Bebas Neue', 'Anton', 'Sora', Impact, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { width: 22px; height: 22px; flex: none; }
.store-btn .ic svg { width: 28px; height: 28px; }
.logo-mark svg, .cat-tile svg { width: auto; height: auto; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---- typography ---- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
.eyebrow { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mint); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--dim); }
.mint { color: var(--mint); }
.amber { color: var(--amber); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  height: 54px; padding: 0 28px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 1rem; cursor: pointer; border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  font-family: var(--font);
}
.btn:active { transform: scale(0.96); }
.btn-primary { background: var(--grad-mint); color: var(--on-accent); box-shadow: var(--shadow-mint); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 60px -16px rgba(55, 224, 160, 0.55); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--mint); color: var(--mint); transform: translateY(-2px); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--line-soft); }
.btn-sm { height: 44px; padding: 0 20px; font-size: 0.92rem; }
.btn svg { width: 20px; height: 20px; }

/* store-button (app download) */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 11px 20px; transition: 0.2s; min-width: 200px;
}
.store-btn:hover { border-color: var(--mint); transform: translateY(-3px); background: var(--surface-2); }
.store-btn .ic { width: 28px; height: 28px; flex: none; }
.store-btn small { display: block; font-size: 0.68rem; color: var(--dim); letter-spacing: 0.05em; }
.store-btn b { display: block; font-size: 1.05rem; font-family: var(--display); }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 13, 12, 0.72); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.25rem; }
.logo-mark { width: 30px; height: 30px; border-radius: 9px; background: var(--grad-mint); display: grid; place-items: center; }
.logo-mark span { width: 14px; height: 8px; border-radius: 4px; background: var(--on-accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--dim); font-weight: 600; font-size: 0.95rem; transition: 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.cart-btn { position: relative; width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line-soft); display: grid; place-items: center; cursor: pointer; }
.cart-btn:hover { border-color: var(--mint); }
.cart-count { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: var(--mint); color: var(--on-accent); font-size: 0.7rem; font-weight: 800; display: none; align-items: center; justify-content: center; }
.cart-count.show { display: flex; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line-soft); cursor: pointer; place-items: center; }

/* ---- hero ---- */
.hero { position: relative; overflow: hidden; padding: 90px 0 70px; }
.hero-video, .hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.42; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: radial-gradient(60% 80% at 70% 20%, rgba(55, 224, 160, 0.16), transparent 60%), linear-gradient(180deg, rgba(10,13,12,0.6), rgba(10,13,12,0.95)); }
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero .badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,182,56,0.12); border: 1px solid rgba(255,182,56,0.3); color: var(--amber); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.1em; padding: 7px 14px; border-radius: var(--radius-pill); }
.hero h1 { margin: 22px 0 18px; }
.hero .lead { max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.download-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* ---- sections ---- */
.section { padding: 80px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head p { color: var(--dim); max-width: 520px; margin-top: 8px; }
.see-all { color: var(--mint); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }

/* ---- product grid + cards ---- */
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  display: flex; flex-direction: column; position: relative;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 1; background: var(--surface-2); position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-tag { position: absolute; top: 12px; left: 12px; background: var(--grad-mint); color: var(--on-accent); font-weight: 800; font-size: 0.72rem; padding: 5px 10px; border-radius: var(--radius-pill); }
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-brand { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; color: var(--dim); text-transform: uppercase; }
.card-name { font-family: var(--display); font-weight: 700; font-size: 1rem; line-height: 1.25; min-height: 2.5em; }
.card-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pill { font-size: 0.68rem; font-weight: 800; padding: 4px 9px; border-radius: var(--radius-pill); }
.pill-mint { background: rgba(55,224,160,0.14); color: var(--mint); }
.pill-frost { background: rgba(111,201,255,0.14); color: var(--frost); }
.card-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.price { font-family: var(--display); font-weight: 800; font-size: 1.2rem; }
.price s { color: var(--faint); font-size: 0.85rem; font-weight: 500; margin-left: 6px; }
.add-btn { width: 42px; height: 42px; border-radius: var(--radius-pill); background: var(--grad-mint); border: none; cursor: pointer; display: grid; place-items: center; color: var(--on-accent); transition: transform 0.15s; }
.add-btn:hover { transform: scale(1.1); }
.add-btn:disabled { background: var(--elevated); color: var(--faint); cursor: not-allowed; }
.card-accent { height: 3px; width: 100%; }

/* ---- category tiles ---- */
.cat-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.cat-tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; border: 1px solid var(--line-soft); background: var(--grad-dark); transition: 0.25s; }
.cat-tile:hover { transform: translateY(-5px); border-color: var(--mint); }
.cat-tile .glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; top: -60px; right: -60px; filter: blur(10px); opacity: 0.5; }
.cat-tile h3 { font-size: 1.5rem; position: relative; }
.cat-tile p { color: var(--dim); position: relative; margin-top: 4px; }
.cat-tile .arrow { position: relative; margin-top: 14px; color: var(--mint); font-weight: 800; }

/* ---- ad / feature banner ---- */
.banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 60px 50px; display: flex; flex-direction: column; gap: 18px; border: 1px solid var(--line-soft); }
.banner img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; z-index: 0; }
.banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,13,12,0.92), rgba(10,13,12,0.4)); z-index: 1; }
.banner > * { position: relative; z-index: 2; }
.banner h2 { max-width: 560px; }
.banner p { max-width: 480px; color: var(--dim); }

/* ---- app feature ---- */
.app-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.phone-mock { aspect-ratio: 9/16; max-width: 320px; margin: 0 auto; border-radius: 36px; border: 8px solid #1a201d; background: var(--surface); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.phone-mock img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(55,224,160,0.14); display: grid; place-items: center; flex: none; color: var(--mint); }

/* ---- trust strip ---- */
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.trust-item { display: flex; gap: 12px; align-items: center; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 18px; }
.trust-item .ic { color: var(--mint); flex: none; }
.trust-item b { font-family: var(--display); display: block; }
.trust-item span { color: var(--dim); font-size: 0.85rem; }

/* ---- video ad showcase ---- */
.video-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.video-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/11; border: 1px solid var(--line-soft); transition: transform 0.25s ease, border-color 0.25s ease; }
.video-card:hover { transform: translateY(-5px); border-color: var(--mint); }
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,13,12,0.9)); pointer-events: none; }
.video-card-label { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.video-card-label .eyebrow { display: block; margin-bottom: 2px; }
.video-card-label b { font-family: var(--display); font-size: 1.25rem; }
.video-card-label a { color: var(--mint); font-weight: 800; white-space: nowrap; }
.video-feature { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 21/9; border: 1px solid var(--line-soft); margin-bottom: 18px; }
.video-feature video { width: 100%; height: 100%; object-fit: cover; }
.video-feature::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,13,12,0.85), transparent 55%, rgba(10,13,12,0.6)); }
.video-feature-text { position: absolute; left: 7%; top: 50%; transform: translateY(-50%); z-index: 2; max-width: 480px; }
@media (max-width: 760px) {
  .video-feature { aspect-ratio: 4 / 5; }
  .video-feature::after { background: linear-gradient(180deg, rgba(10,13,12,0.15) 30%, rgba(10,13,12,0.95)); }
  .video-feature-text { inset: auto 20px 24px 20px; top: auto; transform: none; max-width: none; }
}

/* ---- lifestyle / vibe clips ---- */
.vibe-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.vibe-clip { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 10; border: 1px solid var(--line-soft); background: var(--surface-2); transition: transform 0.25s ease, border-color 0.25s ease; }
.vibe-clip:hover { transform: translateY(-5px); border-color: var(--mint); }
.vibe-clip video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vibe-clip::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(10,13,12,0.88)); pointer-events: none; }
.vibe-clip figcaption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; }
.vibe-clip figcaption .eyebrow { display: block; margin-bottom: 3px; }
.vibe-clip figcaption b { font-family: var(--display); font-size: 1.3rem; }
.vibe-note { text-align: center; color: var(--dim); font-size: 0.85rem; margin-top: 22px; }
@media (max-width: 760px) { .vibe-grid { grid-template-columns: 1fr; } }

/* ---- blog / journal ---- */
.post-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-5px); border-color: var(--mint); box-shadow: var(--shadow); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.post-card .thumb img, .post-featured .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .thumb img, .post-featured:hover .thumb img { transform: scale(1.05); }
.post-card .pc-body { padding: 20px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.post-card h3 { font-family: var(--display); font-size: 1.18rem; line-height: 1.3; }
.post-card p { color: var(--dim); font-size: .92rem; line-height: 1.55; flex: 1; }
.post-tag { align-self: flex-start; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--mint); background: rgba(55,224,160,.14); padding: 5px 11px; border-radius: var(--radius-pill); }
.post-meta { display: flex; gap: 12px; align-items: center; color: var(--faint); font-size: .82rem; }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--faint); flex: none; }
.post-featured { display: grid; grid-template-columns: 1.15fr 1fr; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); margin-bottom: 30px; text-decoration: none; color: inherit; transition: transform .25s ease, border-color .25s ease; }
.post-featured:hover { transform: translateY(-4px); border-color: var(--mint); }
.post-featured .thumb { overflow: hidden; min-height: 340px; background: var(--surface-2); }
.post-featured .pf-body { padding: 42px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.post-featured h2 { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1.2; }
.post-featured p { color: var(--dim); max-width: 46ch; }
.article-head { max-width: 820px; margin: 0 auto 26px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.article-head h1 { font-family: var(--display); font-size: clamp(2rem, 5vw, 3rem); line-height: 1.12; }
.article-hero { max-width: 1000px; margin: 0 auto 38px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); aspect-ratio: 21/9; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero--product { aspect-ratio: 16 / 9; background: #fff; }
.article-hero--product img { object-fit: contain; padding: 20px; }

/* ============================================================
   PREMIUM LAYER — depth, glass, glow, motion
   ============================================================ */

/* Ambient background glow (fixed, behind content) */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(50% 42% at 80% -8%, rgba(55,224,160,0.11), transparent 60%),
    radial-gradient(42% 38% at 6% 6%, rgba(111,201,255,0.06), transparent 58%),
    radial-gradient(62% 48% at 50% 112%, rgba(55,224,160,0.05), transparent 60%);
}
/* Fine film grain for texture */
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Selection, scrollbar, focus */
::selection { background: rgba(55,224,160,0.30); color: #fff; }
* { scrollbar-width: thin; scrollbar-color: var(--elevated) transparent; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--elevated); border-radius: 999px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--mint-2); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, .btn:focus-visible, .card:focus-visible {
  outline: none; box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(55,224,160,0.85);
}

/* Nav — glass refinement, scroll-aware glow line, animated link underline */
.nav { transition: background .3s ease, box-shadow .3s ease; }
.nav::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent, rgba(55,224,160,0.4), transparent); opacity: 0; transition: opacity .3s ease; }
.nav--scrolled { background: rgba(10,13,12,0.86); box-shadow: 0 12px 40px -26px rgba(0,0,0,0.95); }
.nav--scrolled::after { opacity: 1; }
.nav-links a { position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; border-radius: 2px; background: var(--grad-mint); transition: right .28s cubic-bezier(.4,0,.2,1); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

/* Hero headline — gradient text + faint glow */
.hero h1 {
  background: linear-gradient(180deg, #ffffff 28%, #d6efe4 72%, #94e7c2);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 6px 28px rgba(55,224,160,0.12));
}

/* Primary buttons — inner highlight + shine sweep */
.btn-primary { position: relative; overflow: hidden; box-shadow: 0 14px 40px -14px rgba(55,224,160,0.5), inset 0 1px 0 rgba(255,255,255,0.28); }
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-18deg); transition: left .6s ease; pointer-events: none;
}
.btn-primary:hover::before { left: 150%; }
.btn-primary:hover { box-shadow: 0 24px 60px -16px rgba(55,224,160,0.6), inset 0 1px 0 rgba(255,255,255,0.35); }

/* Download buttons — mint glow on hover */
.store-btn:hover { box-shadow: 0 18px 44px -20px rgba(55,224,160,0.45); }

/* Product & blog cards — gradient hairline + glow on hover */
.card, .post-card { position: relative; }
.card::after, .post-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; z-index: 3; pointer-events: none;
  background: linear-gradient(140deg, rgba(55,224,160,0.55), transparent 38%, transparent 62%, rgba(111,201,255,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s ease;
}
.card:hover::after, .post-card:hover::after { opacity: 1; }
.card:hover, .post-card:hover { box-shadow: 0 32px 70px -32px rgba(0,0,0,0.85), 0 0 42px -22px rgba(55,224,160,0.4); }

/* Category tiles + featured post — premium glow on hover */
.cat-tile:hover, .post-featured:hover, .video-card:hover, .vibe-clip:hover { box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8), 0 0 44px -22px rgba(55,224,160,0.35); }

/* Tag/pill pop */
.card-tag, .post-tag { box-shadow: 0 6px 18px -8px rgba(55,224,160,0.45); }

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-primary::before { display: none; }
  .card, .post-card, .cat-tile, .video-card, .vibe-clip, .post-featured, .store-btn, .btn { transition: none; }
}
.article-body { max-width: 820px; margin: 0 auto; }
.article-fig { margin: 32px auto; max-width: 540px; }
.article-fig img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line-soft); display: block; background: #fff; }
.article-fig figcaption { color: var(--faint); font-size: .85rem; text-align: center; margin-top: 10px; font-style: italic; }
@media (max-width: 760px) {
  .post-featured { grid-template-columns: 1fr; }
  .post-featured .thumb { min-height: 210px; }
  .post-featured .pf-body { padding: 26px; }
  .article-hero { aspect-ratio: 16/10; }
}

/* ---- marquee ---- */
.marquee { overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 18px 0; background: var(--surface); }
.marquee-track { display: flex; gap: 50px; white-space: nowrap; animation: scroll 28s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--dim); display: inline-flex; gap: 50px; }
.marquee-track span::after { content: '◆'; color: var(--mint); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---- seo content ---- */
.seo-content { max-width: 820px; margin: 0 auto; }
.seo-content h2 { font-size: 1.7rem; margin: 38px 0 14px; }
.seo-content h3 { font-size: 1.2rem; margin: 26px 0 10px; color: var(--text); }
.seo-content p { color: var(--dim); margin-bottom: 14px; }
.seo-content ul { margin: 0 0 16px 0; display: flex; flex-direction: column; gap: 8px; }
.seo-content li { color: var(--dim); padding-left: 22px; position: relative; }
.seo-content li::before { content: ''; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.seo-content strong { color: var(--text); }

/* ---- store filters ---- */
.store-bar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 26px; }
.search-box { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0 18px; height: 50px; flex: 1; min-width: 240px; }
.search-box input { background: none; border: none; outline: none; color: var(--text); font-size: 1rem; width: 100%; font-family: var(--font); }
.chip { height: 42px; padding: 0 18px; border-radius: var(--radius-pill); background: var(--surface-2); border: 1px solid var(--line); color: var(--dim); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: 0.18s; }
.chip:hover { color: var(--text); }
.chip.active { background: var(--mint); color: var(--on-accent); border-color: var(--mint); }
.skeleton { background: var(--elevated); border-radius: var(--radius); aspect-ratio: 0.78; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:0.8} }
.load-more-wrap { text-align: center; margin-top: 40px; }

/* ---- forms ---- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; color: var(--dim); margin-bottom: 7px; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; color: var(--text); font-size: 1rem; font-family: var(--font); outline: none; transition: 0.18s;
}
.field input:focus, .field textarea:focus { border-color: var(--mint); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.panel { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 28px; }

/* ---- cart drawer ---- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 200; opacity: 0; pointer-events: none; transition: 0.25s; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw; background: var(--bg-2); border-left: 1px solid var(--line); z-index: 201; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid var(--line-soft); }
.drawer-body { flex: 1; overflow-y: auto; padding: 22px; }
.drawer-foot { padding: 22px; border-top: 1px solid var(--line-soft); }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.cart-line img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; background: var(--surface-2); flex: none; }
.qty { display: inline-flex; align-items: center; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-pill); }
.qty button { width: 30px; height: 30px; background: none; border: none; color: var(--text); cursor: pointer; font-size: 1.1rem; }
.qty span { min-width: 24px; text-align: center; font-weight: 700; }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--line-soft); padding: 60px 0 30px; background: var(--bg-2); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--dim); font-size: 0.95rem; }
.footer a:hover { color: var(--mint); }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; color: var(--faint); font-size: 0.85rem; }

/* ---- compliance note ---- */
.note { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,182,56,0.1); border: 1px solid rgba(255,182,56,0.25); border-radius: var(--radius); padding: 16px 18px; }
.note .ic { color: var(--amber); flex: none; }
.note p { color: var(--dim); font-size: 0.9rem; }

/* ---- reveal animation ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- age gate ---- */
.age-gate { position: fixed; inset: 0; z-index: 500; background: var(--bg); display: grid; place-items: center; padding: 24px; }
.age-gate .box { max-width: 420px; text-align: center; }
.age-gate .num { width: 96px; height: 96px; border-radius: 50%; background: rgba(255,182,56,0.12); border: 1px solid rgba(255,182,56,0.3); display: grid; place-items: center; margin: 0 auto 26px; font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: var(--amber); }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .app-feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .banner { padding: 40px 26px; }
  .section { padding: 56px 0; }
}
@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ VAPE EU — LIGHT PREMIUM OVERRIDES ============ */
.nav { background: rgba(255,255,255,0.72); border-bottom: 1px solid var(--line-soft); backdrop-filter: blur(18px) saturate(1.2); }
.nav--scrolled { background: rgba(255,255,255,0.9); box-shadow: 0 10px 34px -24px rgba(20,21,30,0.35); }

/* clean light canvas with a soft indigo wash, no grain */
body::before { content: ''; position: fixed; inset: 0; z-index: -2; pointer-events: none; background:
  radial-gradient(900px 520px at 80% -8%, rgba(79,70,229,0.10), transparent 60%),
  radial-gradient(760px 480px at -10% 10%, rgba(99,102,241,0.07), transparent 55%); }
body::after { display: none; }

/* hero — light, no video */
.hero { padding: 96px 0 76px; background: linear-gradient(180deg,#ffffff 0%, var(--bg) 100%); border-bottom: 1px solid var(--line-soft); }
.hero-video, .hero-poster { display: none !important; }
.hero .badge { background: rgba(79,70,229,0.08); border: 1px solid rgba(79,70,229,0.22); color: var(--mint); }
.hero h1 { color: var(--text); background: none; -webkit-text-fill-color: currentColor; }

/* light scrollbar */
::-webkit-scrollbar-thumb { background: #d9d8cf; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--mint); }

/* refined light shadows replace dark glows */
.card, .post-card, .cat-tile { border: 1px solid var(--line); background: var(--surface); box-shadow: 0 1px 2px rgba(20,21,30,0.04); }
.card:hover, .post-card:hover { box-shadow: 0 26px 60px -30px rgba(20,21,30,0.22), 0 0 0 1px rgba(79,70,229,0.10); }
.cat-tile:hover, .post-featured:hover, .video-card:hover, .vibe-clip:hover { box-shadow: 0 26px 60px -30px rgba(20,21,30,0.20); }
.btn-primary:hover { box-shadow: 0 22px 50px -16px rgba(79,70,229,0.50); }
.btn-outline { border-color: var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--mint); color: var(--mint); }

/* value section (replaces app section) */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 30px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease; }
.value-card:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -30px rgba(20,21,30,0.18); }
.value-card .feature-ic { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 14px; background: rgba(79,70,229,0.10); color: var(--mint); margin-bottom: 16px; }
.value-card .feature-ic svg { width: 24px; height: 24px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--dim); }
@media (max-width: 820px){ .value-grid { grid-template-columns: 1fr; } }

.footer { background: var(--bg-2); border-top: 1px solid var(--line); }
.marquee { background: var(--surface); }
.hero::after { display: none; }
.hero { position: relative; overflow: visible; }

/* ============ VAPE EU — EDITORIAL RESTRUCTURE ============ */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.08; }
.lead, .eyebrow, .btn, .nav-links a, body { font-family: var(--font); }
.eyebrow { letter-spacing: 0.22em; color: var(--mint); font-weight: 700; }

/* buttons: rectangular editorial — ink primary, indigo hover */
.btn { border-radius: 8px; height: 52px; font-weight: 700; letter-spacing: 0.01em; }
.btn-primary { background: var(--text); color: #fff; box-shadow: none; }
.btn-primary:hover { background: var(--mint); transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(79,70,229,0.5); }
.btn-outline { background: transparent; border: 1px solid var(--text); color: var(--text); border-radius: 8px; }
.btn-outline:hover { background: var(--text); color: #fff; border-color: var(--text); }

/* nav: serif wordmark + underline links */
.logo { font-family: var(--display); font-weight: 600; letter-spacing: -0.01em; }
.logo-mark { border-radius: 7px; }
.nav-links a::after { content:''; position:absolute; left:0; right:0; bottom:-5px; height:1.5px; background: var(--mint); transform: scaleX(0); transform-origin:left; transition: transform .2s ease; }
.nav-links a { position: relative; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* announcement bar */
.announce { background: var(--text); color: #fff; text-align: center; font-size: .8rem; letter-spacing: .05em; padding: 9px 16px; }

/* HERO — centered editorial */
.hero--editorial { text-align: center; padding: 112px 0 86px; }
.hero--editorial .hero-inner { max-width: 880px; margin: 0 auto; }
.hero--editorial::before { content:''; display:block; width:46px; height:2px; background: var(--mint); margin: 0 auto 28px; }
.hero--editorial .eyebrow { display:block; margin-bottom: 20px; }
.hero--editorial h1 { font-size: clamp(2.9rem, 7.5vw, 5.6rem); font-weight: 600; line-height: 0.98; margin: 0 0 22px; }
.hero--editorial h1 em { font-style: italic; color: var(--mint); font-weight: 500; }
.hero--editorial .lead { max-width: 600px; margin: 0 auto; font-size: clamp(1.05rem,2vw,1.3rem); }
.hero--editorial .hero-cta { justify-content: center; margin-top: 34px; }
.hero-fine { margin-top: 26px; color: var(--faint); font-size: .82rem; letter-spacing: .04em; }

/* editorial sections + cards */
.section { padding: 90px 0; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.card, .post-card, .cat-tile, .value-card { border-radius: 12px; }
.cat-tile h3, .post-card h3, .value-card h3, .card-title { font-family: var(--display); font-weight: 600; }

/* Brand cards: real product image hero on light, editorial theme.
   White-to-transparent gradient at bottom keeps the text legible. */
.cat-tile-brand { position: relative; min-height: 260px; padding: 22px; background: #fff !important; overflow: hidden; }
.cat-tile-brand .cat-tile-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; opacity: 1;
  transition: transform 0.45s ease;
  background: #f6f6f1;
}
.cat-tile-brand:hover .cat-tile-img { transform: scale(1.04); }
.cat-tile-brand .cat-tile-fade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.92) 70%, #fff 100%);
}
.cat-tile-brand h3, .cat-tile-brand p, .cat-tile-brand .arrow, .cat-tile-brand .eyebrow { position: relative; z-index: 2; }
.cat-tile-brand h3 { color: var(--text); }
.cat-tile-brand p { color: var(--dim); }
.cat-tile-brand:hover { border-color: var(--mint); }

/* FAQ section — added for SEO + AI search ranking */
.faq-section { margin: 40px 0 20px; padding: 30px 0; border-top: 1px solid var(--line-soft); }
.faq-section h2 { margin-bottom: 20px; }
.faq-item { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-md, 14px); padding: 18px 22px; margin-bottom: 12px; transition: 0.2s; }
.faq-item:hover { border-color: var(--mint); }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 1.05rem; padding: 4px 0; list-style: none; outline: none; position: relative; padding-right: 28px; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 0; font-size: 1.4rem; font-weight: 400; color: var(--mint); transition: transform 0.2s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a { padding-top: 12px; color: var(--dim); line-height: 1.7; }
.faq-item .faq-a p { margin: 0; }

