/* === WEED TO GO — LIGHT THEME (gasu.co inspired) + CART & PREVIOUS ACCENTS === */

/* ============================================
   POP-UP BANNER
   ============================================ */
.pop-banner-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.pop-banner-overlay.active { opacity: 1; pointer-events: all; }
.pop-banner__box {
  background: #fff; border-radius: 18px;
  padding: 2.5rem 2rem 2rem; max-width: 440px; width: 92%;
  position: relative; text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.pop-banner-overlay.active .pop-banner__box { transform: scale(1) translateY(0); }
.pop-banner__close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: none; border: none; font-size: 1.1rem;
  cursor: pointer; color: var(--text-muted);
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.pop-banner__close:hover { background: var(--bg-secondary); color: var(--text-primary); }
.pop-banner__icon  { font-size: 2.8rem; margin-bottom: 0.5rem; line-height: 1; }
.pop-banner__title { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.5rem; }
.pop-banner__msg   { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.25rem; }
.pop-banner__btn   { display: inline-block; text-decoration: none; }
/* Colour themes */
.pop-banner--green .pop-banner__title { color: var(--green-600); }
.pop-banner--gold  .pop-banner__title { color: var(--gold-dark); }
.pop-banner--gold  .pop-banner__btn.btn.btn-primary { background: var(--gold); color: #1c2d1e; }
.pop-banner--red   .pop-banner__title { color: #dc2626; }
.pop-banner--red   .pop-banner__btn.btn.btn-primary { background: #dc2626; }
.pop-banner--blue  .pop-banner__title { color: #2563eb; }
.pop-banner--blue  .pop-banner__btn.btn.btn-primary { background: #2563eb; }
.pop-banner--purple .pop-banner__title { color: #7c3aed; }
.pop-banner--purple .pop-banner__btn.btn.btn-primary { background: #7c3aed; }
.pop-banner__box.pop-banner--dark { background: #111827; }
.pop-banner--dark .pop-banner__title { color: #4ade80; }
.pop-banner--dark .pop-banner__msg   { color: #cbd5e1; }
.pop-banner--dark .pop-banner__close { color: #9ca3af; }
.pop-banner--dark .pop-banner__close:hover { background: #1f2937; color: #fff; }
/* Optional banner image (pop-up style only) */
.pop-banner__img {
  width: 100%; max-height: 190px; object-fit: cover;
  border-radius: 12px; margin-bottom: 1rem; display: block;
}

/* ── Banner "bar" display style (top or bottom strip) ── */
.pop-banner-bar {
  position: fixed; left: 0; right: 0; z-index: 9500;
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem 0.9rem; flex-wrap: wrap; text-align: center;
  padding: 0.75rem 3rem;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transition: transform 0.45s ease;
}
.pop-banner-bar--top    { top: 0;    transform: translateY(-110%); }
.pop-banner-bar--bottom { bottom: 0; transform: translateY(110%); box-shadow: 0 -4px 18px rgba(0,0,0,0.18); }
.pop-banner-bar.active  { transform: translateY(0); }
.pop-banner-bar__icon  { font-size: 1.25rem; line-height: 1; }
.pop-banner-bar__title { font-weight: 800; }
.pop-banner-bar__msg   { font-size: 0.9rem; opacity: 0.95; }
.pop-banner-bar .pop-banner__btn {
  padding: 0.32rem 1rem; font-size: 0.84rem; border-radius: 999px;
  background: rgba(255,255,255,0.94); color: #14532d; font-weight: 700;
}
.pop-banner-bar__close {
  position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.85);
  font-size: 1rem; cursor: pointer; width: 32px; height: 32px;
}
.pop-banner-bar.pop-banner--green  { background: linear-gradient(90deg,#16a34a,#22c55e); }
.pop-banner-bar.pop-banner--gold   { background: linear-gradient(90deg,#d97706,#f59e0b); }
.pop-banner-bar.pop-banner--red    { background: linear-gradient(90deg,#b91c1c,#dc2626); }
.pop-banner-bar.pop-banner--blue   { background: linear-gradient(90deg,#1d4ed8,#3b82f6); }
.pop-banner-bar.pop-banner--purple { background: linear-gradient(90deg,#6d28d9,#8b5cf6); }
.pop-banner-bar.pop-banner--dark   { background: linear-gradient(90deg,#111827,#1f2937); }
@media (max-width: 600px) {
  .pop-banner-bar { padding: 0.6rem 2.7rem 0.6rem 0.9rem; font-size: 0.9rem; }
  .pop-banner-bar__msg { font-size: 0.82rem; }
}
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   CSS VARIABLES — LIGHT PALETTE WITH PREVIOUS ACCENTS
   ============================================ */
:root {
  /* Backgrounds — clean white */
  --bg-primary:   #ffffff;
  --bg-secondary: #f6f9f6;
  --bg-tertiary:  #eef4ee;
  --bg-card:      #ffffff;

  /* Greens */
  --green-400: #86efac;
  --green-500: #4ade80;
  --green-600: #22c55e;
  --green-700: #16a34a;

  /* Gold */
  --gold:      #f59e0b;
  --gold-dark: #d97706;

  /* Text — dark on white */
  --text-primary:   #111827;
  --text-secondary: #374151;
  --text-muted:     #6b7280;
  --text-dim:       #9ca3af;

  /* Borders */
  --border-subtle:  rgba(0, 0, 0, 0.07);
  --border-default: rgba(34, 197, 94, 0.28);
  --border-hover:   rgba(34, 197, 94, 0.55);

  /* Shadows & Glows */
  --glow-green:   0 4px 24px rgba(34, 197, 94, 0.22);
  --glow-gold:    0 4px 16px rgba(245, 158, 11, 0.22);
  --shadow-card:  0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.11), 0 2px 8px rgba(0, 0, 0, 0.05);

  /* Radii & timing */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  26px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
/* Reserve space for the fixed announcement bar + header BEFORE main.js measures
   the exact offsets (setHeaderOffsets) — otherwise the whole page renders at the
   top and jumps down ~110px when JS loads (this was nearly all of our CLS).
   Values must track the rendered announcement+header heights. */
body:has(.header) { padding-top: 103px; }
@media (max-width: 600px) {
  body:has(.header) { padding-top: 112px; }
}
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f4f0; }
::-webkit-scrollbar-thumb { background: var(--green-500); border-radius: 3px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.4rem); }

.text-green { color: var(--green-500); }
.text-gold  { color: var(--gold); }
.gradient-text {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-700);
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-md);
  font-size: 0.92rem; font-weight: 600;
  transition: var(--transition); border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--green-600);
  color: #fff;
  box-shadow: var(--glow-green);
}
.btn-primary:hover {
  background: var(--green-500);
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border-default);
}
.btn-outline:hover {
  border-color: var(--green-500);
  color: var(--green-700);
  background: rgba(74, 222, 128, 0.05);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--glow-gold);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-sm  { padding: 8px 18px;  font-size: 0.83rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.02rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   AGE GATE
   ============================================ */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(255, 255, 255, 0.96);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
  transition: opacity 0.4s ease;
  padding: 1rem;
  overflow-y: auto;
}
.age-gate.hidden { display: none; }
/* Hide the gate before first paint for already-verified visitors (prevents flash on navigation) */
html.age-ok .age-gate { display: none !important; }
.age-gate__box {
  text-align: center; max-width: 450px; width: 100%;
  padding: 3rem 2.5rem;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 60px rgba(0,0,0,0.12);
  margin: auto;
}
@media (max-width: 500px) {
  .age-gate__box {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
  }
  .age-gate__leaf { font-size: 2.2rem; margin-bottom: 0.5rem; }
  .age-gate__badge { width: 96px; height: 96px; font-size: 2.1rem; margin-bottom: 0.9rem; }
  .age-gate__logo { font-size: 1.45rem; margin-bottom: 1rem; }
  .age-gate h2 { font-size: 1.15rem; }
  .age-gate p  { margin-bottom: 1.25rem; }
  .age-gate__btns .btn { min-width: 110px; }
}
.age-gate__leaf { font-size: 3rem; margin-bottom: 0.8rem; }
.age-gate__badge {
  width: 120px; height: 120px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-700);
  color: #fff;
  border: 4px solid var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem; font-weight: 800; letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.28);
}
.age-gate__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 1.5rem;
}
.age-gate__logo .to { color: var(--green-600); }
.age-gate__logo-img {
  display: block; width: 240px; max-width: 70%; height: auto;
  margin: 0.25rem auto 1.25rem;
}
.age-gate h2 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.age-gate p  { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.88rem; line-height: 1.6; }
.age-gate__btns { display: flex; gap: 1rem; justify-content: center; }
.age-gate__btns .btn { min-width: 130px; justify-content: center; }
.age-gate__disclaimer {
  margin-top: 1.5rem; font-size: 0.71rem;
  color: var(--text-dim); line-height: 1.6;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center; padding: 8px 1.25rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  color: #fff;
}
.announcement__track { display: inline-flex; align-items: center; }
.announcement__set   { display: inline-flex; align-items: center; flex: 0 0 auto; }
.announcement__set--dup { display: none; }
.announcement__item { white-space: nowrap; display: inline-flex; align-items: center; }
.announcement__item:not(:last-child)::after {
  content: '|'; margin: 0 0.7rem; opacity: 0.4; font-weight: 400;
}
.announcement .sep { margin: 0 1rem; opacity: 0.45; }

/* Mobile: scroll the announcement as a seamless single-line ticker so every item
   (and its icon) stays on one line instead of wrapping. */
@media (max-width: 600px) {
  .announcement { justify-content: flex-start; }
  .announcement__track { animation: ann-scroll 22s linear infinite; will-change: transform; }
  .announcement__set { padding-right: 1.8rem; }
  .announcement__set--dup { display: inline-flex; }
}
@keyframes ann-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .announcement__track { animation: none !important; }
}
@media (prefers-reduced-motion: reduce) and (max-width: 600px) {
  .announcement { justify-content: center; }
  .announcement__track { flex-wrap: wrap; justify-content: center; }
  .announcement__set { flex-wrap: wrap; justify-content: center; padding-right: 0; }
  .announcement__set--dup { display: none; }
}

/* ============================================
   HEADER & CART BUTTON
   ============================================ */
.header {
  position: fixed; top: var(--announcement-h, 36px); left: 0; right: 0; z-index: 150;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header__info {
  display: flex; justify-content: center; align-items: center;
  gap: 2rem; padding: 0.55rem 1.5rem; flex-wrap: wrap;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.83rem; font-weight: 500; letter-spacing: 0.02em;
}
.header__info a {
  color: var(--green-700); text-decoration: none; font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.01em; transition: color 0.2s;
}
.header__info a:hover { color: var(--green-600); }
.header__info > span { color: var(--text-muted); }
.header__info-sep { color: var(--text-dim) !important; font-size: 0.55rem; }
.header__info .header__info-cta {
  font-weight: 700; color: var(--green-700);
  background: rgba(74, 222, 128, 0.16);
  border: 1px solid rgba(74, 222, 128, 0.4);
  padding: 0.1rem 0.65rem; border-radius: 999px;
  font-size: 0.83rem; letter-spacing: 0.01em; white-space: nowrap;
}
@media (max-width: 500px) {
  .header__info { gap: 1rem; font-size: 0.78rem; padding: 0.45rem 1rem; }
  .header__info .header__info-cta { font-size: 0.74rem; }
}
/* .header.scrolled kept for compatibility but no longer changes appearance */
.header.scrolled { }
.header__inner {
  max-width: 1380px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--text-primary); white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
}
.logo__leaf { font-size: 1.5rem; }
/* Bulletproof sizing: explicit width+height pins the box exactly, flex-shrink:0 keeps
   it from being shrunk in the flex row, and object-fit:contain guarantees the image is
   NEVER distorted even if a browser sizes the box oddly (the iOS Safari flex-image bug). */
.logo__icon { width: 63px; height: 30px; object-fit: contain; aspect-ratio: 798 / 382; max-width: none; flex-shrink: 0; flex-grow: 0; display: inline-block; vertical-align: middle; margin-right: 3px; }

/* "WEED TO GO" wordmark image sitting beside the van icon */
.logo__text-img { width: 73px; height: 28px; object-fit: contain; aspect-ratio: 866 / 333; max-width: none; flex-shrink: 0; flex-grow: 0; display: inline-block; vertical-align: middle; }
.hero__logo .logo__text-img { width: 130px; height: 50px; }

/* ---- Header logo: idling engine + exhaust smoke ---- */
.header .logo { position: relative; }
.header .logo.logo--idle .logo__icon {
  transform-origin: 50% 85%;
  animation: van-idle 0.16s steps(2, end) infinite;
}
@keyframes van-idle {
  0%   { transform: translateY(0)      rotate(-0.35deg); }
  50%  { transform: translateY(-0.5px) rotate(0.35deg);  }
  100% { transform: translateY(0.2px)  rotate(-0.15deg); }
}

/* Cartoonish, puffy exhaust smoke billowing from the tailpipe at the van's rear */
.logo__smoke {
  position: absolute;
  left: 54px;   /* tailpipe opening on the left-facing van (~63px wide icon) */
  top: 19px;
  width: 11px; height: 11px;
  pointer-events: none;
}
/* Each puff is a lumpy "cauliflower" cloud: a solid core circle plus offset
   satellite circles (box-shadow) so the silhouette reads like cartoon smoke. */
.logo__smoke i {
  position: absolute;
  left: 0; bottom: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(150,156,152,0.92);
  box-shadow:
     4px   -1px  0 -1px   rgba(150,156,152,0.92),
    -3.5px -1px  0 -1.5px rgba(142,148,144,0.9),
     1.5px -4.5px 0 -2px  rgba(156,162,158,0.9),
    -2.5px -4px  0 -2.5px rgba(146,152,148,0.88),
     0.5px  1px  0 -1.5px rgba(146,152,148,0.9);
  filter: blur(0.8px);
  opacity: 0;
  will-change: transform, opacity;
  animation: van-smoke-a 3.1s ease-out infinite;
}
/* two slightly different drift paths give the column natural turbulence */
.logo__smoke i:nth-child(odd)  { animation-name: van-smoke-a; }
.logo__smoke i:nth-child(even) { animation-name: van-smoke-b; }
.logo__smoke i:nth-child(1) { animation-delay: 0s;    }
.logo__smoke i:nth-child(2) { animation-delay: 0.38s; }
.logo__smoke i:nth-child(3) { animation-delay: 0.76s; }
.logo__smoke i:nth-child(4) { animation-delay: 1.14s; }
.logo__smoke i:nth-child(5) { animation-delay: 1.52s; }
.logo__smoke i:nth-child(6) { animation-delay: 1.90s; }
.logo__smoke i:nth-child(7) { animation-delay: 2.28s; }
.logo__smoke i:nth-child(8) { animation-delay: 2.66s; }
/* puff out of the pipe, billow up gently, then fade — toned-down intensity */
@keyframes van-smoke-a {
  0%   { opacity: 0;    transform: translate(0,0)      scale(0.28); }
  12%  { opacity: 0.55; transform: translate(1px,-2px)  scale(0.6); }
  50%  { opacity: 0.42; transform: translate(3px,-9px)  scale(1.5); }
  78%  { opacity: 0.22; transform: translate(4px,-16px) scale(2.4); }
  100% { opacity: 0;    transform: translate(7px,-23px) scale(3.1); }
}
@keyframes van-smoke-b {
  0%   { opacity: 0;    transform: translate(0,0)       scale(0.3); }
  12%  { opacity: 0.52; transform: translate(2px,-2px)   scale(0.62); }
  50%  { opacity: 0.4;  transform: translate(5px,-8px)   scale(1.6); }
  78%  { opacity: 0.2;  transform: translate(7px,-15px)  scale(2.5); }
  100% { opacity: 0;    transform: translate(10px,-22px) scale(3.3); }
}

@media (prefers-reduced-motion: reduce) {
  .header .logo.logo--idle .logo__icon { animation: none; }
  .logo__smoke { display: none; }
}
.logo .to { color: var(--green-600); }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition); position: relative;
}
.nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green-500);
  transition: width 0.25s ease;
}
.nav a:hover, .nav a.active { color: var(--text-primary); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 0.75rem; }

/* Desktop: give the logo and the cart/menu side equal width so the nav links
   (Home / Shop / Deals / Delivery / Contact) sit truly centered, not pushed right. */
@media (min-width: 901px) {
  .header__inner > .logo { flex: 1 1 0; }
  .header__inner > .header__actions { flex: 1 1 0; justify-content: flex-end; }
}

/* Cart Button */
.cart-btn {
  background: transparent; border: none;
  font-size: 1.3rem; cursor: pointer;
  position: relative; padding: 5px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.cart-btn:hover { transform: scale(1.1); }
.cart-btn__count {
  position: absolute; top: 0px; right: -2px;
  background: var(--gold); color: #fff;
  font-size: 0.65rem; font-weight: bold;
  padding: 2px 5px; border-radius: 10px; line-height: 1;
}

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 23px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: var(--transition);
}

.side-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 998; opacity: 0; visibility: hidden; transition: 0.3s;
}
.side-nav-overlay.open { opacity: 1; visibility: visible; }

.side-nav {
  position: fixed; top: 0; left: -320px; bottom: 0;
  width: 100%; max-width: 320px;
  background: #fff; z-index: 999;
  box-shadow: 5px 0 30px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
  transition: 0.3s transform ease-in-out;
}
.side-nav.open { transform: translateX(320px); }

.side-nav__header {
  padding: 1.5rem; border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between;
}
.side-nav__close {
  background: none; border: none;
  color: var(--text-muted); font-size: 1.3rem; cursor: pointer;
}
.side-nav__content {
  flex: 1; overflow-y: auto; padding: 1.5rem;
}
.side-nav__section { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.side-nav__section a {
  font-size: 1.05rem; font-weight: 500; color: var(--text-secondary);
  padding: 0.5rem 0; border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.side-nav__section a:hover { color: var(--green-600); padding-left: 8px; }
.side-nav__title {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim);
  margin-bottom: 1rem;
}

/* ============================================
   CART SIDEBAR & CHECKOUT
   ============================================ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed; top: 0; right: -400px; bottom: 0;
  width: 100%; max-width: 400px;
  background: #fff; z-index: 1000;
  box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
  transition: 0.3s transform ease-in-out;
}
.cart-sidebar.open { transform: translateX(-400px); }

.cart-sidebar__header {
  padding: 1.5rem; border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-sidebar__header h3 { font-size: 1.2rem; }
.cart-close { background: none; border: none; font-size: 1.2rem; color: var(--text-muted); }

.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { text-align: center; color: var(--text-muted); padding: 2rem 0; font-size: 0.9rem; }

.cart-item {
  display: flex; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-subtle);
}
.cart-item__img { width: 70px; height: 70px; border-radius: var(--radius-sm); object-fit: cover; background: var(--bg-secondary); }
.cart-item__info { flex: 1; }
.cart-item__name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.cart-item__price { font-size: 0.85rem; color: var(--green-600); font-weight: 700; margin-bottom: 0.5rem; }
.cart-item__controls { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  width: 24px; height: 24px; border-radius: 4px; display: flex; align-items: center; justify-content: center;
}
.cart-item__qty { font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item__remove { margin-left: auto; background: none; border: none; color: #ef4444; font-size: 0.8rem; cursor: pointer; }

.cart-sidebar__footer { padding: 1.25rem 1.5rem 1.5rem; border-top: 1px solid var(--border-subtle); background: var(--bg-secondary); }
.cart-summary { margin-bottom: 0.75rem; display: flex; flex-direction: column; gap: 0.35rem; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text-muted); }
.cart-summary__total { font-weight: 700; font-size: 1.05rem; color: var(--text-primary); padding-top: 0.4rem; border-top: 1px solid var(--border-subtle); margin-top: 0.25rem; }
.cart-delivery-free { color: var(--green-600); font-weight: 700; }
.cart-min-notice {
  background: #fff8ec; border: 1px solid #f59e0b; border-radius: var(--radius-sm);
  padding: 8px 12px; font-size: 0.8rem; color: #92400e;
  margin-bottom: 0.75rem; line-height: 1.4;
}
.cart-item__img--placeholder {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: var(--bg-secondary); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}

/* Checkout View — fixed to the right edge of the viewport so it never
   leaks onto the main page when the cart is closed */
.checkout-view {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 400px;
  background: #fff; z-index: 1002;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: 0.3s transform ease-in-out;
  overflow: hidden;
}
.checkout-view.active { transform: translateX(0); }
@media (max-width: 480px) {
  .checkout-view { max-width: 100vw; }
}
.checkout-view__header {
  padding: 1.5rem; border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; gap: 1rem;
}
.checkout-form { padding: 1.5rem; overflow-y: auto; flex: 1; }
.checkout-note { font-size: 0.75rem; color: var(--text-dim); text-align: center; margin-top: 1rem; }

/* Form Elements */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 0.45rem;
}
.form-control {
  width: 100%; padding: 11px 15px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.92rem; font-family: inherit;
  transition: var(--transition); outline: none;
}
.form-control:focus {
  border-color: var(--green-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15);
}

/* ============================================
   HERO — LIGHT THEME
   ============================================ */
.hero {
  display: flex; align-items: flex-start;
  position: relative; overflow: hidden;
  padding: 1.25rem 2rem 3.5rem;
  background: linear-gradient(135deg, #f2faf2 0%, #ffffff 55%, #fafff8 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(74, 222, 128, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 75%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
}
/* Subtle grid pattern for depth */
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45, 110, 57, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 110, 57, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero__image-wrap {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%; overflow: hidden;
}
.hero__image-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, #f8fcf8 0%, rgba(248,252,248,0.2) 40%, transparent 100%);
  z-index: 1;
}
.hero__image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(248,252,248,0.6) 0%, transparent 25%, transparent 75%, rgba(248,252,248,0.9) 100%);
  z-index: 1;
}
.hero__image-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8f5ea 0%, #f5faf5 50%, #eaf3ea 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 16rem; opacity: 0.25; user-select: none;
}
.hero__weed { width: 62%; max-width: 540px; height: auto; color: #15a34a; }
.hero__content { position: relative; z-index: 2; max-width: 660px; }
.hero__top-row {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.hero__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem; font-weight: 800; color: var(--text-primary);
  text-decoration: none; display: inline-flex; align-items: center;
}
.hero__logo .logo__icon { width: 121px; height: 58px; margin-right: 10px; }
.hero__logo-text { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.hero__top-row .btn { font-size: 1.15rem; padding: 1rem 2.4rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--green-700);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 1.8rem;
}
.hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-500); animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.7); }
}
.hero h1 { margin-bottom: 1.4rem; }
.hero__sub {
  font-size: 1.08rem; color: var(--text-muted);
  margin-bottom: 2.5rem; max-width: 520px; line-height: 1.8;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero__stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero__stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: var(--green-600); line-height: 1;
}
.hero__stat span {
  font-size: 0.74rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero__stat-divider { width: 1px; background: var(--border-subtle); align-self: stretch; }

/* Subtle floating particles */
.particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--green-500); opacity: 0;
  animation: float-particle var(--dur, 8s) var(--delay, 0s) infinite linear;
}
@keyframes float-particle {
  0%   { opacity: 0;   transform: translateY(110vh) translateX(0); }
  10%  { opacity: 0.18; }
  90%  { opacity: 0.05; }
  100% { opacity: 0;   transform: translateY(-10vh) translateX(var(--drift, 20px)); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.1rem 2rem;
}
.trust-bar__inner {
  max-width: 1380px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.83rem; font-weight: 600; color: var(--text-muted);
}
.trust-item__icon { font-size: 1.1rem; }

/* ============================================
   SVG ICON SYSTEM  (clean line icons → replaces emoji)
   ============================================ */
.ic {
  width: 1em; height: 1em;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.14em;
  flex-shrink: 0;
}
.filter-pill .ic            { width: 1.05em; height: 1.05em; margin-right: 0.12rem; vertical-align: -0.18em; }
.filter-pill.active .ic     { color: #fff !important; }
.side-nav__section a .ic    { width: 1.1em; height: 1.1em; margin-right: 0.6rem; vertical-align: -0.2em; }
.bottom-nav__icon.ic        { width: 1.4rem; height: 1.4rem; }
.header__info .ic           { color: var(--text-secondary); width: 1.05em; height: 1.05em; margin-right: 0.3rem; vertical-align: -0.18em; }
.cart-btn .ic               { width: 1.3rem; height: 1.3rem; vertical-align: -0.28em; }
.nav a .ic                  { vertical-align: -0.18em; margin-right: 0.15rem; }
.btn .ic                    { width: 1.1em; height: 1.1em; vertical-align: -0.16em; margin-right: 0.2rem; }
.footer__links .ic          { color: var(--green-600); width: 1em; height: 1em; margin-right: 0.3rem; vertical-align: -0.16em; }
.cart-min-notice .ic        { color: var(--green-600); width: 1em; height: 1em; vertical-align: -0.16em; margin-right: 0.15rem; }

/* Duotone fill — gives icons a soft colored body instead of a thin outline */
.ic-duo { fill: currentColor; fill-opacity: 0.16; }

/* Solid fill — filled glyph, no outline */
.ic-solid { fill: currentColor; stroke: none; }

/* Per-category / per-icon accent colors */
.ic-c-indica  { color: #7c5cff; }   /* purple  */
.ic-c-sativa  { color: #f59e0b; }   /* amber   */
.ic-c-hybrid  { color: #22c55e; }   /* green   */
.ic-c-vape    { color: #0ea5e9; }   /* sky     */
.ic-c-edible  { color: #ec4899; }   /* pink    */
.ic-c-preroll { color: #f97316; }   /* orange  */
.ic-c-hash    { color: #b45309; }   /* brown   */
.ic-c-green   { color: #22c55e; }
.ic-c-amber   { color: #f59e0b; }
.ic-c-sky     { color: #0ea5e9; }
.ic-c-gold    { color: #eab308; }

/* Colored badge circles behind the big feature icons (How It Works steps) */
.step-icon {
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; border-radius: 50%;
}
.step-icon .ic { width: 2rem; height: 2rem; stroke-width: 1.9; }
.step-icon--green  { background: rgba(34, 197, 94, 0.14);  color: var(--green-600); }
.step-icon--sky    { background: rgba(14, 165, 233, 0.14); color: #0284c7; }
.step-icon--amber  { background: rgba(245, 158, 11, 0.16); color: var(--gold-dark); }

/* Shop category tabs / chips — icon sizing + active-state safety (icon follows text color when active) */
.cat-tab .ic, .type-chip .ic, .subcat-tab .ic { width: 1.05em; height: 1.05em; margin-right: 0.28rem; vertical-align: -0.16em; }
.cat-tab.active .ic, .type-chip.active .ic, .subcat-tab.active .ic { color: inherit !important; }
.shop-search-icon-v2 .ic, .filter-toggle-btn .ic { width: 1.1em; height: 1.1em; vertical-align: -0.18em; }
/* In-page feature icons inherit their container size */
.info-icon .ic, .value-icon .ic, .zone-card__icon .ic, .notice-box__icon .ic { width: 1em; height: 1em; }

/* Trust-bar icons: colored duotone, slightly bolder */
.trust-item__icon.ic { width: 1.35rem; height: 1.35rem; stroke-width: 1.9; }

/* ============================================
   SECTIONS / CONTAINERS
   ============================================ */
section { padding: 5rem 2rem; }
.container { max-width: 1380px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center p { max-width: 560px; margin: 0.75rem auto 0; color: var(--text-muted); }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative; cursor: pointer;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.product-card:hover {
  border-color: rgba(74, 222, 128, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 4px 11px; border-radius: 100px;
}
.badge-indica  { background: #7c5cbf; color: #fff; }
.badge-sativa  { background: var(--gold); color: #fff; }
.badge-hybrid  { background: var(--green-600); color: #fff; }
.badge-vape    { background: #2563a8; color: #fff; }
.badge-edible  { background: #b83880; color: #fff; }
.badge-preroll { background: #c25a1a; color: #fff; }
.badge-hash    { background: #8b5e1a; color: #fff; }
.product-card__sale-tag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 3px 9px; border-radius: 100px;
  background: #ef4444; color: #fff;
}

.product-placeholder-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background: var(--bg-secondary);
}

/* Variant size selector — overlaid on product image */
.product-card__img-variants {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.6rem;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: flex-end;
  z-index: 3;
}
.variant-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.2;
}
.variant-btn__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}
.variant-btn__price {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.75);
}
.variant-btn__price--sale {
  color: #fca5a5;
  font-weight: 700;
}
.variant-btn:hover {
  border-color: var(--green-400);
  background: rgba(34,197,94,0.25);
}
.variant-btn:hover .variant-btn__price { color: #fff; }
.variant-btn.active {
  background: var(--green-600);
  border-color: var(--green-600);
}
.variant-btn.active .variant-btn__label,
.variant-btn.active .variant-btn__price { color: #fff; }

.product-card__img {
  height: 220px; overflow: hidden; position: relative;
  background: var(--bg-secondary); cursor: pointer;
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.product-card__body {
  padding: 1.2rem; flex: 1; display: flex; flex-direction: column;
}
.product-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.35rem; color: var(--text-primary);
}
.product-card__desc {
  font-size: 0.8rem; color: var(--text-dim);
  margin-bottom: 0.75rem; line-height: 1.55; flex: 1;
}
.product-card__thc {
  font-size: 0.75rem; color: var(--gold-dark);
  font-weight: 700; letter-spacing: 0.02em; margin-bottom: 1rem;
}
.product-card__footer {
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  padding-top: 0.8rem; border-top: 1px solid var(--border-subtle);
}
.product-card__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--green-600);
  text-align: center;
}
.product-card .price-save { margin-left: auto; margin-right: auto; }
.product-card__price small { font-size: 0.72rem; color: var(--text-dim); font-weight: 400; }

/* Size picker moved into the card body (home + deals cards) — light theme */
.product-card__variants { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.2rem 0 0.8rem; }
.product-card__variants .variant-btn { background: #fff; border: 1.5px solid var(--border-default); backdrop-filter: none; }
.product-card__variants .variant-btn__label { color: var(--text-secondary); }
.product-card__variants .variant-btn__price { color: var(--text-muted); }
.product-card__variants .variant-btn:hover { border-color: var(--green-500); background: rgba(74,222,128,0.12); }
.product-card__variants .variant-btn:hover .variant-btn__label,
.product-card__variants .variant-btn:hover .variant-btn__price { color: var(--green-700); }
.product-card__variants .variant-btn.active { background: var(--green-600); border-color: var(--green-600); }
.product-card__variants .variant-btn.active .variant-btn__label,
.product-card__variants .variant-btn.active .variant-btn__price { color: #fff; }

/* Deals page: center the product card info (name, THC, description, sizes) */
#deals-grid .product-card__body { text-align: center; align-items: center; }
#deals-grid .product-card__variants { justify-content: center; }

/* ── Sale pricing (shared: home + shop cards) ───────────────── */
.price-now { color: #e11d2a; font-weight: 800; margin-right: 0.4rem; }
.price-was { color: var(--text-dim); font-weight: 500; text-decoration: line-through; font-size: 0.85em; }
.price-save {
  display: block; margin-top: 0.25rem;
  font-size: 0.7rem; font-weight: 700; color: var(--green-700);
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25);
  border-radius: 6px; padding: 2px 7px; width: fit-content;
}
.product-card { position: relative; }
.product-card__sale-ribbon {
  position: absolute; top: 10px; right: 10px; z-index: 4;
  background: #e11d2a; color: #fff;
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.05em;
  padding: 3px 9px; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(225,29,42,0.35);
}
.product-card__soldout-ribbon {
  position: absolute; top: 10px; right: 10px; z-index: 4;
  background: #4b5563; color: #fff;
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.05em;
  padding: 3px 9px; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(75,85,99,0.35);
}
/* Sold-out cards: dim the imagery but keep info legible */
.product-card--soldout .product-card__img,
.product-card--soldout .product-card__variants { opacity: 0.5; filter: grayscale(0.4); }
.btn.add-to-cart--disabled,
.pcard__add.add-to-cart--disabled {
  background: #e5e7eb; color: #6b7280; cursor: not-allowed;
  border: none; font-weight: 700; width: 100%;
}
.pcard__soldout-ribbon {
  position: absolute; top: 10px; left: 10px; z-index: 4;
  background: #4b5563; color: #fff;
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.05em;
  padding: 3px 9px; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(75,85,99,0.35);
}
.pcard--soldout .pcard__img-wrap { opacity: 0.5; filter: grayscale(0.4); }

/* ============================================
   FILTER PILLS
   ============================================ */
.category-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-pill {
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600;
  border: 1.5px solid var(--border-default);
  background: transparent; color: var(--text-muted);
  cursor: pointer; transition: var(--transition);
}
.filter-pill:hover, .filter-pill.active {
  background: var(--green-600); border-color: var(--green-600);
  color: #fff; box-shadow: var(--glow-green);
}

/* ============================================
   SHOP WITH SIDEBAR
   ============================================ */
.shop-layout {
  display: grid; grid-template-columns: 265px 1fr;
  gap: 2rem; align-items: start;
}
.shop-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky; top: 90px;
  box-shadow: var(--shadow-card);
}
.shop-sidebar__header {
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--border-subtle);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-dim);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-cat { border-bottom: 1px solid var(--border-subtle); }
.sidebar-cat:last-child { border-bottom: none; }
.sidebar-cat__btn {
  width: 100%; background: none; border: none;
  padding: 0.95rem 1.3rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer; transition: var(--transition); text-align: left;
}
.sidebar-cat__btn:hover, .sidebar-cat__btn.open {
  color: var(--green-600); background: rgba(74, 222, 128, 0.05);
}
.sidebar-cat__icon { font-size: 1rem; margin-right: 5px; }
.sidebar-cat__arrow { font-size: 0.68rem; transition: transform 0.22s ease; color: var(--text-dim); }
.sidebar-cat__btn.open .sidebar-cat__arrow { transform: rotate(180deg); }
.sidebar-cat__items {
  display: none; padding: 0.4rem 0 0.8rem 1.3rem;
  flex-direction: column; gap: 2px;
}
.sidebar-cat__items.open { display: flex; }
.sidebar-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: var(--radius-sm);
  font-size: 0.83rem; color: var(--text-dim);
  cursor: pointer; transition: var(--transition);
  border: 1px solid transparent;
}
.sidebar-item:hover { color: var(--text-primary); background: var(--bg-secondary); }
.sidebar-item.active {
  color: var(--green-600); background: rgba(74, 222, 128, 0.08);
  border-color: var(--border-subtle); font-weight: 600;
}
.sidebar-item__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; flex-shrink: 0; opacity: 0.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 340px));
  gap: 1.5rem;
  justify-content: center;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem; transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.testimonial-card:hover {
  border-color: var(--border-default);
  transform: translateY(-4px); box-shadow: var(--shadow-hover);
}
.stars { display: flex; gap: 3px; color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.92rem; color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 1.5rem; font-style: italic;
  position: relative;
}
.testimonial-text::before {
  content: '"';
  font-size: 3rem; font-family: Georgia, serif;
  color: rgba(74, 222, 128, 0.15);
  position: absolute; top: -0.5rem; left: -0.5rem;
  line-height: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--text-primary); }
.testimonial-author span  { font-size: 0.76rem; color: var(--text-dim); }

/* Center review card content (stars, text, author) on every screen size */
.testimonial-card   { text-align: center; }
.stars              { justify-content: center; }
.testimonial-author { justify-content: center; }
.testimonial-text::before { left: 50%; transform: translateX(-50%); top: -1.2rem; }

/* ============================================
   HOW IT WORKS / STEPS
   ============================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; position: relative;
}
.step-card {
  text-align: center; padding: 2.2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.step-card:hover {
  border-color: var(--border-default);
  transform: translateY(-4px); box-shadow: var(--shadow-hover);
}
.step-icon { font-size: 2.3rem; margin-bottom: 0.8rem; }
.step-number {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: #fff;
  margin: 0 auto 1.2rem;
  box-shadow: var(--glow-green);
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.83rem; color: var(--text-dim); line-height: 1.6; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #f0faf0 0%, #e8f5e8 50%, #f2fbf2 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center; padding: 5.5rem 2rem;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section p {
  color: var(--text-muted); margin: 1rem auto 2.5rem;
  font-size: 1.05rem; max-width: 500px; line-height: 1.7;
}
.cta-section .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   ABOUT SNIPPET
   ============================================ */
.about-snippet {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-snippet__visual { border-radius: var(--radius-xl); overflow: hidden; height: 420px; }
.about-snippet__visual-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8f5ea 0%, #f2faf2 50%, #eaf3ea 100%);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
}
.about-snippet__visual-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(74,222,128,0.15) 0%, transparent 70%);
}
.about-snippet__visual-emoji { font-size: 7rem; position: relative; z-index: 1; }
.about-snippet__content p {
  color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem;
}

/* ============================================
   DELIVERY ZONES
   ============================================ */
.zones-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem; transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.zone-card:hover { border-color: var(--border-default); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.zone-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.zone-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.zone-badge {
  display: inline-block; font-size: 0.73rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; margin: 0.5rem 0 0.8rem;
}
.zone-fast     { background: rgba(74, 222, 128, 0.15); color: var(--green-700); }
.zone-extended { background: rgba(245, 158, 11, 0.15); color: var(--gold-dark); }
.zone-card p   { font-size: 0.83rem; color: var(--text-dim); line-height: 1.55; }

/* ============================================
   FAQ
   ============================================ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden; transition: border-color 0.22s ease;
  margin-bottom: 0.7rem;
  box-shadow: var(--shadow-card);
}
.faq-item:hover, .faq-item.open { border-color: var(--border-default); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.93rem; font-weight: 600;
  color: var(--text-primary); cursor: pointer; text-align: left;
  transition: color 0.22s ease;
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--green-600); }
.faq-arrow { font-size: 0.72rem; color: var(--green-500); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 1.5rem 1.3rem;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  padding: calc(9rem + 36px) 2rem 4.5rem;
  text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, #f2faf2 0%, #ffffff 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at center top, rgba(74,222,128,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.78rem; color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a { color: var(--text-dim); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--green-500); }
.page-hero .breadcrumb .sep { opacity: 0.4; }
.page-hero p {
  color: var(--text-muted); margin: 1rem auto 0;
  max-width: 560px; font-size: 1rem; line-height: 1.7;
}
/* Tighter top spacing so there's less empty gap above the hero */
.page-hero--tight { padding-top: 1rem; }
.page-hero__logo {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.55rem; margin: 1.5rem auto 0;
}
.page-hero__logo img:first-child { width: 150px; max-width: 55%; height: auto; }
.page-hero__logo img:last-child  { width: 205px; max-width: 70%; height: auto; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 2rem 2rem;
}
.footer__grid {
  max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}
.footer__brand .logo { margin-bottom: 1rem; font-size: 1.3rem; }
.footer__brand p {
  font-size: 0.85rem; color: var(--text-dim);
  max-width: 265px; line-height: 1.75; margin-bottom: 1.5rem;
}
.footer__col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-secondary); margin-bottom: 1.2rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a { font-size: 0.85rem; color: var(--text-dim); transition: var(--transition); }
.footer__links a:hover { color: var(--green-500); padding-left: 5px; }
.footer__bottom {
  max-width: 1380px; margin: 2rem auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.78rem; color: var(--text-dim); transition: var(--transition); }
.footer__legal a:hover { color: var(--text-muted); }
.footer__disclaimer {
  max-width: 1380px; margin: 1.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--border-subtle);
  font-size: 0.7rem; color: var(--text-dim); line-height: 1.7; text-align: center;
}

/* Center all footer content (text, logo, social symbols) on every screen size */
.footer__grid       { text-align: center; }
.footer__brand      { text-align: center; }
.footer__brand .logo { justify-content: center; }
.footer__brand p    { max-width: 100%; margin-left: auto; margin-right: auto; }
.footer__social     { justify-content: center; }
.footer__col-title  { text-align: center; }
.footer__links      { align-items: center; }
.footer__links a:hover { padding-left: 0; }
.footer__bottom     { justify-content: center; text-align: center; }

/* ============================================
   BACK TO TOP
   ============================================ */
.btt {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-600); border: none; color: #fff;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(45, 110, 57, 0.3);
}
.btt.visible { opacity: 1; transform: translateY(0); }
.btt:hover { background: var(--green-500); transform: translateY(-3px); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   UTILITIES
   ============================================ */
.divider { height: 1px; background: var(--border-subtle); margin: 0; }
.pill-green {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(74, 222, 128, 0.1); border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--green-700); font-size: 0.79rem; font-weight: 600;
  padding: 5px 13px; border-radius: 100px;
}
.pill-gold {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-dark); font-size: 0.79rem; font-weight: 600;
  padding: 5px 13px; border-radius: 100px;
}
.notice-box {
  background: rgba(45, 110, 57, 0.05);
  border: 1px solid rgba(45, 110, 57, 0.18);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  font-size: 0.87rem; color: var(--text-muted);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.6;
}
.notice-box__icon { font-size: 1.2rem; flex-shrink: 0; }
.shop-count { font-size: 0.83rem; color: var(--text-dim); margin-bottom: 1.5rem; font-weight: 500; }

/* Product image placeholders */
.gradient-flower  { width:100%;height:100%;background:linear-gradient(135deg,#e8f5ea,#f5faf5);display:flex;align-items:center;justify-content:center;font-size:5rem; }
.gradient-vape    { width:100%;height:100%;background:linear-gradient(135deg,#e8eef8,#f2f5fc);display:flex;align-items:center;justify-content:center;font-size:5rem; }
.gradient-edible  { width:100%;height:100%;background:linear-gradient(135deg,#fce8f3,#fdf0f8);display:flex;align-items:center;justify-content:center;font-size:5rem; }
.gradient-hash    { width:100%;height:100%;background:linear-gradient(135deg,#f5ede0,#faf4ec);display:flex;align-items:center;justify-content:center;font-size:5rem; }
.gradient-preroll { width:100%;height:100%;background:linear-gradient(135deg,#fdf0e8,#fdf8f2);display:flex;align-items:center;justify-content:center;font-size:5rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1100px) {
  .shop-layout       { grid-template-columns: 230px 1fr; }
  .footer__grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-snippet, .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-snippet__visual, .about-img-wrap { height: 280px; }
}
@media(max-width:900px) {
  .nav { display: none; }
  .shop-layout        { grid-template-columns: 1fr; }
  .shop-sidebar       { position: static; }
  .hero__image-wrap   { display: none; }
  .contact-layout     { grid-template-columns: 1fr; }
  .hero               { background: linear-gradient(180deg, #f2faf2 0%, #fff 100%); }
}
@media(max-width:600px) {
  h1      { font-size: 2rem; }
  section { padding: 3.5rem 1.5rem; }
  .hero   { padding: 2.5rem 1.5rem 4rem; }
  .hero__ctas     { flex-direction: column; }
  .hero__stats    { gap: 1.5rem; }
  .hero__stat strong { font-size: 1.7rem; }
  .footer__grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .age-gate__btns { flex-direction: column; }
  .trust-bar__inner { gap: 1.2rem; }
  .cta-section .btns { flex-direction: column; align-items: center; }
  .steps-grid    { grid-template-columns: 1fr; }
}

/* ============================================
   LIGHT THEME — COMPONENT POLISH
   ============================================ */
::-webkit-scrollbar-track { background: #f1f5f1; }
::-webkit-scrollbar-thumb { background: rgba(34, 197, 94, 0.4); border-radius: 3px; }

.age-gate { background: rgba(248, 250, 248, 0.94); }

.announcement {
  background: var(--green-700);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: #fff;
}

.header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: 0 6px 28px rgba(34, 197, 94, 0.38);
  transform: translateY(-2px);
}

.product-card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.product-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(34, 197, 94, 0.08);
  transform: translateY(-6px);
}

.cart-min-notice {
  background: #fffbeb;
  border-color: rgba(245, 158, 11, 0.4);
  color: #92400e;
}

.form-control {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.1);
}
.form-control:focus {
  background: #fff;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
.form-control::placeholder { color: var(--text-dim); }

/* ============================================
   GRADE BADGES
   ============================================ */
.grade-badge {
  display: inline-flex; align-items: center;
  font-size: 0.6rem; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 4px; line-height: 1.5;
}
.grade-aaaa { background: linear-gradient(135deg,#6d28d9,#8b5cf6); color:#fff; }
.grade-aaa  { background: linear-gradient(135deg,#16a34a,#22c55e); color:#fff; }
.grade-aa   { background: linear-gradient(135deg,#d97706,#f59e0b); color:#fff; }
.product-card__grade { margin: 0.1rem 0 0.55rem; display:flex; align-items:center; gap:5px; }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 60;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float svg { width:26px; height:26px; fill:currentColor; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-float.hidden { display: none; }
@media(max-width:900px) {
  .whatsapp-float { bottom:5rem; right:1rem; width:46px; height:46px; }
  .whatsapp-float svg { width:22px; height:22px; }
}

/* ============================================
   COUPON CODE FIELD
   ============================================ */
.coupon-row { display:flex; gap:0.5rem; margin-bottom:0.6rem; }
.coupon-row input { flex:1; text-transform:uppercase; letter-spacing:0.05em; }
.coupon-row .btn  { white-space:nowrap; padding:10px 15px; font-size:0.82rem; }
.coupon-feedback {
  font-size:0.78rem; font-weight:600; margin-bottom:0.6rem;
  padding:6px 11px; border-radius:var(--radius-sm); display:none;
  line-height:1.4;
}
.coupon-feedback--success { display:block; color:var(--green-700); background:rgba(74,222,128,0.1); border:1px solid rgba(74,222,128,0.3); }
.coupon-feedback--error   { display:block; color:#dc2626; background:rgba(239,68,68,0.07); border:1px solid rgba(239,68,68,0.2); }
.cart-summary__discount   { color:var(--green-600); }

/* ============================================
   ORDER / WHATSAPP CTA SECTION
   ============================================ */
.order-cta-section {
  background: linear-gradient(135deg,#f0faf0,#e8f5e8);
  border-top:1px solid var(--border-subtle); border-bottom:1px solid var(--border-subtle);
  padding:4.5rem 2rem; text-align:center; position:relative; overflow:hidden;
}
.order-cta-section::before {
  content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(74,222,128,0.08) 0%, transparent 70%);
  pointer-events:none;
}
.order-cta-section h2 { margin-bottom:0.75rem; }
.order-cta-section p  { color:var(--text-muted); max-width:480px; margin:0 auto 2rem; font-size:0.95rem; line-height:1.7; }
.order-cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.btn-whatsapp { background:#25D366; color:#fff !important; box-shadow:0 4px 16px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background:#22c55e; transform:translateY(-2px); box-shadow:0 6px 24px rgba(37,211,102,0.4); }

/* ============================================
   SOCIAL LINKS IN FOOTER
   ============================================ */
.footer__social { display:flex; gap:0.65rem; margin-top:1.1rem; flex-wrap:wrap; }
.footer__social-link {
  width:34px; height:34px; border-radius:8px;
  background:var(--bg-tertiary); border:1px solid var(--border-subtle);
  display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; transition:var(--transition); color:var(--text-muted);
  text-decoration:none;
}
.footer__social-link:hover { background:var(--green-600); border-color:var(--green-600); color:#fff; transform:translateY(-2px); }
.footer__disclaimer {
  max-width:1380px; margin:1.5rem auto 0;
  padding-top:1.25rem; border-top:1px solid var(--border-subtle);
  font-size:0.68rem; color:var(--text-dim); line-height:1.75; text-align:center;
}

/* ============================================
   ANNOUNCEMENT BAR COLOURS
   ============================================ */
.announcement--green { background: var(--green-700); }
.announcement--black { background: #111827; }
.announcement--gold  { background: var(--gold-dark); }

/* ============================================
   BOTTOM NAV (mobile)
   ============================================ */
.bottom-nav {
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:90;
  flex-direction:row; flex-wrap:nowrap;
  background:linear-gradient(135deg,#e8fdf0,#d1fae5);
  border-top:2px solid #6ee7a0;
  padding:0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
}
.bottom-nav__item {
  flex:1; display:flex; flex-direction:column; align-items:center; gap:2px;
  font-size:0.65rem; color:#166534; text-decoration:none; padding:4px 0;
  transition:color 0.2s;
}
.bottom-nav__item.active, .bottom-nav__item:hover { color:#16a34a; }
.bottom-nav__icon { font-size:1.2rem; line-height:1; }
@media(max-width:600px) {
  .bottom-nav { display:flex; }
  body { padding-bottom:60px; }
  /* Stack the two floating buttons in a column above the bottom nav so they don't
     overlap (WhatsApp sat on top of the back-to-top arrow). Both aligned right. */
  .whatsapp-float { bottom:4.75rem; right:1rem; }
  .btt           { bottom:8.25rem; right:1rem; }
}

/* ============================================
   MOBILE — COMPREHENSIVE IMPROVEMENTS
   ============================================ */

/* Prevent iOS auto-zoom on input focus (font-size must be ≥ 16px) */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Minimum touch target size (44px) for all interactive elements */
@media (max-width: 768px) {
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .btn-sm { min-height: 38px; }
  .qty-btn { min-width: 38px; min-height: 38px; font-size: 1rem; }
  .cart-close { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .hamburger { min-width: 44px; min-height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .add-to-cart { min-height: 44px; }
  .filter-pill { min-height: 38px; padding: 0 1rem; }
}

/* Cart sidebar: full-width on all phones */
@media (max-width: 480px) {
  .cart-sidebar {
    right: -100vw;
    width: 100vw;
    max-width: 100vw;
  }
  .cart-sidebar.open { transform: translateX(-100vw); }
  .cart-sidebar__header { padding: 1rem; }
  .cart-items { padding: 1rem; }
  .cart-sidebar__footer { padding: 1rem; }
}

/* Checkout view: full width inside sidebar */
@media (max-width: 480px) {
  .checkout-form .form-group { margin-bottom: 0.85rem; }
  .checkout-form label { font-size: 0.82rem; }
  .checkout-note { font-size: 0.78rem; }
}

/* Variant overlay buttons — larger tap targets on mobile */
@media (max-width: 768px) {
  .product-card__img-variants { padding: 0.55rem 0.5rem; gap: 0.35rem; }
  .variant-btn { padding: 6px 11px; }
  .variant-btn__label { font-size: 0.75rem; }
  .variant-btn__price { font-size: 0.65rem; }
}

/* Announcement bar: single clean line on mobile */
@media (max-width: 600px) {
  .announcement { font-size: 0.76rem; padding: 0.45rem 1rem; }
  .announcement .sep { display: none; }
}

/* Header: prevent overflow on very small screens */
@media (max-width: 380px) {
  .logo { font-size: 1.05rem; }
  .logo__icon { width: 22px; height: 22px; }
  .cart-btn { padding: 0.4rem 0.6rem; font-size: 0.82rem; }
}

/* Trust bar: all four shown statically on mobile as a tidy 2×2 grid (two per row).
   A single line would force the long labels too small / off-screen. */
@media (max-width: 600px) {
  .trust-bar { padding: 0.95rem 1rem; }
  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1rem;
    justify-items: center;
    align-items: center;
  }
  .trust-item {
    justify-content: center;
    white-space: nowrap;
    gap: 0.4rem;
    font-size: clamp(0.66rem, 3.4vw, 0.82rem);
  }
  .trust-item__icon.ic { width: 1.1em; height: 1.1em; }
}

/* Hero stats: compact on mobile */
@media (max-width: 400px) {
  .hero__stat strong { font-size: 1.2rem; }
  .hero__stat span   { font-size: 0.72rem; }
}

/* Product grid: 2 columns on phones, 1 on very small */
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .product-card__name { font-size: 0.82rem; }
  .product-card__desc { font-size: 0.78rem; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .product-card__thc  { font-size: 0.72rem; }
  .product-card__img  { height: 160px; }
  .product-card__body { padding: 0.75rem; }
  .product-card__price { font-size: 0.9rem; }
}
@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card__img { height: 200px; }
}

/* Active state feedback on touch (replaces hover) */
@media (hover: none) {
  .product-card:active { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
  .btn:active { opacity: 0.82; }
  .filter-pill:active { background: var(--green-600); color: #fff; }
}

/* Section padding: tighter on phones */
@media (max-width: 480px) {
  section { padding: 2rem 0; }
  .section-header { margin-bottom: 1.5rem; }
  .section-header h2 { font-size: 1.5rem; }
  .section-label { font-size: 0.68rem; }
}

/* Steps grid: single column on mobile */
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .step-card { padding: 1.25rem; }
  .step-icon { font-size: 2rem; }
}

/* Category filter pills: horizontal scroll on mobile */
@media (max-width: 600px) {
  .category-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0.4rem;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .category-filters .filter-pill { flex: 0 0 auto; }
  .category-filters::-webkit-scrollbar { display: none; }
  .filter-pill { flex-shrink: 0; font-size: 0.78rem; padding: 0.4rem 0.85rem; }
}

/* Footer: tighter on mobile */
@media (max-width: 480px) {
  .footer { padding: 2rem 1rem 1.5rem; }
  .footer__disclaimer { font-size: 0.7rem; padding: 0.75rem 1rem; }
}

/* Safe-area insets for iPhone notch/Dynamic Island */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 768px) {
    body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
    .bottom-nav { padding-bottom: calc(0.5rem + env(safe-area-inset-bottom)); }
  }
}

/* Side nav: full height scroll */
@media (max-width: 900px) {
  .side-nav__content { overflow-y: auto; -webkit-overflow-scrolling: touch; }
}

/* ============================================
   CARD IMAGE CAROUSEL
   ============================================ */
.card-img-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 6; background: rgba(0,0,0,0.48); color: #fff;
  border: none; border-radius: 50%;
  width: 30px; height: 30px; font-size: 1.1rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.18s;
}
.card-img-nav--prev { left: 6px; }
.card-img-nav--next { right: 6px; }
.product-card:hover .card-img-nav,
.pcard:hover .card-img-nav { opacity: 1; }
.card-img-dots {
  position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 6; pointer-events: none;
}
.card-img-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5); transition: background 0.15s;
}
.card-img-dot.active { background: #fff; }

/* ============================================
   GLOBAL TEXT CENTERING
   ============================================ */

/* All section headers centered */
.section-header { text-align: center; }
.section-header p { max-width: 560px; margin: 0.75rem auto 0; }

/* Hero */
.hero__content { text-align: center; margin-left: auto; margin-right: auto; }
.hero__badge { display: inline-flex; }
.hero__sub { margin-left: auto; margin-right: auto; }
.hero__ctas { justify-content: center; }
.hero__stats { justify-content: center; }

/* Product cards */
.product-card__body { text-align: center; }
.product-card__footer { justify-content: center; gap: 1.5rem; }

/* Testimonials */
.testimonial-card { text-align: center; }
.stars { justify-content: center; }
.testimonial-author { justify-content: center; }
.testimonial-text::before { left: 50%; transform: translateX(-50%); top: -1.2rem; }

/* Steps */
.step-card { text-align: center; }

/* Zone cards */
.zone-card { text-align: center; }

/* About snippet */
.about-snippet__content { text-align: center; }
.about-snippet__content p { max-width: 480px; margin-left: auto; margin-right: auto; }

/* Footer columns */
.footer__col-title { text-align: center; }
.footer__links { align-items: center; }
.footer__links a:hover { padding-left: 0; }
.footer__brand { text-align: center; }
.footer__brand p { max-width: 100%; }
.footer__bottom { justify-content: center; text-align: center; }
.footer__legal { justify-content: center; }
