/* ═══════════════════════════════════════════════════════════════════════════
   HAPPY SHOPPER STORE — style.css
   Research-backed CRO design: urgency, trust, visual hierarchy, mobile-first
═══════════════════════════════════════════════════════════════════════════ */

/* ── Reset & Tokens ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hs-navy: #010E29;
  --hs-navy-mid: #0D1B4B;
  --hs-lime: #A8D400;
  --hs-lime-dark: #8ab000;
  --hs-lime-light: #c4f000;
  
  
  
  --hs-red: #dc2626;
  --hs-orange: #f97316;
  --hs-yellow: #fbbf24;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.08);
  --header-h: 120px;
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Scrollbar ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

/* ══════════════════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--hs-navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

/* ── Header inner grid: logo | nav | search | actions ── */
.header-inner {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px clamp(16px, 3vw, 60px);
}

/* Logo */
.header-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.header-logo img { height: 48px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.logo-text-fallback { display: flex; align-items: center; gap: 6px; }
.logo-hs {
  background: var(--hs-lime); color: var(--hs-navy);
  font-weight: 900; font-size: 16px; padding: 4px 8px;
  border-radius: 6px; letter-spacing: -0.5px;
}
.logo-name { color: white; font-weight: 700; font-size: 15px; }

/* Desktop nav links */
.header-nav { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.header-nav-link {
  color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.header-nav-link:hover { color: white; background: rgba(255,255,255,.08); }
.header-nav-link.active { color: white; font-weight: 600; }

/* Search */
.header-search-wrap { position: relative; min-width: 0; }
.search-box {
  display: flex; align-items: center;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 99px;
  padding: 0 16px;
  gap: 8px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.search-box:focus-within {
  border-color: var(--hs-lime);
  box-shadow: 0 0 0 3px rgba(168,212,0,.2);
  background: white;
}
.search-box:focus-within .search-icon-svg { color: var(--text-3); }
.search-box:focus-within input { color: var(--text); }
.search-box:focus-within input::placeholder { color: var(--text-3); }
.search-icon-svg { color: rgba(255,255,255,.5); flex-shrink: 0; width: 16px; height: 16px; }
.search-box input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 14px; color: white; padding: 10px 0; min-width: 0;
}
.search-box input::placeholder { color: rgba(255,255,255,.45); }
.search-clear-btn { color: rgba(255,255,255,.5); display: flex; align-items: center; }
.search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); max-height: 400px; overflow-y: auto;
  display: none; z-index: 200;
}
.search-dropdown.open { display: block; }
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; cursor: pointer; transition: background 0.1s;
}
.search-result-item:hover { background: var(--surface-2); }
.search-result-img {
  width: 40px; height: 40px; border-radius: 8px;
  object-fit: contain; background: var(--surface-2); flex-shrink: 0;
}
.search-result-name { font-size: 13px; font-weight: 500; color: var(--text); }
.search-result-price { font-size: 12px; color: var(--hs-lime); font-weight: 600; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Cart pill — lime green, shows count | Total: €X.XX */
.cart-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--hs-lime); color: var(--hs-navy);
  border-radius: 99px; padding: 8px 16px;
  font-size: 13px; font-weight: 600;
  transition: all 0.15s; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(168,212,0,.3);
}
.cart-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(168,212,0,.4); }
.cart-pill:active { transform: scale(0.97); }
.cart-pill-count {
  background: var(--hs-navy); color: var(--hs-lime);
  font-size: 11px; font-weight: 800;
  min-width: 20px; height: 20px; border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
  transition: transform 0.2s var(--transition);
}
.cart-pill-count.bump { transform: scale(1.4); }
.cart-pill-sep { color: rgba(13,27,75,.4); font-size: 12px; }
.cart-pill-label { color: rgba(13,27,75,.7); font-size: 12px; font-weight: 500; }
.cart-pill-total { font-size: 14px; font-weight: 700; color: var(--hs-navy); }

/* Account button — dark pill with chevron */
.account-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); color: white;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 99px; padding: 8px 14px;
  font-size: 13px; font-weight: 500;
  transition: all 0.15s; white-space: nowrap;
}
.account-btn:hover { border-color: var(--hs-lime); color: var(--hs-lime); background: rgba(168,212,0,.08); }
.account-btn:active { transform: scale(0.97); }
.account-chevron { color: rgba(255,255,255,.5); flex-shrink: 0; }

/* Loyalty badge — circular avatar with points count */
.loyalty-badge {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  width: 44px; height: 44px;
  border-radius: 99px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  overflow: visible;
  transition: all 0.15s;
  flex-shrink: 0;
}
.loyalty-badge:hover { border-color: var(--hs-lime); }
.loyalty-badge-logo {
  width: 32px; height: 32px; border-radius: 99px;
  object-fit: contain; object-position: center;
  filter: brightness(0) invert(1);
}
.loyalty-badge-pts {
  position: absolute; bottom: -4px; right: -4px;
  background: var(--hs-lime); color: var(--hs-navy);
  font-size: 9px; font-weight: 800;
  min-width: 18px; height: 18px; border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--hs-navy);
}

