/* ============================================================
   Vape EU — vapestore.co.uk theme
   Dark navy chrome + neon mint accent + Plus Jakarta Sans
   ============================================================ */
:root {
  --primary: #111F2A;
  --primary-dark: #080F15;
  --accent: #91F974;
  --accent-secondary: #7fc4f9;
  --success: #5EB047;
  --mint-soft: #E9FEE3;
  --mint-pale: #d3fdc7;
  --bg: #eef5fa;
  --surface: #F4F4F5;
  --text: #111F2A;
  --muted: #3F3F46;
  --border: #BBD6ED;
  --card-border: #A1A1AA;
  --danger: #ef4444;
  --white: #ffffff;
  --grey-muted: #A1A1AA;

  --on-accent: #111F2A;
  --line: #A1A1AA;
  --line-soft: #E5E7EB;
  --dim: #3F3F46;
  --faint: #71717A;
  --mint: #91F974;
  --mint-2: #5EB047;
  --frost: #7fc4f9;
  --amber: #b45309;

  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --radius-btn: 8px;
  --radius-card: 16px;
  --shadow: 0 0 0 1px #91F974, 0 2px 2px 0 #5EB047, 0 0 0 4px #E9FEE3;
  --shadow-mint: 0 0 0 1px #91F974, 0 2px 2px 0 #5EB047, 0 0 0 4px #E9FEE3;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --max: 1280px;
}

* { 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;
  font-size: 14px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { flex: none; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 16px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 60px); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 22px); }
h3 { font-size: 1.15rem; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--success);
  background: var(--mint-soft);
  border: 1px solid var(--accent);
  padding: 6px 12px;
  border-radius: var(--radius-btn);
}
.lead { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--muted); font-weight: 400; }
.mint { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10.5px 25px;
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.5s;
  line-height: 1.4;
  text-decoration: none;
}
.btn-primary {
  background: var(--mint-pale);
  color: var(--primary);
  border-color: var(--success);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--success);
}
.btn-outline {
  background: var(--accent-secondary);
  color: var(--primary);
  border-color: #42abfc;
  box-shadow: 0 0 0 4px var(--border);
}
.btn-outline:hover {
  background: #42abfc;
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--card-border);
}
.btn-ghost:hover { border-color: var(--accent); background: var(--mint-soft); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn:active { transform: scale(0.98); }

/* ---------- Announcement Bar ---------- */
.announce-bar {
  background: var(--primary-dark);
  color: var(--grey-muted);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  border-bottom: 1px solid rgba(145,249,116,0.08);
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 16px;
  flex-wrap: wrap;
}
.announce-item { color: var(--grey-muted); }
.announce-sep { color: var(--accent); font-weight: 800; }

/* ---------- Main Header ---------- */
.site-header {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.5s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.site-header.is-shrunk {
  box-shadow: 0 2px 12px rgba(8,15,21,0.35);
}
.site-header.is-shrunk .header-inner { padding-top: 10px; padding-bottom: 10px; }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 16px;
  transition: all 0.5s;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.5px;
  line-height: 1;
}
.brand-mark { color: var(--white); }
.brand-mark-accent {
  color: var(--primary);
  background: var(--accent);
  padding: 4px 8px;
  border-radius: var(--radius-btn);
  margin-left: 4px;
}
.header-search {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  justify-self: center;
  transition: all 0.5s;
}
.header-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 0 4px var(--mint-soft);
}
.header-search-input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 11px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background: transparent;
}
.header-search-input::placeholder { color: var(--muted); opacity: 0.7; }
.header-search-btn {
  background: var(--accent);
  border: 0;
  color: var(--primary);
  padding: 0 18px;
  min-height: 42px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.header-search-btn:hover { background: var(--mint-pale); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-btn);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  transition: all 0.5s;
}
.header-action:hover { background: rgba(145,249,116,0.08); color: var(--accent); }
.header-action-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.header-action-top {
  font-size: 11px;
  font-weight: 400;
  color: var(--grey-muted);
  text-transform: none;
}
.header-action-bottom {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.header-action:hover .header-action-bottom { color: var(--accent); }
.cart-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-btn);
  font-size: 10.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count.show { display: inline-flex; }
