/* PinkVape — white-base pink marketing design system (vapedaily layout port) */
:root {
  --bg: #fffafc;
  --bg-2: #fff0f6;
  --surface: #fce7f3;
  --surface-2: #fff0f6;
  --elevated: #ffd6e8;
  --line: #f9c8dd;
  --line-soft: #fde4ee;
  --border: #f9c8dd;
  --text: #2a0e1e;
  --text-dark: #2a0e1e;
  --dim: #5c2842;       /* darker berry — legible on pale pink */
  --muted: #6d3450;     /* subtitle text */
  --faint: #7d4a63;     /* still muted but readable */
  --on-dark: #ffd6e8;   /* light pink for text on dark footer */
  --on-dark-dim: #f2b5cf;
  --mint: #e6297a;              /* primary pink (aliased for template compat) */
  --mint-2: #7a1450;
  --frost: #ff85b8;             /* accent */
  --amber: #ff8a00;
  --danger: #e11d48;
  --pink: #e6297a;
  --pink-soft: #ffb6d5;
  --pink-deep: #7a1450;
  --primary: #e6297a;
  --primary-dark: #7a1450;
  --accent: #ff85b8;
  --accent-2: #ffb6d5;
  --cyan: #ff85b8;
  --white: #ffffff;
  --black: #2a0e1e;
  --silver: #fce7f3;
  --hero-grad-a: #ffd6e8;
  --hero-grad-b: #ffeef5;
  --flash-red: #e11d48;
  --flash-orange: #ff8a00;
  --flash-blue: #ff85b8;
  --on-accent: #ffffff;
  --grad-mint: linear-gradient(135deg, #ff85b8 0%, #e6297a 45%, #7a1450 100%);
  --grad-frost: linear-gradient(135deg, #ffb6d5, #ff85b8);
  --grad-dark: linear-gradient(180deg, #fff0f6, #fffafc);
  --grad-3d: radial-gradient(circle at 30% 20%, #ff85b8 0%, #e6297a 35%, #ffb6d5 70%, #fffafc 100%);
  --grad-hero-glow: radial-gradient(ellipse at 20% 30%, rgba(230, 41, 122, 0.14) 0%, transparent 55%),
                    radial-gradient(ellipse at 80% 70%, rgba(255, 182, 213, 0.28) 0%, transparent 50%);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --max: 1280px;
  --shadow: 0 24px 70px -20px rgba(122, 20, 80, 0.18), 0 0 0 1px rgba(230, 41, 122, 0.06);
  --shadow-mint: 0 20px 60px -12px rgba(230, 41, 122, 0.32), 0 4px 20px -4px rgba(230, 41, 122, 0.22);
  --shadow-3d: 0 30px 80px -20px rgba(230, 41, 122, 0.35), 0 10px 30px -6px rgba(122, 20, 80, 0.25), inset 0 1px 0 rgba(255, 182, 213, 0.2);
  --font: 'Open Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Fjalla One', 'Sora', 'Inter', 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; }
}

/* Brand cards: real product image hero with dark gradient overlay so text stays readable. */
.cat-tile-brand { position: relative; min-height: 240px; padding: 22px; }
.cat-tile-brand .cat-tile-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; opacity: 0.85;
  transition: transform 0.45s ease, opacity 0.25s ease;
  background: #0a0d0c;
}
.cat-tile-brand:hover .cat-tile-img { transform: scale(1.04); opacity: 1; }
.cat-tile-brand .cat-tile-fade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,13,12,0.45) 0%, rgba(10,13,12,0.78) 55%, rgba(10,13,12,0.95) 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: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.cat-tile-brand p { color: rgba(242,246,244,0.82); text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.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; }


.order-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); margin-bottom: 12px; text-decoration: none; color: var(--text); transition: border-color .15s; }
.order-row:hover { border-color: var(--mint); }

/* ============================================================
   PINK 3D LAYER — appended overrides for PinkVape
   Adds depth, gradients, glow, tilt for a pink-love aesthetic.
   ============================================================ */