/* Legacy compat */
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--hs-red); color: white;
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
  transition: transform 0.2s var(--transition);
}
.cart-badge.bump { transform: scale(1.4); }
.btn-admin {
  display: flex; align-items: center; gap: 6px;
  background: var(--hs-lime); color: var(--hs-navy);
  border-radius: 99px; padding: 8px 16px;
  font-size: 13px; font-weight: 600;
  transition: all 0.15s; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(168,212,0,.3);
}
.btn-admin:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(168,212,0,.4); }
.btn-admin:active { transform: scale(0.97); }

/* Category nav */
/* ══════════════════════════════════════════════════════════════════════════
   TWO-ROW CATEGORY NAV
   Row 1: Group pills (outlined, large) — like the reference image
   Row 2: Subcategory pills (filled/tinted, smaller) — appear on group select
══════════════════════════════════════════════════════════════════════════ */
.cat-nav {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}

/* ── Row 1: Group pills ── */
.cat-nav-groups {
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--border);
}
.cat-nav-groups::-webkit-scrollbar { display: none; }
.cat-nav-groups-inner {
  display: flex;
  gap: 6px;
  padding: 10px clamp(12px, 2.5vw, 48px);
  white-space: nowrap;
}

.cat-group-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--border);
  transition: all 0.15s var(--transition);
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}
.cat-group-pill:hover {
  border-color: var(--hs-navy);
  color: var(--hs-navy);
  background: rgba(1,14,41,0.04);
}
.cat-group-pill:active { transform: scale(0.97); }
.cat-group-pill.active {
  background: var(--hs-navy);
  color: white;
  border-color: var(--hs-navy);
  box-shadow: 0 2px 8px rgba(1,14,41,0.2);
}

/* ── Row 2: Subcategory pills ── */
.cat-nav-subs {
  overflow-x: auto;
  scrollbar-width: none;
  background: #f8fafc;
}
.cat-nav-subs::-webkit-scrollbar { display: none; }
.cat-nav-subs-inner {
  display: flex;
  gap: 6px;
  padding: 8px clamp(12px, 2.5vw, 48px);
  white-space: nowrap;
}

.cat-sub-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: white;
  border: 1.5px solid var(--border);
  transition: all 0.15s var(--transition);
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}
.cat-sub-pill .sub-emoji { font-size: 14px; line-height: 1; }
.cat-sub-pill:hover {
  border-color: var(--hs-lime);
  color: var(--hs-navy);
  background: rgba(168,212,0,0.08);
}
.cat-sub-pill:active { transform: scale(0.97); }
.cat-sub-pill.active {
  background: rgba(168,212,0,0.15);
  color: var(--hs-navy);
  border-color: var(--hs-lime);
  font-weight: 700;
}

/* Legacy compat — keep .cat-pill for any remaining references */
.cat-pill {
  padding: 5px 14px; border-radius: 99px;
  font-size: 12px; font-weight: 600; color: var(--text-2);
  background: white; border: 1.5px solid var(--border);
  transition: all 0.15s; white-space: nowrap; cursor: pointer;
}
.cat-pill:hover { border-color: var(--hs-lime); color: var(--hs-navy); background: rgba(168,212,0,0.08); }
.cat-pill.active {
  background: rgba(168,212,0,0.15); color: var(--hs-navy);
  border-color: var(--hs-lime); font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO FILMSTRIP (Swiper)
══════════════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative; overflow: hidden;
}
.hero-swiper {
  height: clamp(360px, 55vw, 560px);
  width: 100%;
}
.hero-swiper .swiper-wrapper { height: 100%; }

/* Swiper nav buttons — navy/lime style */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 44px; height: 44px;
  background: rgba(1,14,41,0.7);
  border: 1px solid rgba(168,212,0,0.3);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  color: var(--hs-lime);
  --swiper-navigation-size: 18px;
  transition: background 0.2s, border-color 0.2s;
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(168,212,0,0.15);
  border-color: var(--hs-lime);
}
.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
  width: 8px; height: 8px;
  transition: all 0.3s;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--hs-lime);
  width: 24px;
  border-radius: 4px;
}

/* Product swiper nav */
.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
  width: 36px; height: 36px;
  background: var(--hs-navy);
  border: 1px solid rgba(168,212,0,0.4);
  border-radius: 50%;
  color: var(--hs-lime);
  --swiper-navigation-size: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
}
.product-swiper .swiper-button-prev:hover,
.product-swiper .swiper-button-next:hover {
  background: var(--hs-lime);
  color: var(--hs-navy);
  border-color: var(--hs-lime);
}
.product-swiper .swiper-slide {
  width: 200px !important;
  height: auto;
}