.cart-total { color: var(--accent); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(145,249,116,0.2);
  border-radius: var(--radius-btn);
  padding: 8px;
  cursor: pointer;
  transition: all 0.5s;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.5s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Main Navigation ---------- */
.vs-nav {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.04);
  font-family: var(--font);
  position: relative;
  z-index: 40;
}
.vs-nav-inner {
  display: flex;
  align-items: stretch;
  min-height: 56px;
}
.vs-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  width: 100%;
}
.vs-nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.vs-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 56px;
  padding: 0 3px;
  margin: 0 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.5s, border-color 0.5s, font-weight 0.5s;
  white-space: nowrap;
}
.vs-nav-link:hover,
.vs-nav-link:focus-visible,
.vs-nav-link.is-active {
  color: var(--white);
  font-weight: 700;
  border-bottom-color: var(--accent);
  outline: none;
}
.vs-nav-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: var(--radius-btn);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
}
.vs-nav-badge-sale { background: var(--accent); color: var(--primary); border-color: var(--success); }
.vs-nav-badge-multi { background: var(--mint-soft); color: var(--primary); border-color: var(--success); }
.vs-nav-badge-clear { background: transparent; color: var(--accent); border-color: var(--accent); }
.vs-nav-link-sale { color: var(--accent); }
.vs-nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: var(--accent);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 0 12px;
  min-height: 56px;
  cursor: pointer;
}
.vs-nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}
.vs-nav-toggle-bar + .vs-nav-toggle-bar { margin-top: 4px; }
.vs-nav-toggle-label { margin-left: 4px; }

/* ---------- Mobile Drawer ---------- */
.vs-drawer {
  position: fixed;
  top: 0;
  left: -100vw;
  width: min(320px, 88vw);
  height: 100dvh;
  background: var(--primary);
  color: var(--white);
  z-index: 100;
  transition: left 0.5s ease;
  overflow-y: auto;
  font-family: var(--font);
  padding: 0 0 24px;
}
.vs-drawer.is-open { left: 0; }
.vs-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.5s;
}
.vs-drawer-overlay.is-open { opacity: 1; }
.vs-drawer-overlay[hidden] { display: none; }
.vs-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: var(--primary-dark);
}
.vs-drawer-brand { font-size: 16px; font-weight: 800; color: var(--white); }
.vs-drawer-close {
  background: transparent; border: 0; color: var(--accent);
  font-size: 28px; line-height: 1; cursor: pointer; padding: 4px 8px;
}
.vs-drawer-list { list-style: none; margin: 0; padding: 8px 0; }
.vs-drawer-flat > a {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 20px; background: transparent; border: 0;
  color: var(--accent); font-family: var(--font); font-size: 14px; font-weight: 700;
  text-decoration: none; cursor: pointer; transition: background 0.5s, color 0.5s;
}
.vs-drawer-flat > a:hover { background: rgba(145,249,116,0.08); color: var(--white); }
.vs-drawer-flat-sale > a { color: var(--accent); }
.vs-drawer-age {
  padding: 20px; margin: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--grey-muted); font-size: 12px; line-height: 1.5;
}
@media (max-width: 1023px) {
  .vs-nav-list { display: none; }
  .vs-nav-toggle { display: inline-flex; }
  .vs-nav-inner { min-height: 48px; }
}
@media (min-width: 1024px) {
  .vs-drawer, .vs-drawer-overlay { display: none !important; }
}
body.vs-drawer-open { overflow: hidden; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--primary);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-strip__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  min-height: 64px;
  padding: 0 16px;
}
.trust-item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  position: relative;
  min-width: 0;
}
.trust-item + .trust-item::before {
  content: ""; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 34px; background: rgba(255,255,255,.08);
}
.trust-item__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--radius-btn);
  background: rgba(145,249,116,.10); color: var(--accent);
  flex: 0 0 auto;
}
.trust-item__text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.trust-item__text strong {
  font-family: var(--font); font-weight: 800; font-size: 13.5px;
  color: var(--white); letter-spacing: -.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.trust-item__text span {
  font-family: var(--font); font-weight: 400; font-size: 12px;
  color: var(--grey-muted); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.trust-item--pilot { justify-content: flex-end; }
.trustpilot-mini {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: var(--radius-btn);
  background: var(--primary-dark);
  border: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  transition: all .5s;
}
.trustpilot-mini:hover { border-color: var(--accent); background: var(--primary); }
.trustpilot-mini__stars {
  display: inline-flex; gap: 2px; padding: 2px 3px;
  background: var(--success); border-radius: 2px;
}
.tp-star {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
}
.tp-star--half { position: relative; overflow: hidden; }
.tp-star--half::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%; background: var(--success);
}
.trustpilot-mini__label { display: flex; flex-direction: column; line-height: 1.2; }
.trustpilot-mini__label strong { font-weight: 800; font-size: 12.5px; color: var(--white); }
.trustpilot-mini__label span { font-weight: 400; font-size: 11px; color: var(--grey-muted); }
@media (max-width: 1100px) {
  .trust-item { padding: 12px; gap: 8px; }
  .trust-item__text strong { font-size: 12.5px; }
  .trust-item__text span { font-size: 11.5px; }
}
@media (max-width: 900px) {
  .trust-strip__inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; padding: 0; min-height: 0;
  }
  .trust-item {
    padding: 14px 12px;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .trust-item + .trust-item::before { display: none; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }
  .trust-item--pilot {
    grid-column: 1 / -1; justify-content: center;
    border-right: none; padding: 12px;
  }
}
@media (max-width: 480px) {
  .trust-item__icon { width: 30px; height: 30px; }
  .trust-item__text strong { font-size: 12px; }
  .trust-item__text span { font-size: 11px; }
}

/* ---------- Hero ---------- */
.vs-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  background: var(--primary);
  font-family: var(--font);
}
.vs-hero__media { position: absolute; inset: 0; z-index: 0; }
.vs-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.vs-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,15,21,0) 0%, rgba(8,21,29,0.55) 55%, rgba(8,21,29,0.80) 100%);
}
.vs-hero__inner {
  position: relative; z-index: 2;
  min-height: 560px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 96px 16px 120px;
  color: var(--white);
  max-width: var(--max);
  margin: 0 auto;
}
.vs-hero__flash {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--success);
  box-shadow: 0 0 0 4px var(--mint-soft);
  margin-bottom: 20px;
}
.vs-hero__title {
  font-family: var(--font);
  font-weight: 800;
  font-size: 60px;
  line-height: 78px;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  max-width: 920px;
}
.vs-hero__lead {
  font-size: 18px; line-height: 1.55;
  color: var(--bg);
  font-weight: 400;
  margin: 0 auto 28px;
  max-width: 680px;
}
.vs-hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 18px;
}
.vs-hero__btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 25px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: all 0.5s;
  border: 1px solid;
  cursor: pointer;
  line-height: 1.4;
}
.vs-hero__btn--primary {
  background: var(--white);
  color: #007368;
  border-color: var(--white);
}
.vs-hero__btn--primary:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--success);
}
.vs-hero__btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.vs-hero__btn--outline:hover { background: var(--white); color: var(--primary); }
.vs-hero__fine {
  font-size: 12.5px; color: var(--border);
  margin: 6px 0 0; letter-spacing: 0.02em;
}
.vs-hero__dots {
  position: absolute; left: 50%; bottom: 24px;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: 8px; list-style: none; padding: 0; margin: 0;
}
.vs-hero__dots li {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid var(--white); background: transparent;
  transition: background 0.5s;
}
.vs-hero__dots li.is-active { background: var(--accent); border-color: var(--accent); }
@media (max-width: 640px) {
  .vs-hero, .vs-hero__inner { min-height: 480px; }
  .vs-hero__inner { padding: 72px 16px 96px; }
  .vs-hero__title { font-size: 35px; line-height: 42px; max-width: 100%; }
  .vs-hero__lead { font-size: 15px; margin-bottom: 22px; }
  .vs-hero__flash { font-size: 11px; margin-bottom: 16px; }
  .vs-hero__cta { flex-direction: column; width: 100%; gap: 10px; }
  .vs-hero__btn { width: 100%; padding: 12px 20px; font-size: 14px; }
  .vs-hero__fine { font-size: 11.5px; padding: 0 12px; }
  .vs-hero__dots { bottom: 16px; }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .vs-hero__title { font-size: 44px; line-height: 54px; }
}