/* Body background: soft rose-white with faint radial glow */
body {
  background:
    radial-gradient(ellipse at 15% 10%, rgba(230,41,122,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(255,182,213,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(255,133,184,0.06) 0%, transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
}

/* Hero — bigger 3D presence + soft orbs */
.hero { padding: 130px 0 100px; }
.hero::before {
  content: "";
  position: absolute;
  top: -140px; right: -140px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,61,156,0.45), transparent 65%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: floaty 14s ease-in-out infinite;
}
.hero::after {
  background:
    radial-gradient(60% 80% at 70% 20%, rgba(255,92,174,0.24), transparent 65%),
    radial-gradient(40% 60% at 15% 85%, rgba(255,182,213,0.15), transparent 60%),
    linear-gradient(180deg, rgba(21,6,20,0.35), rgba(21,6,20,0.85));
}
@keyframes floaty {
  0%,100% { transform: translateY(0px) scale(1); }
  50%     { transform: translateY(-20px) scale(1.05); }
}

.hero h1 {
  background: linear-gradient(135deg, #fef1f6 0%, #ffb6d5 60%, #ff3d9c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 20px rgba(255,61,156,0.35));
}

/* Buttons — deeper 3D press effect */
.btn-primary {
  background: linear-gradient(135deg, #ff5cae 0%, #d81b7c 100%);
  color: #fef1f6;
  box-shadow:
    0 14px 40px -10px rgba(255,61,156,0.55),
    0 6px 14px -4px rgba(160,30,107,0.5),
    inset 0 1px 0 rgba(255,255,255,0.25);
  border: none;
  text-shadow: 0 1px 2px rgba(120,10,60,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 24px 60px -14px rgba(255,61,156,0.7),
    0 8px 18px -4px rgba(160,30,107,0.55),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:active { transform: translateY(-1px) scale(1.005); }
.btn-outline {
  border: 1.5px solid rgba(255,182,213,0.5);
  color: #ffb6d5;
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255,61,156,0.08);
  transform: translateY(-2px);
}

/* Card 3D presence */
.card {
  background: linear-gradient(180deg, rgba(64,24,67,0.6), rgba(38,16,42,0.85));
  border: 1px solid rgba(255,61,156,0.15);
  box-shadow:
    0 12px 36px -12px rgba(20,4,20,0.7),
    inset 0 1px 0 rgba(255,182,213,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(255,61,156,0.5);
  box-shadow:
    0 28px 60px -14px rgba(255,61,156,0.35),
    0 12px 24px -8px rgba(160,30,107,0.35),
    inset 0 1px 0 rgba(255,182,213,0.12);
}
.card-accent { background: linear-gradient(90deg, transparent, var(--pink), var(--pink-soft), transparent); height: 3px; }
.card-tag { background: linear-gradient(135deg, #ff5cae, #d81b7c); color: #fef1f6; }

/* Category tiles — 3D tilt on hover */
.cat-tile, .brand-tile {
  background: linear-gradient(160deg, rgba(64,24,67,0.7), rgba(38,16,42,0.9));
  border: 1px solid rgba(255,61,156,0.18);
  box-shadow: 0 18px 48px -18px rgba(20,4,20,0.7), inset 0 1px 0 rgba(255,182,213,0.08);
  transition: transform 0.4s cubic-bezier(0.2,0.9,0.3,1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  perspective: 800px;
}
.cat-tile:hover, .brand-tile:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-2deg);
  border-color: rgba(255,92,174,0.55);
  box-shadow:
    0 40px 80px -18px rgba(255,61,156,0.35),
    0 16px 32px -10px rgba(160,30,107,0.35),
    inset 0 1px 0 rgba(255,182,213,0.18);
}
.cat-tile-fade { background: linear-gradient(180deg, transparent 35%, rgba(21,6,20,0.85) 100%); }

/* Pills */
.pill-mint { background: rgba(255,61,156,0.16); color: var(--pink-soft); border: 1px solid rgba(255,61,156,0.35); }
.pill-frost { background: rgba(255,182,213,0.12); color: #ffb6d5; border: 1px solid rgba(255,182,213,0.28); }

/* Nav / logo */
.announce { background: linear-gradient(90deg, rgba(255,61,156,0.14), rgba(255,182,213,0.10)); color: #ffb6d5; border-bottom: 1px solid rgba(255,61,156,0.15); }
.nav { backdrop-filter: blur(14px); background: rgba(21,6,20,0.65); border-bottom: 1px solid rgba(255,61,156,0.12); }
.logo-mark {
  background: linear-gradient(135deg, #ff5cae, #d81b7c);
  box-shadow: 0 6px 20px -4px rgba(255,61,156,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
  border-radius: 8px;
}
.logo-mark span { background: #fef1f6; }

/* Section eyebrows */
.eyebrow { color: var(--pink); }

/* Footer polish — dark bg needs LIGHT pink text (--on-dark) so overrides win */
footer, .footer { background: linear-gradient(180deg, rgba(38,16,42,0.6), rgba(21,6,20,1)); border-top: 1px solid rgba(255,61,156,0.12); }
footer p, .footer p { color: var(--on-dark-dim) !important; }
footer h4, .footer h4 { color: var(--on-dark) !important; opacity: 0.9; }
footer a, .footer a { color: var(--on-dark-dim) !important; }
footer a:hover, .footer a:hover { color: var(--pink) !important; }
footer .footer-bottom, .footer .footer-bottom { color: var(--on-dark-dim) !important; opacity: 0.8; }

/* Product-page pills — bump contrast on pale pink bg */
.card-pills .pill, .pill { color: var(--dim); background: rgba(230, 41, 122, 0.08); border: 1px solid rgba(230, 41, 122, 0.18); }
.pill.pill-mint { background: rgba(230, 41, 122, 0.12); color: #4a1e35; border-color: rgba(230, 41, 122, 0.3); }
.pill.pill-frost { background: rgba(255, 133, 184, 0.15); color: #5c2842; border-color: rgba(255, 133, 184, 0.35); }
.card-brand, .pcard__brand { color: var(--dim) !important; opacity: 0.95; }

/* Blog post hero */
.article-hero {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(255,61,156,0.3), 0 10px 20px -6px rgba(20,4,20,0.6);
  border: 1px solid rgba(255,61,156,0.18);
  overflow: hidden;
}

/* Store filter chips */
.chip {
  background: rgba(64,24,67,0.5);
  border: 1px solid rgba(255,182,213,0.2);
  color: #ffb6d5;
  transition: all 0.24s ease;
}
.chip:hover, .chip.active {
  background: linear-gradient(135deg, #ff5cae, #d81b7c);
  color: #fef1f6;
  border-color: transparent;
  box-shadow: 0 8px 20px -6px rgba(255,61,156,0.5);
}

/* Age gate: soft pink glow */
.gate {
  background: radial-gradient(circle at center, rgba(38,16,42,0.98) 0%, rgba(21,6,20,1) 100%);
}
.gate .badge {
  background: linear-gradient(135deg, rgba(255,61,156,0.2), rgba(255,182,213,0.1));
  border: 1px solid rgba(255,61,156,0.4);
}

/* Reveal animation on scroll */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.9,0.3,1);
}

/* Hero orb decoration classes for extra 3D depth */
.hero-inner::before,
.hero-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}
.hero-inner::before {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,182,213,0.5), transparent 70%);
  top: -40px; right: -50px;
}
.hero-inner::after {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,61,156,0.4), transparent 70%);
  bottom: -40px; left: -60px;
}

/* ============================================================
   PINK IMAGE TINT — colorize inherited photos to match brand
   Uses mix-blend-mode + hue rotation to turn dark/green
   product images into pink-themed variants without new assets.
   ============================================================ */

/* Category tile images */
.cat-tile-img {
  filter: hue-rotate(295deg) saturate(1.6) brightness(0.95) contrast(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.cat-tile:hover .cat-tile-img {
  filter: hue-rotate(300deg) saturate(1.9) brightness(1.05) contrast(1.1);
  transform: scale(1.04);
}

/* Add a pink gradient wash on top of category images */
.cat-tile { position: relative; }
.cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,92,174,0.35) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(160,30,107,0.25) 0%, transparent 60%),
    linear-gradient(180deg, transparent 30%, rgba(21,6,20,0.5) 100%);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
  border-radius: inherit;
}
.cat-tile > * { position: relative; z-index: 2; }

/* Brand tile images */
.brand-tile img, .cat-tile-img { }
.brand-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,61,156,0.28), rgba(255,182,213,0.15));
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
  border-radius: inherit;
}

/* Product card images — subtle pink lift */
.card-img img {
  filter: hue-rotate(310deg) saturate(1.35) brightness(1.02);
  transition: filter 0.35s ease, transform 0.4s ease;
}
.card:hover .card-img img {
  filter: hue-rotate(315deg) saturate(1.55) brightness(1.08);
  transform: scale(1.05);
}
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,61,156,0.18), transparent 60%);
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Hero background image / video — pink cinematic wash */
.hero-video, .hero-poster {
  filter: hue-rotate(300deg) saturate(1.4) brightness(0.9);
}

/* Blog article hero images */
.article-hero img {
  filter: hue-rotate(310deg) saturate(1.3) brightness(0.98);
}

/* Banner images (index promo bands) */
.banner img.bg {
  filter: hue-rotate(305deg) saturate(1.5) brightness(0.85);
}

/* Lifestyle images throughout */
.phone-mock img,
.reveal img,
img[src*="lifestyle"],
img[src*="banner"],
img[src*="promo"] {
  filter: hue-rotate(305deg) saturate(1.4) brightness(0.95);
}

/* Higher specificity on hover states to prevent filter conflicts */
.card:hover .card-img::after {
  background: linear-gradient(160deg, rgba(255,61,156,0.28), transparent 55%);
}

/* Ensure the "Shop now" link on tiles pops in pink */
.cat-tile .arrow, .cat-tile a[class*="btn"], .cat-tile span.arrow {
  color: var(--pink) !important;
}

/* ============================================================
   VAPEDAILY PORT — SITE-HEADER, SITE-NAV, FEATURE-STRIP, HERO,
   CAT-TILES (pink-substituted). Placed at the END of cascade
   so it wins over the older .nav / .hero / .cat-tile rules.
   ============================================================ */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.sticky-offset { position: relative; height: 1px; width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  width: 100%;
  max-width: 100vw;
  color: #ffffff;
  background: var(--primary);
  background: linear-gradient(180deg,
    #7a1450 0%, #8b1a5c 20%, #a01e6b 40%,
    #b62376 60%, #cc2680 80%, #e6297a 100%);
  border-bottom: 1px solid #ffb6d5;
  transition: padding .2s ease, box-shadow .25s ease;
}
.site-header--stuck { box-shadow: 0 4px 18px rgba(122,20,80,.35); }
.site-header--stuck .site-header__grid { padding-block: 14px; }

.site-header__grid {
  display: grid;
  max-width: var(--max, 1280px);
  margin: 0 auto;
  padding: 24px 20px;
  gap: 0 24px;
  align-items: center;
  grid-template-columns: auto auto 1.5fr auto;
  grid-template-areas: "logo info search actions";
}

.site-header__logo-area { display: flex; align-items: center; }
.site-header__logo { display: inline-flex; align-items: center; transition: opacity .25s ease; text-decoration: none; }
.site-header__logo:hover { opacity: .85; }
.site-header__logo-text {
  font-family: var(--display, 'Fjalla One');
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.4px;
  text-transform: lowercase;
  white-space: nowrap;
}
.site-header__logo-vape  { color: #ffffff; }
.site-header__logo-daily { color: var(--accent, #ff85b8); }

.site-header__info { min-width: 0; }
.site-header__countdown {
  font-family: var(--display, 'Fjalla One');
  font-size: 16px;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
  min-width: 308px;
  margin: 0;
  letter-spacing: 0.2px;
}
.site-header__countdown[hidden] { display: block; visibility: hidden; }
.site-header__countdown em {
  display: inline-block;
  min-width: 82px;
  color: var(--accent, #ff85b8);
  font-style: normal;
  font-variant-numeric: tabular-nums;
}
.site-header__countdown a {
  --d: 0%;
  position: relative;
  color: var(--accent, #ff85b8);
  text-decoration: none;
  background: linear-gradient(currentColor 0 0) 0 calc(100% - 0px) / var(--d, 0) 1px no-repeat;
  transition: color .25s, background-size .25s;
}
.site-header__countdown a:hover { color: #ffffff; --d: 100%; }

.site-header__search-area { min-width: 0; }
.site-header__search-form { width: 100%; }
.site-header__search-wrap { position: relative; width: 100%; }
.site-header__search-input {
  width: 100%;
  height: 48px;
  border-radius: 4px;
  border: 1px solid var(--line, #f9c8dd);
  background: #ffffff;
  padding: 12px 48px 12px 16px;
  font-size: 16px;
  font-family: var(--font, 'Open Sans');
  font-weight: 400;
  color: var(--primary, #e6297a);
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header__search-input::placeholder { color: var(--dim, #a06a80); }
.site-header__search-input:focus {
  border-color: var(--accent, #ff85b8);
  box-shadow: 0 0 0 2px var(--accent, #ff85b8);
}
.site-header__search-submit {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; background: transparent; cursor: pointer;
  color: var(--primary, #e6297a);
  transition: color .25s ease;
  padding: 0 12px;
}
.site-header__search-submit:hover { color: var(--accent-2, #ffb6d5); }
.site-header__search-submit svg { display: block; }

.site-header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
}

.site-header__underline-sweep {
  display: block;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width .25s ease;
}
.site-header__account:hover .site-header__underline-sweep { width: 100%; }

.site-header__account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.15;
}
.site-header__account > svg {
  width: 30px; height: 30px;
  color: #ffffff;
  fill: currentColor;
}
.site-header__account-text-container {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--font, 'Open Sans');
}
.site-header__account-hello { font-size: 12px; line-height: 1.2; color: #ffd6e8; }
.site-header__account-login {
  position: relative;
  display: inline-flex; flex-direction: column;
  font-family: var(--display, 'Fjalla One');
  font-size: 16px;
  line-height: 1.15;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.site-header__account-create {
  font-size: 11px;
  line-height: 1.2;
  color: var(--accent, #ff85b8);
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0.2px;
}

.site-header__cart { min-width: 100px; }
.site-header__cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
}
.site-header__cart-icon-wrap {
  position: relative;
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  color: #ffffff;
}
.site-header__cart-icon-wrap svg { width: 30px; height: 30px; }
.site-header__cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent, #ff85b8);
  color: var(--primary-dark, #7a1450);
  font-family: var(--display, 'Fjalla One');
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  font-weight: 400;
  box-shadow: 0 0 0 2px #7a1450;
}
.site-header__cart-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
}
.site-header__cart-price {
  font-family: var(--display, 'Fjalla One');
  font-size: 16px;
  color: var(--accent-2, #ffb6d5);
  letter-spacing: 0.2px;
}
.site-header__cart-count {
  font-size: 12px;
  color: #ffffff;
  white-space: nowrap;
  opacity: .9;
}

.site-nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #ffb6d5;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Header responsive */
@media (max-width: 1150px) {
  .site-header__countdown { min-width: 240px; font-size: 14px; }
  .site-header__countdown em { min-width: 72px; }
}
@media (max-width: 1024px) {
  .site-header__grid {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo search actions";
    gap: 0 16px;
    padding: 16px 20px;
  }
  .site-header__info { display: none; }
  .site-header__account-text-container { display: none; }
  .site-header__cart { min-width: auto; }
  .site-nav__toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .site-header__grid {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo search actions" "info info info";
    row-gap: 10px;
    padding: 12px 16px;
  }
  .site-header__logo-text { font-size: 24px; }
  .site-header__search-input { height: 42px; font-size: 15px; padding: 10px 42px 10px 14px; }
  .site-header__search-submit { width: 40px; }
  .site-header__info {
    display: block;
    grid-area: info;
    margin: 0 -16px;
    padding: 8px 16px;
    text-align: center;
    border-top: 1px solid #ffb6d5;
    background: #7a1450;
  }
  .site-header__countdown { font-size: 13px; min-width: 0; display: block; text-align: center; }
  .site-header__cart-text { display: none; }
  .site-header__actions { gap: 10px; padding: 0; }
}

/* ---------------- SITE NAV ---------------- */
.site-nav {
  background: var(--primary, #e6297a);
  background-image: linear-gradient(180deg, #7a1450 0%, #8b1a5c 20%, #a01e6b 40%, #b62376 60%, #cc2680 80%, #e6297a 100%);
  border-top: 1px solid #ffb6d5;
  position: relative;
  z-index: 790;
}
.site-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
  min-height: 44px;
}
.site-nav__item { display: flex; align-items: center; }

.site-nav__link {
  display: inline-block;
  padding: 12px 7px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Fjalla One', sans-serif;
  font-size: 14px;
  letter-spacing: .25px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transition: color .2s;
}
.site-nav__link:hover, .site-nav__link:focus-visible { color: var(--accent-2, #ffb6d5); }
.site-nav__label { position: relative; display: inline-block; }

.site-nav__u {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(currentColor 0 0) 0% 100%/var(--d,0%) 1px no-repeat;
  transition: --d .25s;
}
@property --d { syntax: '<percentage>'; inherits: false; initial-value: 0%; }
.site-nav__link:hover .site-nav__u,
.site-nav__link:focus-visible .site-nav__u,
.site-nav__flash:hover .site-nav__u { --d: 100%; }

@supports not (background: linear-gradient(#000 0 0) 0% 100%/0% 1px no-repeat) {
  .site-nav__u { background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s; }
  .site-nav__link:hover .site-nav__u,
  .site-nav__flash:hover .site-nav__u { transform: scaleX(1); }
}

.site-nav__link--flash { padding: 0 4px; }
.site-nav__flash {
  position: relative;
  display: inline-block;
  padding: 7px 20px 6px;
  margin: 0 6px;
  color: #ffffff;
  font-family: 'Fjalla One', sans-serif;
  font-size: 14px;
  letter-spacing: .25px;
  text-transform: uppercase;
  line-height: 1;
  z-index: 1;
  transition: filter .2s;
}
.site-nav__flash-text { position: relative; display: inline-block; z-index: 2; }
.site-nav__flash::before,
.site-nav__flash::after {
  content: "";
  position: absolute;
  top: 0;
  width: 52%;
  height: 100%;
  transform: skewX(-20deg);
  transform-origin: bottom left;
  z-index: -1;
  border-radius: 1px;
}
.site-nav__flash::before { left: -6px; }
.site-nav__flash::after { left: calc(50% + 2px); }
.site-nav__flash:hover { filter: brightness(1.08); }

.site-nav__flash--orange { background: transparent; }
.site-nav__flash--orange::before,
.site-nav__flash--orange::after {
  background: linear-gradient(180deg, #ffab3b 0%, #ff9a1e 40%, #ff8a00 75%, #e07400 100%);
}
.site-nav__flash--blue { background: transparent; }
.site-nav__flash--blue::before,
.site-nav__flash--blue::after {
  background: linear-gradient(180deg, #ff85b8 0%, #ff6ba7 45%, #ff4d94 80%, #e6297a 100%);
}
.site-nav__flash--red { background: transparent; }
.site-nav__flash--red::before,
.site-nav__flash--red::after {
  background: linear-gradient(180deg, #f43f5e 0%, #e11d48 45%, #be123c 80%, #9f1239 100%);
}

.site-nav__close, .site-nav__backdrop { display: none; }

@media (max-width: 1180px) {
  .site-nav__link { padding: 12px 5px; font-size: 13px; }
  .site-nav__flash { padding: 6px 16px; font-size: 13px; margin: 0 4px; }
  .site-nav__list { gap: 0; }
}

@media (max-width: 1023px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(320px, 85vw);
    background: #7a1450;
    background-image: linear-gradient(180deg, #7a1450 0%, #e6297a 100%);
    border-top: none;
    border-right: 1px solid #ffb6d5;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
    overflow-y: auto;
    padding: 16px 0;
    box-shadow: 2px 0 24px rgba(122,20,80,.4);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__inner { padding: 0; max-width: none; }
  .site-nav__list { flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; min-height: 0; }
  .site-nav__item { display: block; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav__link { display: block; padding: 16px 24px; font-size: 16px; }
  .site-nav__link--flash { padding: 12px 24px; }
  .site-nav__flash { margin: 0; padding: 8px 22px; font-size: 14px; }
  .site-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 12px 8px auto;
    background: transparent;
    border: 1px solid #ffb6d5;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
  }
  .site-nav__close:hover { background: rgba(255,255,255,.10); }
  .site-nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(42,14,30,.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 999;
  }
  .site-nav.is-open .site-nav__backdrop { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}

/* ---------------- FEATURE STRIP ---------------- */
.feature-strip {
  background: var(--primary, #e6297a);
  border-top: 1px solid #ffb6d5;
  border-bottom: 1px solid #ffb6d5;
  color: #ffffff;
  width: 100%;
}
.feature-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 20px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.feature-strip__item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding: 4px 0;
  text-align: center;
}
.feature-strip__item + .feature-strip__item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.25);
}
.feature-strip__icon { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.feature-strip__icon svg { display: block; width: 28px; height: 28px; }
.feature-strip__text {
  font-family: 'Fjalla One', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.15;
  white-space: nowrap;
}
.feature-strip__hl {
  display: inline-block;
  font-family: 'Fjalla One', sans-serif;
  font-size: 20px;
  line-height: 1;
  padding: 0 2px;
  background: linear-gradient(180deg, #ffd6e8 26.8%, #ffb6d5 64.2%, #ff85b8 76.98%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  vertical-align: -1px;
}
.feature-strip__item--trust { gap: 8px; }
.feature-strip__trust-label {
  font-family: 'Fjalla One', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.3px;
}
.feature-strip__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #00b67a;
  padding: 3px 4px;
  border-radius: 2px;
  line-height: 0;
}
.feature-strip__star { display: inline-flex; width: 18px; height: 18px; }
.feature-strip__star svg { display: block; }
.feature-strip__trust-brand {
  font-family: 'Fjalla One', sans-serif;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

@media (max-width: 1100px) {
  .feature-strip__text,
  .feature-strip__trust-label,
  .feature-strip__trust-brand { font-size: 13px; }
  .feature-strip__inner { gap: 16px; }
  .feature-strip__item + .feature-strip__item::before { left: -8px; }
}
@media (max-width: 900px) {
  .feature-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(44px, auto);
    gap: 0;
    padding: 8px 12px;
    min-height: 0;
  }
  .feature-strip__item { padding: 8px 6px; flex: none; justify-content: center; }
  .feature-strip__item + .feature-strip__item::before { display: none; }
  .feature-strip__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.20); }
  .feature-strip__item:nth-child(1),
  .feature-strip__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.20); }
  .feature-strip__text,
  .feature-strip__trust-label,
  .feature-strip__trust-brand { font-size: 12px; white-space: normal; }
  .feature-strip__icon svg { width: 22px; height: 22px; }
  .feature-strip__star svg { width: 14px; height: 14px; }
  .feature-strip__star { width: 14px; height: 14px; }
  .feature-strip__hl { font-size: 17px; }
}
@media (max-width: 420px) {
  .feature-strip__text,
  .feature-strip__trust-label,
  .feature-strip__trust-brand { font-size: 11px; }
  .feature-strip__icon svg { width: 20px; height: 20px; }
}

/* ---------------- PROMO BANNER (HERO) ---------------- */
.promo-banner-wrap {
  width: 100%;
  padding: 24px 0;
  background: var(--bg);
}
.promo-banner-wrap .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.promo-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-template-areas: "content image" "button  image";
  min-height: 400px;
  padding: 34px 34px 34px 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(60deg, #ffd6e8 0%, #ffdbea 9%, #ffe0ee 18%, #ffe4f0 27%, #ffe8f2 36%, #ffecf4 45%, #ffeff6 55%, #fff2f7 64%, #fff5f9 73%, #fff7fa 82%, #fff8fb 91%, #fff9fc 100%);
  box-shadow: 0 4px 12px 0 rgba(122, 20, 80, 0.10);
  font-size: 18px;
  color: var(--primary);
  overflow: hidden;
}
.promo-banner__content-col { grid-area: content; max-width: 525px; align-self: start; }
.promo-banner__content-col p { max-width: 475px; color: #7a1450; line-height: 26px; margin: 0; }

.promo-banner__flash-text {
  position: relative;
  display: block;
  width: fit-content;
  padding: 12px 46px 12px 40px;
  margin: 20px 0 20px -40px;
  color: var(--primary);
  font-family: var(--display, "Fjalla One", sans-serif);
  font-size: 22px;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  filter: drop-shadow(4px 4px 6px rgba(122, 20, 80, 0.15));
  z-index: 1;
}
.promo-banner__flash-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  z-index: -1;
}

.promo-banner__title {
  margin: 4px 0 20px;
  color: var(--primary);
  font-family: var(--display, "Fjalla One", sans-serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.4px;
  /* override the earlier .hero h1 gradient text */
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
}
.promo-banner__body {
  max-width: 475px;
  margin: 0;
  color: #7a1450;
  font-family: var(--font, "Open Sans", sans-serif);
  font-size: 18px;
  line-height: 26px;
}
.promo-banner__button-container { grid-area: button; align-self: end; margin-top: 24px; }
.promo-banner__button {
  display: inline-block;
  min-width: 250px;
  padding: 16px 40px;
  margin: 20px 10px 10px 0;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 4px;
  font-family: var(--display, "Fjalla One", sans-serif);
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.promo-banner__button:hover,
.promo-banner__button:focus-visible {
  background-color: var(--primary-dark);
  color: #ffffff;
}
.promo-banner__button-inner {
  position: relative;
  display: inline-block;
  --d: 0%;
  background: linear-gradient(currentColor 0 0) 0% calc(100% + 2px) / var(--d, 0) 1px no-repeat;
  transition: background-size 0.25s ease;
}
.promo-banner__button:hover .promo-banner__button-inner,
.promo-banner__button:focus-visible .promo-banner__button-inner {
  --d: 100%;
  background-size: 100% 1px;
}
.promo-banner__button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.promo-banner__image-col {
  grid-area: image;
  width: clamp(265px, 100%, 342px);
  justify-self: end;
  align-self: center;
}
.promo-banner__image { text-align: right; margin-right: -16px; }
.promo-banner__image img {
  max-height: 330px;
  height: auto;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 4px 10px rgba(122, 20, 80, 0.25));
  transition: transform 0.4s ease;
  transform-origin: bottom right;
}
.promo-banner__image img:hover { transform: rotate(-3deg) translateY(-4px); }

@media (max-width: 1024px) {
  .promo-banner__title { font-size: 34px; }
  .promo-banner__flash-text { font-size: 20px; }
}
@media (max-width: 768px) {
  .promo-banner-wrap { padding: 16px 0; }
  .promo-banner-wrap .container { padding: 0; }
  .promo-banner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image" "content" "button";
    min-height: 0;
    padding: 20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    gap: 16px;
  }
  .promo-banner__image-col { width: 100%; justify-self: center; max-width: 320px; }
  .promo-banner__image { text-align: center; margin-right: 0; }
  .promo-banner__image img { max-height: 240px; }
  .promo-banner__content-col { max-width: 100%; }
  .promo-banner__title { font-size: 30px; }
  .promo-banner__flash-text { margin-left: -20px; padding: 10px 40px 10px 24px; font-size: 18px; }
  .promo-banner__button { padding: 12px 24px; min-width: auto; width: auto; font-size: 18px; }
  .promo-banner__button-container { margin-top: 8px; }
}
@media (max-width: 480px) {
  .promo-banner__title { font-size: 24px; }
  .promo-banner__flash-text { font-size: 16px; }
  .promo-banner__body { font-size: 16px; }
}

/* ---------------- CATEGORY TILES (vapedaily style) ---------------- */
.cat-tiles { padding: 48px 0 56px; background: var(--bg); }
.cat-tiles__container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.cat-tiles__header { margin-bottom: 28px; }
.cat-tiles__title {
  font-family: "Fjalla One", sans-serif;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
  font-weight: 400;
}
.cat-tiles__title-first { position: relative; display: inline-block; padding-bottom: 4px; }
.cat-tiles__title-first::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent-2);
  border-radius: 2px;
}
.cat-tiles__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1023px) { .cat-tiles__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 549px) { .cat-tiles__grid { grid-template-columns: 1fr; gap: 14px; } }

/* Scope tile styling to .cat-tiles so it does NOT clobber the older
   .cat-tile-brand rules used on other pages (brand grids, category pages). */
.cat-tiles .cat-tile {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--line), 0 1px 10px rgba(122,20,80,0.10);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  transition: transform 250ms ease, box-shadow 250ms ease;
  min-height: 0;
  display: block;
  padding: 0;
  /* neutralise .cat-tile-brand 3D lift + tint from earlier layer */
  transform: none;
  perspective: none;
}
.cat-tiles .cat-tile::before { content: none; }
.cat-tile__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.cat-tile__image-wrap {
  flex: 0 0 60%;
  width: 100%;
  overflow: hidden;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-tile__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  opacity: 0.9;
  transition: opacity 250ms ease, transform 250ms ease;
  /* neutralise the pink hue-rotate filter applied globally to product imgs */
  filter: none;
}
.cat-tile__panel {
  flex: 0 0 40%;
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}
.cat-tile__brand {
  font-family: "Fjalla One", sans-serif;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent-2);
  line-height: 1;
}
.cat-tile__name {
  font-family: "Fjalla One", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.25px;
}
.cat-tile__desc {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: var(--dim);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-tiles .cat-tile:hover,
.cat-tiles .cat-tile:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--line), 0 8px 22px rgba(122,20,80,0.16);
}
.cat-tiles .cat-tile:hover .cat-tile__image,
.cat-tiles .cat-tile:focus-within .cat-tile__image {
  opacity: 1;
  transform: scale(1.02);
}
.cat-tile__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 549px) {
  .cat-tile__panel { padding: 12px 14px 14px; }
  .cat-tile__name { font-size: 18px; }
  .cat-tile__desc { font-size: 13px; }
}


/* ========== PDP2 UPGRADED PRODUCT PAGE STYLES ========== */

/* --- Image gallery --- */
.pdp2__gallery { display: flex; flex-direction: column; gap: 12px; }
.pdp2__gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-2, var(--surface, #111));
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 18px;
  overflow: hidden;
}
.pdp2__zoom-frame {
  width: 100%; height: 100%;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--surface, #0d0d0d);
}
.pdp2__main-img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
}
.pdp2__zoom-frame:hover .pdp2__main-img { transform: scale(2); transform-origin: var(--zx, 50%) var(--zy, 50%); }
.pdp2__zoom-hint {
  position: absolute; bottom: 10px; right: 12px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(0,0,0,0.55); color: #fff;
  padding: 6px 10px; border-radius: 999px;
  opacity: 0.8; pointer-events: none;
}
.pdp2__wishlist {
  position: absolute; top: 14px; right: 14px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface, rgba(0,0,0,0.55));
  border: 1px solid var(--border, rgba(255,255,255,0.15));
  color: var(--text, #fff);
  display: grid; place-items: center;
  cursor: pointer; transition: transform 0.15s, background 0.2s;
  backdrop-filter: blur(6px);
}
.pdp2__wishlist:hover { transform: scale(1.08); }
.pdp2__wishlist.is-saved { background: var(--accent, #7CFFB2); color: #fff; border-color: var(--accent, #7CFFB2); }
.pdp2__wishlist.is-saved svg { fill: currentColor; }

.pdp2__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pdp2__thumb {
  aspect-ratio: 1 / 1;
  padding: 6px;
  background: var(--bg-2, var(--surface, #111));
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.15s;
}
.pdp2__thumb:hover { transform: translateY(-2px); border-color: var(--accent, currentColor); }
.pdp2__thumb.is-active { border-color: var(--accent, currentColor); border-width: 2px; }
.pdp2__thumb img { width: 100%; height: 100%; object-fit: contain; }

/* --- Sticky Add-to-Cart bar --- */
.pdp2__sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--surface, rgba(15,15,15,0.98));
  border-top: 1px solid var(--border, rgba(255,255,255,0.08));
  padding: 10px 0;
  transform: translateY(110%);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
}
.pdp2__sticky-bar.is-visible { transform: translateY(0); }
.pdp2__sticky-inner {
  display: flex; align-items: center; gap: 12px;
}
.pdp2__sticky-thumb {
  width: 48px; height: 48px; object-fit: contain;
  background: var(--bg-2, #fff); padding: 4px;
  border-radius: 8px; flex-shrink: 0;
}
.pdp2__sticky-info { flex: 1; min-width: 0; }
.pdp2__sticky-name {
  font-size: 13px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--text, #fff);
}
.pdp2__sticky-price {
  font-size: 15px; font-weight: 700;
  color: var(--accent, var(--primary, #fff));
}
.pdp2__sticky-qty {
  display: flex; align-items: center;
  border: 1px solid var(--border, rgba(255,255,255,0.15));
  border-radius: 999px;
  overflow: hidden;
}
.pdp2__qty-btn {
  width: 32px; height: 34px;
  background: transparent; border: 0; color: var(--text, #fff);
  cursor: pointer; font-size: 16px; font-weight: 600;
}
.pdp2__qty-btn:hover { color: var(--accent); }
.pdp2__qty-input {
  width: 36px; height: 34px; border: 0;
  background: transparent; color: var(--text, #fff);
  text-align: center; font-weight: 600; font-size: 14px;
  -moz-appearance: textfield;
}
.pdp2__qty-input::-webkit-outer-spin-button,
.pdp2__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp2__sticky-add { padding: 10px 18px; font-size: 13px; white-space: nowrap; }

@media (min-width: 861px) {
  .pdp2__sticky-bar { display: none; }
}

/* --- Trust bar --- */
.pdp2__trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 20px;
  padding: 18px 20px;
  background: var(--bg-2, var(--surface, rgba(255,255,255,0.02)));
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 14px;
  margin: 20px 0;
}
.pdp2__trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--dim, rgba(255,255,255,0.7));
}
.pdp2__trust-item svg { color: var(--accent, var(--primary)); flex-shrink: 0; }

/* --- PDP2 cards & titles --- */
.pdp2__specs, .pdp2__tabs, .pdp2__delivery, .pdp2__reviews, .pdp2__bundle, .pdp2__faq {
  background: var(--surface, #fff);
  border: 1px solid var(--line-soft, var(--border, rgba(255,255,255,0.06)));
  border-radius: 16px;
}
.pdp2__specs { padding: 22px 24px; }
.pdp2__specs-title, .pdp2__section-title {
  font-size: 18px; font-weight: 700;
  margin: 0 0 16px; color: var(--text, #fff);
  letter-spacing: -0.01em;
}
.pdp2__spec-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.pdp2__spec-table th,
.pdp2__spec-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.06));
}
.pdp2__spec-table tr:last-child th,
.pdp2__spec-table tr:last-child td { border-bottom: 0; }
.pdp2__spec-table th {
  font-weight: 500;
  color: var(--dim, rgba(255,255,255,0.6));
  width: 42%;
}
.pdp2__spec-table td { color: var(--text, #fff); font-weight: 500; }
.pdp2__badge-yes {
  display: inline-block;
  background: color-mix(in srgb, var(--accent, #7CFFB2) 18%, transparent);
  color: var(--accent, #7CFFB2);
  padding: 3px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}

/* --- Tabs / accordion --- */
.pdp2__tabs { padding: 0; overflow: hidden; }
.pdp2__tab-nav {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
  padding: 0 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pdp2__tab-nav::-webkit-scrollbar { display: none; }
.pdp2__tab-btn {
  background: transparent; border: 0;
  color: var(--dim, rgba(255,255,255,0.65));
  padding: 16px 20px;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.pdp2__tab-btn:hover { color: var(--text, #fff); }
.pdp2__tab-btn.is-active {
  color: var(--text, #fff);
  border-bottom-color: var(--accent, var(--primary));
}
.pdp2__tab-panels { padding: 20px 24px 24px; }
.pdp2__tab-panel { display: none; }
.pdp2__tab-panel.is-active { display: block; }
.pdp2__tab-panel[open] .pdp2__tab-summary { display: none; }
.pdp2__tab-summary {
  display: none;
  cursor: pointer;
  font-weight: 600; padding: 12px 0;
  color: var(--text);
}
.pdp2__tab-body p { line-height: 1.7; color: var(--dim, rgba(255,255,255,0.75)); margin: 0 0 12px; }
.pdp2__feature-list {
  padding-left: 20px; margin: 12px 0;
  color: var(--dim, rgba(255,255,255,0.75)); line-height: 1.8;
}
.pdp2__feature-list li::marker { color: var(--accent); }

/* Mobile accordion mode */
@media (max-width: 640px) {
  .pdp2__tab-nav { display: none; }
  .pdp2__tab-summary { display: block; }
  .pdp2__tab-panel {
    display: block !important;
    border-bottom: 1px solid var(--border, rgba(255,255,255,0.06));
    padding: 0 20px;
  }
  .pdp2__tab-panel[open] { padding-bottom: 16px; }
  .pdp2__tab-panels { padding: 0; }
}

/* --- Delivery / Returns --- */
.pdp2__delivery { padding: 22px 24px; }
.pdp2__delivery-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px;
}
@media (max-width: 720px) { .pdp2__delivery-grid { grid-template-columns: 1fr; } }
.pdp2__delivery-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
}
.pdp2__delivery-table th,
.pdp2__delivery-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.06));
}
.pdp2__delivery-table thead th {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--dim, rgba(255,255,255,0.55));
  font-weight: 700;
}
.pdp2__delivery-table td { color: var(--text); }
.pdp2__free {
  color: var(--accent, #7CFFB2); font-weight: 700;
}
.pdp2__returns-note h4 { margin: 0 0 8px; font-size: 15px; color: var(--text); }
.pdp2__returns-note p { font-size: 13px; line-height: 1.6; color: var(--dim); margin: 0 0 10px; }
.pdp2__dim { color: var(--dim, rgba(255,255,255,0.55)); }
.pdp2__small { font-size: 11px; }
.pdp2__strike { text-decoration: line-through; }

/* --- Reviews --- */
.pdp2__reviews { padding: 22px 24px; }
.pdp2__reviews-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; margin-bottom: 16px; flex-wrap: wrap;
}
.pdp2__stars { font-size: 15px; letter-spacing: 2px; margin-top: 4px; }
.pdp2__star { color: var(--accent, #7CFFB2); }
.pdp2__star--empty { color: var(--border, rgba(255,255,255,0.2)); }

.pdp2__trustpilot-stub {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--bg-2, rgba(255,255,255,0.03));
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  padding: 14px 18px; border-radius: 12px;
  margin: 12px 0 16px;
}
.pdp2__tp-logo { display: flex; align-items: center; gap: 6px; font-size: 15px; }
.pdp2__tp-star { color: #00b67a; font-size: 20px; line-height: 1; }
.pdp2__tp-logo strong { color: var(--text); }
.pdp2__tp-body { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 180px; }
.pdp2__tp-stars { display: flex; gap: 2px; }
.pdp2__tp-box {
  display: inline-block;
  width: 22px; height: 22px;
  background: #00b67a; color: #fff;
  text-align: center; line-height: 22px;
  border-radius: 2px; font-size: 13px;
}
.pdp2__tp-box--half {
  background: linear-gradient(90deg, #00b67a 50%, var(--border, rgba(255,255,255,0.15)) 50%);
}
.pdp2__tp-text { font-size: 13px; color: var(--text); }
.pdp2__review-placeholder { padding: 20px 0 4px; }

/* --- FAQ --- */
.pdp2__faq { padding: 22px 24px; }
.pdp2__faq-item {
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.06));
  padding: 14px 0;
}
.pdp2__faq-item:last-of-type { border-bottom: 0; }
.pdp2__faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.pdp2__faq-item summary::-webkit-details-marker { display: none; }
.pdp2__faq-item summary::after {
  content: "+";
  font-size: 22px; font-weight: 300;
  color: var(--accent);
  transition: transform 0.2s;
  line-height: 1;
}
.pdp2__faq-item[open] summary::after { content: "\2212"; }
.pdp2__faq-item p {
  margin: 12px 0 4px;
  color: var(--dim); line-height: 1.7; font-size: 14px;
}

/* --- Bundle --- */
.pdp2__bundle { padding: 22px 24px; }
.pdp2__bundle-head { margin-bottom: 16px; }
.pdp2__bundle-pill {
  background: color-mix(in srgb, var(--accent, #7CFFB2) 20%, transparent);
  color: var(--accent, #7CFFB2);
  border: 1px solid color-mix(in srgb, var(--accent, #7CFFB2) 40%, transparent);
  display: inline-block; margin-bottom: 10px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.pdp2__bundle-title { font-size: 20px; margin: 6px 0; color: var(--text); }
.pdp2__bundle-items { display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }
.pdp2__bundle-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: var(--bg-2, rgba(255,255,255,0.02));
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.pdp2__bundle-row:has(.pdp2__bundle-check:checked) { border-color: var(--accent); }
.pdp2__bundle-check { accent-color: var(--accent, var(--primary)); width: 18px; height: 18px; }
.pdp2__bundle-thumb {
  width: 44px; height: 44px; object-fit: contain;
  background: var(--surface); padding: 4px; border-radius: 6px;
}
.pdp2__bundle-info { flex: 1; }
.pdp2__bundle-name { font-size: 14px; font-weight: 500; color: var(--text); }
.pdp2__bundle-price { font-size: 13px; color: var(--dim); }
.pdp2__bundle-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; padding-top: 14px;
  border-top: 1px solid var(--border, rgba(255,255,255,0.06));
  gap: 12px; flex-wrap: wrap;
}
.pdp2__bundle-total {
  font-size: 22px; font-weight: 700;
  color: var(--accent, var(--primary));
}

/* --- Wishlist button (in main product info column) --- */
.pdp2__wishlist-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text);
  margin-top: 6px;
}
.pdp2__wishlist-btn.is-saved {
  background: color-mix(in srgb, var(--accent, #7CFFB2) 18%, transparent);
  color: var(--accent);
  border-color: var(--accent);
}
.pdp2__wishlist-btn.is-saved .pdp2__heart { fill: currentColor; }

/* --- Recently viewed --- */
.pdp2__recent { padding: 40px 0; }
.pdp2__recent-strip {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 16px;
  scrollbar-width: thin;
}
.pdp2__recent-strip::-webkit-scrollbar { height: 6px; }
.pdp2__recent-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.pdp2__recent-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: var(--bg-2, var(--surface));
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 12px;
  padding: 12px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.15s, border-color 0.15s;
}
.pdp2__recent-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.pdp2__recent-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: contain;
  background: var(--surface); border-radius: 8px; padding: 6px;
}
.pdp2__recent-name {
  font-size: 12px; font-weight: 600;
  color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}
.pdp2__recent-price { font-size: 13px; color: var(--accent, var(--primary)); font-weight: 700; }

/* --- Toast --- */
.pdp2__toast {
  position: fixed; bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text, #fff); color: var(--surface, #000);
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 100;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.pdp2__toast.is-shown {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
@media (min-width: 861px) {
  .pdp2__toast { bottom: 30px; }
}