.hero-slide {
  flex: 0 0 100%; height: 100%;
  background: var(--slide-bg, linear-gradient(135deg, #010E29 0%, #0D1B4B 100%));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: clamp(24px, 5vw, 80px);
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(168,212,0,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content, .hero-visual { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.2);
  color: white; border: 1px solid rgba(255,255,255,.3);
  border-radius: 99px; padding: 4px 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: 'Poppins', -apple-system, sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800; color: white;
  line-height: 1.05; margin-bottom: 16px;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,.85); }
.hero-sub {
  font-size: clamp(13px, 1.5vw, 16px); color: rgba(255,255,255,.85);
  max-width: 420px; margin-bottom: 28px; line-height: 1.6;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.btn-hero-primary {
  background: var(--hs-lime); color: var(--hs-navy);
  border-radius: 99px; padding: 12px 28px;
  font-size: 14px; font-weight: 700;
  transition: all 0.2s var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.btn-hero-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.btn-hero-primary:active { transform: scale(0.97); }
.btn-hero-ghost {
  background: rgba(255,255,255,.15); color: white;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 99px; padding: 12px 24px;
  font-size: 14px; font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.25); }

.hero-trust {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero-trust span {
  font-size: 12px; color: rgba(255,255,255,.8); font-weight: 500;
}

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-product-stack {
  display: flex; gap: -20px;
  position: relative;
}
.hero-product-img {
  width: clamp(80px, 12vw, 160px);
  height: clamp(80px, 12vw, 160px);
  border-radius: 20px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.3);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-left: -20px;
  animation: floatIn 0.6s var(--transition) both;
  animation-delay: var(--delay);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: transform 0.3s;
}
.hero-product-img:first-child { margin-left: 0; }
.hero-product-img:hover { transform: translateY(-8px) scale(1.05); z-index: 2; }
.hero-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

.hero-badge-big {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  width: clamp(120px, 20vw, 200px);
  height: clamp(120px, 20vw, 200px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: white; font-size: clamp(12px, 2vw, 18px);
  font-weight: 700; line-height: 1.2;
  backdrop-filter: blur(8px);
  animation: pulse 2s ease-in-out infinite;
}
.hero-badge-big strong { font-size: clamp(28px, 5vw, 52px); display: block; }

/* Filmstrip controls */
.hero-prev, .hero-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.2); color: white;
  border-radius: 50%; font-size: 22px; font-weight: 300;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 10;
}
.hero-prev { left: 16px; }
.hero-next { right: 16px; }
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,.35); transform: translateY(-50%) scale(1.1); }

.hero-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: rgba(255,255,255,.4);
  transition: all 0.3s;
}
.hero-dot.active { background: white; width: 24px; }

/* ══════════════════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--hs-navy);
  padding: 12px 20px;
}
.trust-bar-inner {
  display: flex; gap: 0; justify-content: space-between; align-items: center;
  overflow-x: auto; scrollbar-width: none;
  padding: 0 clamp(12px, 2.5vw, 48px);
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 20px; white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.15);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: 13px; color: white; font-weight: 600; }
.trust-item small { font-size: 11px; color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════════════════════════ */
.section {
  padding: clamp(24px, 4vw, 56px) clamp(16px, 3vw, 60px);
  width: 100%;
}
.section--dark {
  background: rgba(255,255,255,.1);
  max-width: 100%;
  padding: clamp(32px, 5vw, 64px) 0;
}
.section--dark .section-header,
.section--dark .carousel-wrap { padding-left: clamp(16px,3vw,60px); padding-right: clamp(16px,3vw,60px); }

.section-header {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 16px;
  margin-bottom: 24px;
}
.section-title {
  font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--text);
  flex: 1; min-width: 200px;
}
.section-sub { font-size: 14px; color: var(--text-2); flex-basis: 100%; }
.section-see-all {
  font-size: 13px; font-weight: 600; color: var(--hs-lime);
  padding: 6px 14px; border-radius: 99px; border: 1.5px solid var(--hs-lime);
  transition: all 0.15s; white-space: nowrap;
}
.section-see-all:hover { background: var(--hs-lime); color: var(--hs-navy); }