/* ---------- Sections + section head ---------- */
.section { padding: 56px 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; margin-bottom: 24px; flex-wrap: wrap;
}
.section-head p { color: var(--muted); max-width: 520px; margin-top: 8px; }
.section-title {
  font-family: var(--font); font-weight: 800;
  font-size: 22px; line-height: 1.2;
  color: var(--primary); margin: 0;
}
.see-all,
.section-link {
  font-family: var(--font);
  font-weight: 700; font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.5s;
}
.see-all:hover, .section-link:hover { color: var(--success); }

/* ---------- Category tiles ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-tile {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 4px;
  text-decoration: none;
  color: var(--primary);
  transition: all 0.5s;
  overflow: hidden;
}
.cat-tile-inner {
  position: relative;
  border-radius: 14px;
  padding: 22px 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.cat-tile-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--success);
  margin-bottom: 10px;
}
.cat-tile-title {
  font-family: var(--font);
  font-size: 22px; font-weight: 800; line-height: 1.15;
  color: var(--primary);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.cat-tile-desc {
  font-size: 13.5px; line-height: 1.5;
  color: var(--muted); margin: 0 0 18px;
  font-weight: 400;
}
.cat-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  padding: 10px 14px;
  background: var(--mint-pale);
  border: 1px solid var(--success);
  border-radius: var(--radius-btn);
  align-self: flex-start;
  transition: all 0.5s;
}
.cat-tile-arrow { transition: transform 0.5s; }
.cat-tile-media {
  position: absolute; right: -30px; bottom: -30px;
  width: 170px; height: 170px; pointer-events: none;
}
.cat-tile-media img {
  position: relative; width: 100%; height: 100%;
  object-fit: contain; z-index: 2;
  transition: transform 0.5s;
}
.cat-tile-halo {
  position: absolute; inset: auto 10px 10px auto;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, var(--mint-soft) 0%, rgba(233,254,227,0) 70%);
  opacity: 0; transition: opacity 0.5s; z-index: 1;
}
.cat-tile:hover {
  background: var(--mint-soft);
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.cat-tile:hover .cat-tile-cta { background: var(--accent); }
.cat-tile:hover .cat-tile-arrow { transform: translateX(4px); }
.cat-tile:hover .cat-tile-halo { opacity: 1; }
.cat-tile:hover .cat-tile-media img { transform: scale(1.06) rotate(-3deg); }

@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-tile-inner { min-height: 260px; }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: 1fr; gap: 14px; }
  .cat-tile-inner { min-height: 220px; padding: 20px 18px 18px; }
  .cat-tile-title { font-size: 20px; }
  .cat-tile-media { width: 140px; height: 140px; right: -20px; bottom: -20px; }
}

/* ---------- Brand cards (reuse cat-tile structure) ---------- */
.cat-tile-brand { padding: 4px; }
.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.5s;
  background: var(--surface);
  border-radius: 14px;
}
.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(244,244,245,0) 35%, rgba(244,244,245,0.92) 70%, var(--surface) 100%);
  border-radius: 14px;
}
.cat-tile-brand h3, .cat-tile-brand p, .cat-tile-brand .arrow, .cat-tile-brand .eyebrow {
  position: relative; z-index: 2;
}
.cat-tile-brand { min-height: 260px; }
.cat-tile-brand h3 {
  color: var(--primary);
  font-family: var(--font);
  font-weight: 800;
  font-size: 20px;
  margin: 240px 20px 6px;
}
.cat-tile-brand p { color: var(--muted); margin: 0 20px 8px; font-size: 13px; }
.cat-tile-brand .arrow { display: inline-block; color: var(--success); font-weight: 700; margin: 0 20px 18px; font-size: 13px; }

/* ---------- Product Grid + Card ---------- */
.products-section {
  padding: 56px 0;
  background: var(--bg);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 4px;
  transition: all 0.5s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  background: var(--mint-soft);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.product-image {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}
.product-card:hover .product-image { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 10px;
  font-family: var(--font); font-weight: 700;
  font-size: 11px; padding: 4px 10px;
  border-radius: var(--radius-btn);
  z-index: 2; line-height: 1.2;
}
.product-badge--sale {
  left: 10px;
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--success);
}
.product-badge--save {
  right: 10px;
  background: var(--mint-pale);
  color: var(--primary);
  border: 1px solid var(--success);
}
.product-body {
  padding: 14px 10px 10px;
  display: flex; flex-direction: column;
  gap: 6px; flex: 1;
}
.product-brand {
  font-family: var(--font); font-weight: 700;
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  line-height: 1.2;
}
.product-title {
  font-family: var(--font); font-weight: 700;
  font-size: 14px; line-height: 1.35;
  color: var(--primary); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.7em;
}
.product-rating {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font); font-size: 12px; line-height: 1;
}
.product-rating .star {
  color: var(--accent); font-size: 13px; line-height: 1;
}
.rating-count {
  color: var(--muted); font-weight: 400;
  margin-left: 4px; font-size: 12px;
}
.product-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 4px; font-family: var(--font);
}
.price-current {
  font-weight: 800; font-size: 16px;
  color: var(--primary); line-height: 1.2;
}
.price-old {
  font-weight: 400; font-size: 13px;
  color: var(--muted); text-decoration: line-through;
  line-height: 1.2;
}
.product-add {
  margin: 10px; margin-top: 0;
  width: calc(100% - 20px);
  padding: 10.5px 16px;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--success);
  background: var(--mint-pale); color: var(--primary);
  cursor: pointer; transition: all 0.5s;
  opacity: 0; transform: translateY(6px);
  pointer-events: none;
}
.product-card:hover .product-add,
.product-card:focus-within .product-add {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.product-add:hover {
  background: var(--accent); border-color: var(--success);
  color: var(--primary);
}
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
  .products-section { padding: 40px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-add {
    opacity: 1; transform: translateY(0);
    pointer-events: auto;
  }
}
@media (max-width: 480px) {
  .product-body { padding: 10px 8px 6px; }
  .product-title { font-size: 13px; }
  .price-current { font-size: 15px; }
  .product-badge { font-size: 10px; padding: 3px 8px; }
}

/* ---------- Generic grid (legacy hook still used by data-feed) ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (max-width: 768px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.skeleton {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  aspect-ratio: 0.78;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.5} 50%{opacity:0.9} }

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

/* ---------- Banner ---------- */
.banner {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  padding: 56px 44px; display: flex; flex-direction: column; gap: 18px;
  border: 1px solid var(--card-border); background: var(--primary); color: var(--white);
}
.banner img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; z-index: 0; }
.banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(8,15,21,0.92), rgba(8,15,21,0.4));
  z-index: 1;
}
.banner > * { position: relative; z-index: 2; }
.banner h2 { color: var(--white); max-width: 560px; }
.banner p { color: var(--bg); max-width: 480px; }
.banner .eyebrow { background: var(--accent); border-color: var(--success); color: var(--primary); }