/* ══════════════════════════════════════════════════════════════════════════
   CATEGORY GRID
══════════════════════════════════════════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.cat-card {
  background: var(--cat-bg, var(--surface-2));
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  border: 1.5px solid transparent;
  transition: all 0.2s var(--transition);
  position: relative; overflow: hidden;
}
.cat-card--large {
  grid-column: span 2;
  flex-direction: row; align-items: center;
  padding: 24px 20px;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--cat-color, var(--hs-lime));
}
.cat-card:active { transform: scale(0.98); }
.cat-card-emoji { font-size: 32px; line-height: 1; }
.cat-card--large .cat-card-emoji { font-size: 40px; }
.cat-card-info { flex: 1; }
.cat-card-info h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.cat-card-info span { font-size: 12px; color: var(--text-2); }
.cat-card-arrow {
  font-size: 18px; color: var(--cat-color, var(--hs-lime));
  font-weight: 700; opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.cat-card:hover .cat-card-arrow { opacity: 1; transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════════════════
   CAROUSELS
══════════════════════════════════════════════════════════════════════════ */
.carousel-wrap { position: relative; }
.carousel {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none;
  padding: 4px 2px 16px;
}
.carousel::-webkit-scrollbar { display: none; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-60%);
  width: 40px; height: 40px;
  background: white; border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50%; font-size: 20px; color: var(--text);
  box-shadow: var(--shadow); z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.carousel-btn--prev { left: -20px; }
.carousel-btn--next { right: -20px; }
.carousel-btn:hover { background: var(--hs-lime); color: var(--hs-navy); border-color: var(--hs-lime); }

.carousel-loading {
  display: flex; align-items: center; gap: 12px;
  padding: 40px 20px; color: var(--text-2); font-size: 14px;
  width: 100%;
}

/* ══════════════════════════════════════════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════════════════════════════════════════ */
.product-card {
  flex: 0 0 clamp(150px, 18vw, 200px);
  background: white; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.15);
  overflow: hidden; cursor: pointer;
  transition: all 0.2s var(--transition);
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--hs-lime);
}
.product-card:active { transform: scale(0.98); }

.product-card-img {
  width: 100%; aspect-ratio: 1;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 8px; transition: transform 0.3s;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--hs-red); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.3px;
  padding: 2px 8px; border-radius: 99px;
}

.product-card-body { padding: 10px 12px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.product-card-name {
  font-size: 12px; font-weight: 600; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; line-height: 1.4;
}
.product-card-price { font-size: 15px; font-weight: 800; color: var(--hs-lime); }
.product-card-price small { font-size: 11px; color: var(--text-3); font-weight: 400; }

.product-card-actions {
  padding: 0 12px 12px;
  display: flex; gap: 6px;
}
.btn-add-cart {
  flex: 1; background: var(--hs-lime); color: var(--hs-navy);
  border-radius: 8px; padding: 8px;
  font-size: 12px; font-weight: 600;
  transition: all 0.15s;
}
.btn-add-cart:hover { background: var(--hs-lime-dark); color: var(--hs-navy); }
.btn-add-cart:active { transform: scale(0.97); }
.btn-quick-view {
  width: 34px; height: 34px;
  background: var(--surface-2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.15s;
}
.btn-quick-view:hover { background: var(--border); }

/* ══════════════════════════════════════════════════════════════════════════
   PRODUCT GRID (full page)
══════════════════════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(140px, 14vw, 220px), 1fr));
  gap: clamp(10px, 1.5vw, 20px);
}
.product-grid .product-card { flex: none; }

.grid-controls { display: flex; gap: 12px; align-items: center; }
.sort-select {
  padding: 7px 12px; border-radius: 8px;
  border: 1.5px solid var(--border); background: white;
  font-size: 13px; color: var(--text); outline: none;
}
.sort-select:focus { border-color: var(--hs-lime); }
.btn-clear-filter {
  padding: 7px 14px; border-radius: 8px;
  border: 1.5px solid var(--border); background: white;
  font-size: 13px; color: var(--text-2);
  transition: all 0.15s;
}
.btn-clear-filter:hover { border-color: var(--hs-red); color: var(--hs-red); }

.pagination {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 32px; flex-wrap: wrap;
}
.page-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1.5px solid var(--border); background: white;
  font-size: 13px; font-weight: 600; color: var(--text);
  transition: all 0.15s;
}
.page-btn:hover, .page-btn.active {
  background: var(--hs-lime); color: var(--hs-navy); border-color: var(--hs-lime);
}

/* ══════════════════════════════════════════════════════════════════════════
   PROMO BANNER
══════════════════════════════════════════════════════════════════════════ */
.promo-banner {
  background: linear-gradient(135deg, #064e3b, #065f46);
  padding: 20px clamp(16px,3vw,40px);
}
.promo-banner-inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 0 clamp(12px, 2.5vw, 48px);
}
.promo-banner-icon { font-size: 36px; flex-shrink: 0; }
.promo-banner-text { flex: 1; min-width: 200px; }
.promo-banner-text strong { display: block; font-size: 16px; color: white; font-weight: 700; margin-bottom: 2px; }
.promo-banner-text span { font-size: 13px; color: rgba(255,255,255,.8); }
.btn-promo {
  background: white; color: #064e3b;
  border-radius: 99px; padding: 10px 22px;
  font-size: 13px; font-weight: 700;
  white-space: nowrap; transition: all 0.15s;
}
.btn-promo:hover { transform: scale(1.04); }

/* ══════════════════════════════════════════════════════════════════════════
   STORES SECTION
══════════════════════════════════════════════════════════════════════════ */
.stores-section {
  background: rgba(255,255,255,.1);
  padding: clamp(32px, 5vw, 64px) clamp(16px, 3vw, 40px);
}
.stores-header {
  text-align: center; margin-bottom: 32px;
}
.stores-header h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 8px; }
.stores-header p { font-size: 15px; color: var(--text-2); }
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(12px, 2vw, 24px);
  width: 100%;
}
.store-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all 0.2s var(--transition);
}
.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.store-card-header {
  padding: 24px 20px; position: relative;
}
.store-number {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.6);
  letter-spacing: 2px; display: block; margin-bottom: 4px;
}
.store-card-header h3 { font-size: 18px; font-weight: 700; color: white; }
.store-card-body { padding: 20px; }
.store-stat {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px;
}
.store-stat span { font-size: 22px; font-weight: 800; color: var(--text); }
.store-stat small { font-size: 12px; color: var(--text-2); }
.store-hours { margin: 16px 0; }
.store-hours strong { display: block; font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 2px; }
.store-hours span { font-size: 14px; color: var(--text); }
.btn-store-directions {
  width: 100%; background: rgba(255,255,255,.1);
  border-radius: 8px; padding: 10px;
  font-size: 13px; font-weight: 600; color: var(--text);
  transition: all 0.15s;
}
.btn-store-directions:hover { background: var(--text); color: white; }

/* ══════════════════════════════════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════════════════════════════════ */
.cart-overlay, .admin-overlay, .modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open, .admin-overlay.open, .modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: min(400px, 95vw);
  background: white; z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--transition);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.cart-drawer-header h3 { font-size: 18px; font-weight: 700; }
.cart-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--surface-2); font-size: 16px; color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.cart-close:hover { background: var(--border); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 200px; gap: 8px;
  color: var(--text-2);
}
.cart-empty-icon { font-size: 48px; }
.cart-empty p { font-size: 16px; font-weight: 600; }
.cart-empty small { font-size: 13px; }
.cart-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.cart-item-img {
  width: 56px; height: 56px; border-radius: 8px;
  background: var(--surface-2); object-fit: contain; padding: 4px;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--text); }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--hs-lime); }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--surface-2); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.1s;
}
.qty-btn:hover { background: var(--border); }
.qty-num { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }
.cart-drawer-footer { padding: 16px; border-top: 1px solid var(--border); }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.cart-total span { font-size: 14px; color: var(--text-2); }
.cart-total strong { font-size: 22px; font-weight: 800; color: var(--text); }
.btn-checkout {
  width: 100%; background: var(--hs-lime); color: var(--hs-navy);
  border-radius: 12px; padding: 14px;
  font-size: 15px; font-weight: 700;
  transition: all 0.15s;
  box-shadow: 0 4px 16px rgba(168,212,0,.3);
}
.btn-checkout:hover { background: var(--hs-lime-dark); transform: translateY(-1px); }
.cart-note { font-size: 11px; color: var(--text-3); text-align: center; margin-top: 8px; }