/* ---------- App feature (used on brand + category pages) ---------- */
.app-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.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: var(--mint-soft); display: grid; place-items: center;
  flex: none; color: var(--success);
}
.feature-ic svg { width: 22px; height: 22px; }
@media (max-width: 860px) { .app-feature { grid-template-columns: 1fr; } }

/* ---------- Value cards ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.value-card {
  background: var(--surface); border: 1px solid var(--card-border);
  border-radius: var(--radius-card); padding: 4px;
  transition: all 0.5s;
}
.value-card > * { padding-inline: 22px; }
.value-card .feature-ic { margin: 22px 22px 12px; }
.value-card h3 { margin-bottom: 8px; padding-inline: 22px; }
.value-card p { color: var(--muted); margin-bottom: 22px; }
.value-card:hover {
  background: var(--mint-soft);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
@media (max-width: 820px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- Video / vibe ---------- */
.video-feature {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  aspect-ratio: 21/9; border: 1px solid var(--card-border); 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(8,15,21,0.85), transparent 55%, rgba(8,15,21,0.6));
}
.video-feature-text {
  position: absolute; left: 7%; top: 50%; transform: translateY(-50%);
  z-index: 2; max-width: 480px; color: var(--white);
}
.video-feature-text h2 { color: var(--white); }
.video-feature-text .eyebrow { background: var(--accent); border-color: var(--success); color: var(--primary); }
@media (max-width: 760px) {
  .video-feature { aspect-ratio: 4 / 5; }
  .video-feature::after { background: linear-gradient(180deg, rgba(8,15,21,0.15) 30%, rgba(8,15,21,0.95)); }
  .video-feature-text { inset: auto 20px 24px 20px; top: auto; transform: none; max-width: none; }
}
.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-card);
  overflow: hidden; aspect-ratio: 16 / 10;
  border: 1px solid var(--card-border); background: var(--surface);
  transition: all 0.5s;
}
.vibe-clip:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.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(8,15,21,0.88));
  pointer-events: none;
}
.vibe-clip figcaption {
  position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: var(--white);
}
.vibe-clip figcaption .eyebrow { background: var(--accent); border-color: var(--success); color: var(--primary); display: block; margin-bottom: 6px; }
.vibe-clip figcaption b { font-family: var(--font); font-weight: 800; font-size: 1.15rem; color: var(--white); }
.vibe-note { text-align: center; color: var(--muted); 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(--card-border);
  border-radius: var(--radius-card); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: all 0.5s; padding: 4px;
}
.post-card:hover { background: var(--mint-soft); border-color: var(--accent); box-shadow: var(--shadow); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--white); border-radius: 12px; }
.post-card .thumb img, .post-featured .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .thumb img, .post-featured:hover .thumb img { transform: scale(1.05); }
.post-card .pc-body { padding: 18px 16px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-family: var(--font); font-size: 16px; font-weight: 800; line-height: 1.3; }
.post-card p { color: var(--muted); font-size: 13px; line-height: 1.55; flex: 1; }
.post-tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--success);
  background: var(--mint-soft);
  border: 1px solid var(--accent);
  padding: 4px 10px; border-radius: var(--radius-btn);
}
.post-meta { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 12px; }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); flex: none; }
.post-featured {
  display: grid; grid-template-columns: 1.15fr 1fr;
  border: 1px solid var(--card-border); border-radius: var(--radius-card);
  overflow: hidden; background: var(--surface); margin-bottom: 30px;
  text-decoration: none; color: inherit;
  padding: 4px; transition: all 0.5s;
}
.post-featured:hover { background: var(--mint-soft); border-color: var(--accent); box-shadow: var(--shadow); }
.post-featured .thumb { overflow: hidden; min-height: 340px; background: var(--white); border-radius: 12px; }
.post-featured .pf-body { padding: 42px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.post-featured h2 { font-family: var(--font); font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.8rem); line-height: 1.2; }
.post-featured p { color: var(--muted); 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(--font); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.12; }
.article-hero { max-width: 1000px; margin: 0 auto 38px; border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--card-border); aspect-ratio: 21/9; background: var(--white); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero--product { aspect-ratio: 16 / 9; background: var(--white); }
.article-hero--product img { object-fit: contain; padding: 20px; }
@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; }
}
.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-card);
  border: 1px solid var(--card-border); display: block; background: var(--white);
}
.article-fig figcaption { color: var(--muted); font-size: 0.85rem; text-align: center; margin-top: 10px; font-style: italic; }

/* ---------- SEO article body ---------- */
.seo-content { max-width: 820px; margin: 0 auto; }
.seo-content h2 { font-size: 1.6rem; margin: 38px 0 14px; }
.seo-content h3 { font-size: 1.15rem; margin: 26px 0 10px; color: var(--primary); }
.seo-content p { color: var(--muted); margin-bottom: 14px; }
.seo-content ul { margin: 0 0 16px 0; display: flex; flex-direction: column; gap: 8px; }
.seo-content li { color: var(--muted); 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(--accent);
}
.seo-content strong { color: var(--primary); }
.seo-content a { color: var(--success); font-weight: 600; }
.seo-content a:hover { color: var(--primary); text-decoration: underline; }

/* ---------- Store filters ---------- */
.store-bar {
  display: flex; gap: 12px; flex-wrap: wrap;
  align-items: center; margin-bottom: 20px;
}
.search-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0 18px; height: 46px;
  flex: 1; min-width: 240px;
  transition: all 0.5s;
}
.search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 0 4px var(--mint-soft);
}
.search-box input {
  background: none; border: none; outline: none;
  color: var(--primary); font-size: 14px; width: 100%;
  font-family: var(--font);
}
.chip {
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  background: var(--surface); border: 1px solid var(--card-border);
  color: var(--muted);
  font-family: var(--font); font-weight: 700; font-size: 13px;
  cursor: pointer; transition: all 0.5s;
}
.chip:hover { color: var(--primary); border-color: var(--accent); background: var(--mint-soft); }
.chip.active {
  background: var(--accent); color: var(--primary);
  border-color: var(--success);
}
.load-more-wrap { text-align: center; margin-top: 40px; }

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 12px; color: var(--muted);
  margin-bottom: 7px; font-weight: 700; letter-spacing: 0.02em;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  color: var(--primary); font-size: 14px;
  font-family: var(--font); outline: none;
  transition: all 0.5s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 0 4px var(--mint-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.panel {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 26px;
}

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(8,15,21,0.6); backdrop-filter: blur(4px);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.5s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%;
  width: 420px; max-width: 92vw;
  background: var(--white);
  border-left: 1px solid var(--card-border);
  z-index: 201; transform: translateX(100%);
  transition: transform 0.5s 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(--border);
  background: var(--primary); color: var(--white);
}
.drawer-head h3 { color: var(--white); font-weight: 800; }
.drawer-body { flex: 1; overflow-y: auto; padding: 22px; background: var(--bg); }
.drawer-foot { padding: 22px; border-top: 1px solid var(--border); background: var(--surface); }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-line img {
  width: 64px; height: 64px; border-radius: 8px;
  object-fit: cover; background: var(--white);
  border: 1px solid var(--border); flex: none;
}
.qty {
  display: inline-flex; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-btn);
}
.qty button {
  width: 30px; height: 30px;
  background: none; border: none;
  color: var(--primary); cursor: pointer; font-size: 1.1rem;
}
.qty span { min-width: 24px; text-align: center; font-weight: 700; }
.card-brand { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.pill { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-btn); border: 1px solid transparent; }
.pill-mint { background: var(--mint-soft); color: var(--success); border-color: var(--accent); }
.pill-frost { background: rgba(127,196,249,0.15); color: #007368; border-color: var(--accent-secondary); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: var(--grey-muted);
  font-family: var(--font);
  margin-top: 60px;
}
.footer-pay-strip {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-pay-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 14px 16px; flex-wrap: wrap;
}
.footer-pay-label {
  color: var(--white); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em;
}
.footer-pay-icons {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.pay-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 4px 8px; background: var(--white); color: var(--primary);
  border-radius: 4px; font-weight: 800; font-size: 10px;
  letter-spacing: 0.02em; line-height: 1;
}
.footer-main { padding: 40px 0 20px; }
.footer-main-inner {}
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 30px;
}
.footer-col-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand { display: inline-flex; align-items: center; gap: 2px; font-family: var(--font); font-weight: 800; font-size: 24px; }
.footer-tagline { color: var(--grey-muted); font-size: 13px; line-height: 1.55; max-width: 320px; }
.footer-company-details p { color: var(--grey-muted); font-size: 13px; line-height: 1.55; margin-bottom: 2px; }
.footer-company-details strong { color: var(--white); }
.footer-company-details a { color: var(--accent); }
.footer-company-details a:hover { color: var(--white); }
.footer-col h4 {
  font-size: 13px; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--grey-muted); font-size: 14px; transition: color 0.5s; }