/* ══════════════════════════════════════════════════════════════════════════
   PRODUCT MODAL
══════════════════════════════════════════════════════════════════════════ */
.product-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(700px, 95vw); max-height: 90vh;
  background: white; border-radius: var(--radius-lg);
  z-index: 202; overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: all 0.3s var(--transition);
  box-shadow: var(--shadow-lg);
}
.product-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--surface-2); font-size: 16px; color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  z-index: 1; transition: all 0.15s;
}
.modal-close:hover { background: var(--border); }
.modal-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  max-height: 90vh; overflow-y: auto;
}
.modal-img-wrap {
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  padding: 32px; min-height: 300px;
}
.modal-img-wrap img { max-width: 100%; max-height: 300px; object-fit: contain; }
.modal-info { padding: 32px 24px; }
.modal-category { font-size: 11px; font-weight: 600; color: var(--hs-lime); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.modal-name { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.modal-price { font-size: 32px; font-weight: 800; color: var(--hs-lime); margin-bottom: 16px; }
.modal-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 24px; }
.modal-add-btn {
  width: 100%; background: var(--hs-lime); color: var(--hs-navy);
  border-radius: 12px; padding: 14px;
  font-size: 15px; font-weight: 700;
  transition: all 0.15s;
}
.modal-add-btn:hover { background: var(--hs-navy); }

/* ══════════════════════════════════════════════════════════════════════════
   STORE DROPDOWN
══════════════════════════════════════════════════════════════════════════ */
.store-dropdown {
  position: fixed; top: 70px; right: 20px;
  background: white; border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  z-index: 150; min-width: 220px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: all 0.2s var(--transition);
}
.store-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.store-dropdown-title {
  padding: 12px 16px; font-size: 11px; font-weight: 600;
  color: var(--text-3); letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.store-option {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; width: 100%;
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: background 0.1s;
}
.store-option:hover { background: var(--surface-2); }
.store-option.active { font-weight: 700; }
.store-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   ADMIN PANEL
══════════════════════════════════════════════════════════════════════════ */
.admin-panel {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: min(520px, 98vw);
  background: white; z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--transition);
  box-shadow: var(--shadow-lg);
}
.admin-panel.open { transform: translateX(0); }
.admin-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, var(--hs-navy), var(--hs-lime));
}
.admin-panel-title { display: flex; align-items: center; gap: 12px; }
.admin-panel-icon { font-size: 24px; }
.admin-panel-title h3 { font-size: 16px; font-weight: 700; color: white; }
.admin-panel-title small { font-size: 12px; color: rgba(255,255,255,.75); }
.admin-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.2); color: white; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.admin-close:hover { background: rgba(255,255,255,.3); }
.admin-panel-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 24px; }

.admin-section { background: var(--surface-2); border-radius: var(--radius); padding: 16px; }
.admin-section-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.admin-section-desc { font-size: 12px; color: var(--text-2); margin-bottom: 12px; }

.ai-prompt-examples {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px;
}
.ai-example {
  background: white; border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 99px; padding: 5px 12px;
  font-size: 11px; font-weight: 500; color: var(--text-2);
  transition: all 0.15s;
}
.ai-example:hover { border-color: var(--hs-lime); color: var(--hs-lime); background: rgba(168,212,0,.12); }

.ai-prompt-box {
  display: flex; flex-direction: column; gap: 8px;
}
.ai-prompt-box textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px; font-size: 13px; color: var(--text);
  resize: vertical; outline: none; background: white;
  transition: border-color 0.15s;
}
.ai-prompt-box textarea:focus { border-color: var(--hs-lime); }
.btn-ai-send {
  background: var(--hs-lime); color: var(--hs-navy);
  color: white; border-radius: 10px; padding: 12px;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.15s;
}
.btn-ai-send:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(168,212,0,.4); }

.ai-response {
  background: white; border: 1.5px solid var(--hs-lime);
  border-radius: 10px; margin-top: 12px; overflow: hidden;
}
.ai-response-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; background: rgba(168,212,0,.12);
  font-size: 12px; font-weight: 600; color: var(--hs-navy);
}
.ai-response-body { padding: 14px; font-size: 13px; color: var(--text); line-height: 1.6; white-space: pre-wrap; }

.quick-actions-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.quick-action {
  background: white; border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px; padding: 14px 12px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  transition: all 0.15s; text-align: left;
}
.quick-action:hover { border-color: var(--hs-lime); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.quick-action span { font-size: 22px; }
.quick-action strong { font-size: 13px; color: var(--text); }
.quick-action small { font-size: 11px; color: var(--text-2); }

.perf-grid { display: flex; flex-direction: column; gap: 10px; }
.perf-card {
  background: white; border-radius: 10px; padding: 14px;
  border-left: 4px solid var(--accent);
}
.perf-store { font-size: 11px; font-weight: 600; color: var(--text-2); letter-spacing: 1px; text-transform: uppercase; }
.perf-rev { font-size: 22px; font-weight: 800; color: var(--text); }
.perf-orders { font-size: 12px; color: var(--text-2); margin-bottom: 8px; }
.perf-bar { height: 4px; background: var(--border); border-radius: 99px; overflow: hidden; }
.perf-bar-fill { height: 100%; background: var(--accent); border-radius: 99px; }

.admin-input {
  width: 100%; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 8px 10px; font-size: 13px; color: var(--text);
  outline: none; background: white; margin-bottom: 6px;
}
.admin-input:focus { border-color: var(--hs-lime); }
.btn-save-banner {
  background: var(--hs-lime); color: var(--hs-navy);
  border-radius: 8px; padding: 10px 20px;
  font-size: 13px; font-weight: 700;
  margin-top: 8px;
}
.btn-sm {
  padding: 4px 10px; border-radius: 6px;
  border: 1.5px solid var(--border); background: white;
  font-size: 12px; font-weight: 600; color: var(--text);
  transition: all 0.1s;
}
.btn-sm:hover { background: var(--surface-2); }
.btn-sm--danger:hover { border-color: var(--hs-red); color: var(--hs-red); }
.cat-manager-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px; background: white; border-radius: 8px; margin-bottom: 6px;
  font-size: 13px; font-weight: 500;
}
.cat-manager-actions { display: flex; gap: 4px; }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text); color: white;
  padding: clamp(32px, 5vw, 64px) clamp(16px, 3vw, 60px) 0;
}
.footer-inner {
  width: 100%;
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 200px; }
.footer-brand strong { display: block; font-size: 15px; font-weight: 700; }
.footer-brand small { font-size: 12px; color: rgba(255,255,255,.6); }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.8); transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  width: 100%;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 16px 0;
  font-size: 12px; color: rgba(255,255,255,.4);
}