.footer-col a:hover { color: var(--white); }
.footer-col summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-col summary::-webkit-details-marker { display: none; }
.footer-toggle-icon { display: none; font-size: 20px; line-height: 1; color: var(--accent); }
.footer-warning {
  color: var(--grey-muted); font-size: 10px; line-height: 1.5;
  letter-spacing: 0.02em; margin: 30px 0 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-btn);
}
.footer-age-line {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; margin: 0 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-age-badge {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent); flex: 0 0 auto;
}
.footer-age-text { color: var(--white); font-size: 13px; font-weight: 700; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-bottom-line { color: var(--grey-muted); font-size: 12px; }
.footer-bottom-pay { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }

@media (max-width: 960px) {
  .footer-cols { grid-template-columns: 1fr; gap: 0; }
  .footer-col-brand { margin-bottom: 24px; }
  .footer-col-links {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 14px 0;
  }
  .footer-col-links summary { padding: 6px 0; }
  .footer-col-links h4 { margin: 0; display: inline; font-size: 14px; }
  .footer-toggle-icon { display: inline; }
  .footer-col-links[open] .footer-toggle-icon { transform: rotate(45deg); transition: transform 0.5s; }
  .footer-col-links ul { padding-top: 14px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
/* Ensure desktop details are always open */
@media (min-width: 961px) {
  .footer-col-links > ul { display: flex !important; }
  .footer-col-links summary { pointer-events: none; }
}

/* ---------- Compliance note ---------- */
.note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--mint-soft); border: 1px solid var(--accent);
  border-radius: var(--radius-btn); padding: 14px 16px;
}
.note .ic { color: var(--success); flex: none; }
.note p { color: var(--muted); font-size: 13px; margin: 0; }
.note b { color: var(--primary); }

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

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 500;
  background: var(--primary); color: var(--white);
  display: grid; place-items: center; padding: 24px;
}
.age-gate .box { max-width: 420px; text-align: center; }
.age-gate h2 { color: var(--white); margin-bottom: 12px; }
.age-gate .num {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--accent); border: 1px solid var(--success);
  display: grid; place-items: center;
  margin: 0 auto 26px;
  font-family: var(--font); font-weight: 800;
  font-size: 2.4rem; color: var(--primary);
}
.age-gate p { color: var(--bg); }

/* ---------- FAQ ---------- */
.faq-section { margin: 40px 0 20px; padding: 30px 0; border-top: 1px solid var(--card-border); }
.faq-section h2 { margin-bottom: 20px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--card-border);
  border-radius: var(--radius-btn); padding: 18px 22px; margin-bottom: 12px;
  transition: all 0.5s;
}
.faq-item:hover { border-color: var(--accent); background: var(--mint-soft); }
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 15px;
  padding: 4px 0; list-style: none; outline: none;
  position: relative; padding-right: 28px; color: var(--primary);
}
.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(--success); transition: transform 0.5s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a { padding-top: 12px; color: var(--muted); line-height: 1.7; }

/* ---------- Order row ---------- */
.order-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--card-border);
  border-radius: var(--radius-card); margin-bottom: 12px;
  text-decoration: none; color: var(--primary);
  transition: all 0.5s;
}
.order-row:hover { background: var(--mint-soft); border-color: var(--accent); box-shadow: var(--shadow); }

/* ---------- Cat tile (legacy fallback for pages that still use old brand cards) ---------- */
.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: 22px; }
.cat-tile > p { color: var(--muted); }
.cat-tile > .arrow { display: inline-block; color: var(--success); font-weight: 700; margin-top: 12px; }