/* ══════════════════════════════════════════════════════════════════════════
   SPINNER
══════════════════════════════════════════════════════════════════════════ */
.spinner {
  width: 20px; height: 20px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: white; border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
.carousel-loading .spinner { border-color: var(--border); border-top-color: var(--hs-lime); }

/* ══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════════════════ */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 768px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 10px; padding: 8px 16px; }
  .header-nav { display: none; }
  .header-search-wrap { grid-column: 1 / -1; grid-row: 2; }
  .header-actions { gap: 6px; }
  .cart-pill-label { display: none; }
  .search-wrap { grid-column: 1 / -1; }
  .hero-slide { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(28px, 8vw, 40px); }
  .modal-inner { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card--large { grid-column: span 2; }
  .stores-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 0; }
  .trust-item { padding: 4px 12px; }
  .btn-admin span { display: none; }
  .logo-text .logo-sub { display: none; }
}

@media (max-width: 480px) {
  .hero-slide { padding: 24px 16px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-actions-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════════════
   WIDE SCREEN ENHANCEMENTS (1400px+)
══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 1400px) {
  .header-inner { padding: 10px clamp(40px, 5vw, 80px); }
  .cat-nav-groups-inner,
  .cat-nav-subs-inner { padding-left: clamp(40px, 5vw, 80px); padding-right: clamp(40px, 5vw, 80px); }
  .section { padding-left: clamp(40px, 5vw, 80px); padding-right: clamp(40px, 5vw, 80px); }
  .section--dark .section-header,
  .section--dark .carousel-wrap { padding-left: clamp(40px, 5vw, 80px); padding-right: clamp(40px, 5vw, 80px); }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
  .trust-bar-inner { padding: 0 clamp(40px, 5vw, 80px); }
  .promo-banner-inner { padding: 0 clamp(40px, 5vw, 80px); }
  .stores-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { padding: 0 clamp(40px, 5vw, 80px); }
}

@media (min-width: 1800px) {
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .header-inner { padding: 10px 80px; }
  .section { padding-left: 80px; padding-right: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   FLOATING AI CHAT WIDGET
══════════════════════════════════════════════════════════════════════════ */
.chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--hs-lime);
  color: var(--hs-navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(168,212,0,.45), 0 2px 8px rgba(0,0,0,.25);
  transition: transform 0.2s cubic-bezier(0.23,1,0.32,1), box-shadow 0.2s;
  outline: none;
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(168,212,0,.55), 0 3px 12px rgba(0,0,0,.3); }
.chat-fab:active { transform: scale(0.96); }
.chat-unread-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e53e3e;
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--hs-navy);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.chat-unread-badge.visible { opacity: 1; transform: scale(1); }
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 1200;
  width: 360px;
  max-width: calc(100vw - 32px);
  max-height: 520px;
  background: var(--hs-navy-mid, #0D1B4B);
  border: 1px solid rgba(168,212,0,.2);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 4px 16px rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.23,1,0.32,1), transform 0.25s cubic-bezier(0.23,1,0.32,1);
}
.chat-widget.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--hs-navy);
  border-bottom: 1px solid rgba(168,212,0,.15);
  flex-shrink: 0;
}
.chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--hs-lime);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.chat-header-text { flex: 1; min-width: 0; }
.chat-title { font-size: 14px; font-weight: 700; color: white; }
.chat-subtitle { font-size: 11px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 5px; margin-top: 1px; }
.chat-online-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hs-lime);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.chat-header-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  cursor: pointer; padding: 4px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.15s, background 0.15s; flex-shrink: 0;
}
.chat-header-close:hover { color: white; background: rgba(255,255,255,.1); }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 14px;
  display: flex; flex-direction: column; gap: 10px; scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }
.chat-msg { display: flex; gap: 8px; align-items: flex-end; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-bubble {
  max-width: 82%; padding: 10px 14px; border-radius: 16px;
  font-size: 13.5px; line-height: 1.5; word-break: break-word;
}
.chat-msg.bot .chat-bubble { background: rgba(255,255,255,.08); color: rgba(255,255,255,.92); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: var(--hs-lime); color: var(--hs-navy); font-weight: 600; border-bottom-right-radius: 4px; }
.chat-typing {
  display: flex; gap: 4px; align-items: center;
  padding: 10px 14px; background: rgba(255,255,255,.08);
  border-radius: 16px; border-bottom-left-radius: 4px; width: fit-content;
}
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-6px); opacity: 1; }
}
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.chat-suggestion {
  background: rgba(168,212,0,.12); color: var(--hs-lime);
  border: 1px solid rgba(168,212,0,.3); border-radius: 99px;
  padding: 5px 12px; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: background 0.15s, transform 0.1s; font-family: inherit;
}
.chat-suggestion:hover { background: rgba(168,212,0,.22); transform: scale(1.03); }
.chat-suggestion:active { transform: scale(0.97); }
.chat-input-row {
  display: flex; gap: 8px; padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: var(--hs-navy); flex-shrink: 0;
}
.chat-input-row input {
  flex: 1; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12); border-radius: 10px;
  padding: 9px 14px; color: white; font-size: 13.5px;
  font-family: inherit; outline: none; transition: border-color 0.15s;
}
.chat-input-row input::placeholder { color: rgba(255,255,255,.35); }
.chat-input-row input:focus { border-color: rgba(168,212,0,.5); }
.chat-send-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--hs-lime); color: var(--hs-navy);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.15s, background 0.15s;
}
.chat-send-btn:hover { background: var(--hs-lime-dark); transform: scale(1.05); }
.chat-send-btn:active { transform: scale(0.95); }
.chat-send-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
@media (max-width: 480px) {
  .chat-widget { bottom: 80px; right: 12px; left: 12px; width: auto; max-width: none; }
  .chat-fab { bottom: 20px; right: 16px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   STAFF LOGIN MODAL
══════════════════════════════════════════════════════════════════════════ */
.login-modal {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.login-modal.open { opacity: 1; pointer-events: all; }
.modal-overlay {
  position: fixed; inset: 0; z-index: 1099;
  background: rgba(1,14,41,.85); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.login-modal-inner {
  background: var(--hs-navy-mid);
  border: 1px solid rgba(168,212,0,.2);
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%; max-width: 400px;
  position: relative; z-index: 1;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.23,1,0.32,1);
}
.login-modal.open .login-modal-inner { transform: translateY(0) scale(1); }
.modal-close-btn {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.1); border: none; border-radius: 8px;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); cursor: pointer; transition: background 0.15s, color 0.15s;
}
.modal-close-btn:hover { background: rgba(255,255,255,.2); color: white; }
.login-logo { font-size: 40px; text-align: center; margin-bottom: 12px; }
.login-modal-inner h2 { text-align: center; color: white; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.login-modal-inner p { text-align: center; color: rgba(255,255,255,.55); font-size: 13px; margin-bottom: 24px; }
.login-form { display: flex; flex-direction: column; gap: 14px; }
.login-field { display: flex; flex-direction: column; gap: 6px; }
.login-field label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); }
.login-field input {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px; padding: 11px 14px; color: white;
  font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.15s;
}
.login-field input:focus { border-color: var(--hs-lime); }
.login-field input::placeholder { color: rgba(255,255,255,.3); }
.login-error {
  background: rgba(220,38,38,.15); border: 1px solid rgba(220,38,38,.4);
  border-radius: 8px; padding: 10px 14px;
  color: #fca5a5; font-size: 13px;
}
.btn-login-submit {
  background: var(--hs-lime); color: var(--hs-navy);
  border: none; border-radius: 10px; padding: 13px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; margin-top: 4px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(168,212,0,.3);
}
.btn-login-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(168,212,0,.4); }
.btn-login-submit:active { transform: scale(0.98); }
.btn-login-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.login-note { text-align: center; color: rgba(255,255,255,.4); font-size: 12px; margin-top: 16px; }

/* ══════════════════════════════════════════════════════════════════════════
   ADMIN PANEL EXTRAS
══════════════════════════════════════════════════════════════════════════ */
.admin-header-right { display: flex; align-items: center; gap: 10px; }
.admin-user-badge {
  background: rgba(168,212,0,.15);
  color: var(--hs-lime);
  border: 1px solid rgba(168,212,0,.3);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}
.admin-close-btn {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.15); color: white;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  transition: background 0.15s;
}
.admin-close-btn:hover { background: rgba(255,255,255,.3); }
/* Login btn state when logged in */
.login-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 99px; padding: 7px 14px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8);
  transition: all 0.15s; white-space: nowrap; font-family: inherit;
  cursor: pointer;
}
.login-btn:hover { border-color: var(--hs-lime); color: var(--hs-lime); }