/* ---------- Focus states ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}
::selection { background: var(--accent); color: var(--primary); }
* { scrollbar-width: thin; scrollbar-color: var(--card-border) transparent; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 999px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ---------- Accessibility: reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .product-card, .post-card, .cat-tile, .video-feature, .vibe-clip, .post-featured, .btn, .value-card { transition: none; }
}

/* ---------- Responsive fine-tuning ---------- */
@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: auto auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 12px; padding: 14px 16px;
  }
  .hamburger { display: inline-flex; }
  .brand { grid-column: 2; }
  .header-actions { grid-column: 4; grid-row: 1; }
  .header-search {
    grid-column: 1 / -1; grid-row: 2;
    max-width: 100%; justify-self: stretch;
  }
  .header-action-text { display: none; }
  .header-action { padding: 8px; }
}
@media (max-width: 768px) {
  .section { padding: 40px 0; }
}
@media (max-width: 560px) {
  .announce-inner { gap: 8px; font-size: 11px; padding: 8px 12px; }
  .announce-sep { display: none; }
  .announce-item:nth-child(n+4) { display: none; }
  .brand { font-size: 22px; }
  .brand-mark-accent { padding: 3px 6px; }
  .header-inner { padding: 12px; gap: 10px; }
  .header-search-input { padding: 9px 12px; font-size: 13px; }
  .header-search-btn { padding: 0 14px; min-height: 38px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   Split hero — clean dark navy gradient, product floats right.
   Overrides the full-bleed image variant.
   ═══════════════════════════════════════════════════════════════════════ */
.vs-hero.vs-hero--split {
  position: relative;
  background:
    radial-gradient(circle at 78% 30%, rgba(145,249,116,0.12) 0%, transparent 55%),
    linear-gradient(135deg, #111F2A 0%, #080F15 60%, #0d1a26 100%);
  color: #fff;
  padding: 88px 0 110px;
  overflow: hidden;
  min-height: 640px;
  isolation: isolate;
}
.vs-hero.vs-hero--split::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.vs-hero.vs-hero--split .vs-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}
.vs-hero.vs-hero--split .vs-hero__text { max-width: 620px; }
.vs-hero.vs-hero--split .vs-hero__flash {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(145,249,116,0.14);
  color: #91F974;
  border: 1px solid rgba(145,249,116,0.45);
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin: 0 0 28px;
  backdrop-filter: blur(4px);
}
.vs-hero.vs-hero--split .vs-hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(46px, 6.8vw, 82px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 24px;
}
.vs-hero.vs-hero--split .vs-hero__lead {
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 34px;
  max-width: 520px;
  font-weight: 400;
}
.vs-hero.vs-hero--split .vs-hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap; margin: 0 0 28px;
}
.vs-hero.vs-hero--split .vs-hero__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 34px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 176px;
}
.vs-hero.vs-hero--split .vs-hero__btn--primary {
  background: #91F974;
  color: #111F2A;
  border: 1px solid #91F974;
  box-shadow: 0 8px 24px rgba(145,249,116,0.28);
}
.vs-hero.vs-hero--split .vs-hero__btn--primary:hover {
  background: #7fe561;
  border-color: #7fe561;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(145,249,116,0.4);
}
.vs-hero.vs-hero--split .vs-hero__btn--outline {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.vs-hero.vs-hero--split .vs-hero__btn--outline:hover {
  border-color: #91F974;
  color: #91F974;
  background: rgba(145,249,116,0.08);
}
.vs-hero.vs-hero--split .vs-hero__fine {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  letter-spacing: 0.01em;
}
.vs-hero.vs-hero--split .vs-hero__product {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 460px;
}
.vs-hero.vs-hero--split .vs-hero__glow {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(145,249,116,0.32) 0%, rgba(145,249,116,0.06) 40%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: heroGlow 5s ease-in-out infinite;
}
.vs-hero.vs-hero--split .vs-hero__hero-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 500px;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.55)) drop-shadow(0 0 30px rgba(145,249,116,0.15));
  animation: heroFloat 6.5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-16px) rotate(1deg); }
}
@keyframes heroGlow {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}
/* hide old dots + old full-bleed pieces if any linger */
.vs-hero.vs-hero--split .vs-hero__media,
.vs-hero.vs-hero--split .vs-hero__overlay,
.vs-hero.vs-hero--split .vs-hero__dots { display: none !important; }

@media (max-width: 900px) {
  .vs-hero.vs-hero--split { padding: 60px 0 80px; min-height: auto; }
  .vs-hero.vs-hero--split .vs-hero__inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .vs-hero.vs-hero--split .vs-hero__text { max-width: 100%; margin: 0 auto; }
  .vs-hero.vs-hero--split .vs-hero__lead { margin: 0 auto 30px; }
  .vs-hero.vs-hero--split .vs-hero__cta { justify-content: center; }
  .vs-hero.vs-hero--split .vs-hero__product { min-height: 300px; order: -1; }
  .vs-hero.vs-hero--split .vs-hero__hero-img { max-height: 320px; }
  .vs-hero.vs-hero--split .vs-hero__glow { width: 340px; height: 340px; }
}
@media (max-width: 480px) {
  .vs-hero.vs-hero--split .vs-hero__btn { min-width: 0; flex: 1; }
}
