/* ============================================================
   VAPE CULTURE — COMPONENTS CSS
   All reusable UI components
   ============================================================ */

/* ============================================================
   1. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 40px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--space-10);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  transition: transform var(--dur-slow) var(--ease-smooth),
              height var(--dur-base) var(--ease-smooth),
              opacity var(--dur-base);
}

.announcement-bar.hidden {
  transform: translateY(-100%);
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.announcement-bar .ann-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-bar .ann-close {
  position: absolute;
  right: var(--space-4);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background var(--dur-fast);
  font-size: 0.9rem;
  line-height: 1;
}

.announcement-bar .ann-close:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   2. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 40px; /* below announcement bar */
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.80);
  backdrop-filter: var(--blur-lg);
  -webkit-backdrop-filter: var(--blur-lg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base),
              background var(--dur-base),
              top var(--dur-slow) var(--ease-smooth),
              transform var(--dur-slow) var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(0,0,0,0.95);
  border-bottom-color: var(--border-subtle);
}

.navbar.ann-hidden {
  top: 0;
}

.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 768px) {
  .navbar .nav-inner { padding: 0 var(--space-8); }
}

@media (min-width: 1024px) {
  .navbar .nav-inner { padding: 0 var(--space-16); }
}

/* Logo */
.nav-logo {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.nav-logo .logo-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-2);
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* Nav actions (right side) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: color var(--dur-fast), background var(--dur-fast);
  position: relative;
}

.nav-icon-btn:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.nav-icon-btn .cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--dur-fast), transform var(--dur-fast) var(--ease-spring);
}

.nav-icon-btn .cart-badge.visible {
  opacity: 1;
  transform: scale(1);
}

/* WhatsApp button in nav */
.nav-wa-btn {
  display: none;
  align-items: center;
  gap: var(--space-2);
  height: 38px;
  padding: 0 var(--space-4);
  background: var(--whatsapp);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: filter var(--dur-fast), transform var(--dur-fast);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .nav-wa-btn { display: flex; }
}

.nav-wa-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.nav-wa-btn svg { flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}

@media (min-width: 1024px) {
  .nav-hamburger { display: none; }
}

.nav-hamburger:hover { background: var(--bg-glass); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-smooth),
              opacity var(--dur-base);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(0,0,0,0.95);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-height) + 40px + var(--space-8)) var(--space-6) var(--space-8);
  transform: translateX(-100%);
  transition: transform var(--dur-slow) var(--ease-smooth);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer nav a {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--dur-fast);
  letter-spacing: -0.02em;
}

.mobile-drawer nav a:hover { color: var(--text-primary); }
.mobile-drawer nav a:last-child { border-bottom: none; }

.mobile-drawer .drawer-footer {
  margin-top: auto;
  padding-top: var(--space-8);
}

.mobile-drawer .drawer-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: 100%;
  height: 56px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: filter var(--dur-fast);
}

.mobile-drawer .drawer-wa-btn:hover { filter: brightness(1.1); }

/* ============================================================
   3. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  max-width: 280px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}

.footer-social-link:hover {
  color: var(--text-primary);
  border-color: var(--border-default);
  background: var(--bg-glass-hover);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
}

.footer-col ul li {
  margin-bottom: var(--space-3);
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
}

.footer-col ul li a:hover { color: var(--text-primary); }

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.footer-age-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-tertiary);
}

/* ============================================================
   4. AGE GATE
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  animation: fadeIn 0.4s ease;
}

.age-gate.exiting {
  animation: fadeIn 0.5s ease reverse forwards;
}

.age-gate-card {
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: scaleIn 0.5s var(--ease-spring) both;
}

.age-gate-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.age-gate-logo .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.age-gate h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
}

.age-gate p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (min-width: 480px) {
  .age-gate-actions { flex-direction: row; }
}

.age-gate-actions .btn-yes {
  flex: 1;
  height: 56px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast), transform var(--dur-fast);
}

.age-gate-actions .btn-yes:hover {
  background: var(--accent-light);
  transform: scale(1.02);
}

.age-gate-actions .btn-no {
  flex: 1;
  height: 56px;
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}

.age-gate-actions .btn-no:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.age-gate-disclaimer {
  margin-top: var(--space-6);
  font-size: 0.75rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* ============================================================
   5. FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  height: 56px;
  padding: 0 var(--space-4) 0 var(--space-3);
  background: var(--whatsapp);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-whatsapp);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: filter var(--dur-fast), transform var(--dur-fast), opacity var(--dur-slow);
}

.wa-float.visible {
  opacity: 1;
  transform: translateY(0);
}

.wa-float:hover {
  filter: brightness(1.1);
  transform: scale(1.04);
}

/* Pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  animation: pulseRing 2.5s ease-out infinite;
  z-index: -1;
}

/* Mobile: icon only */
@media (max-width: 639px) {
  .wa-float {
    width: 56px;
    padding: 0;
    justify-content: center;
  }
  .wa-float .wa-float-label { display: none; }
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--dur-fast) var(--ease-smooth);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  text-decoration: none;
  flex-shrink: 0;
}

.btn:active { transform: scale(0.97); }

/* Sizes */
.btn-sm {
  height: 36px;
  padding: 0 var(--space-4);
  font-size: 0.8125rem;
}

.btn-md {
  height: 44px;
  padding: 0 var(--space-5);
  font-size: 0.9rem;
}

.btn-lg {
  height: 52px;
  padding: 0 var(--space-6);
  font-size: 0.9375rem;
}

.btn-xl {
  height: 60px;
  padding: 0 var(--space-8);
  font-size: 1rem;
}

.btn-full { width: 100%; }

/* Variants */
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-light); transform: scale(1.02); }

.btn-white {
  background: #fff;
  color: #000;
}
.btn-white:hover { background: rgba(255,255,255,0.9); transform: scale(1.02); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
}
.btn-outline:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: var(--bg-glass);
}

.btn-ghost {
  background: var(--bg-glass);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}
.btn-ghost:hover {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
  border-color: var(--border-default);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-whatsapp);
}
.btn-whatsapp:hover { filter: brightness(1.08); transform: scale(1.02); }

.btn-danger {
  background: var(--error);
  color: #fff;
}
.btn-danger:hover { filter: brightness(1.1); }

/* ============================================================
   7. PRODUCT CARD
   ============================================================ */
.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-smooth),
              border-color var(--dur-base),
              box-shadow var(--dur-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-default);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card-gradient {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-2);
  position: relative;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.product-card:hover .product-card-gradient {
  transform: scale(1.04);
}

.product-card-gradient .puff-label {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.04em;
  text-align: center;
  line-height: 1;
}

.product-card-gradient .brand-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.20);
}

.product-card-wishlist {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--dur-fast), transform var(--dur-fast) var(--ease-spring),
              background var(--dur-fast);
  color: var(--text-secondary);
  z-index: 1;
}

.product-card:hover .product-card-wishlist {
  opacity: 1;
  transform: scale(1);
}

.product-card-wishlist.wishlisted {
  opacity: 1 !important;
  transform: scale(1) !important;
  color: #ff4d6d;
  background: rgba(255,77,109,0.15);
  border-color: rgba(255,77,109,0.3);
}

.product-card-wishlist:hover {
  background: rgba(255,77,109,0.2);
}

.product-card-wishlist.heartbeat {
  animation: heartBeat 0.5s ease;
}

.product-card-body {
  padding: var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-brand {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-1);
}

.product-card-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-card-flavors {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.product-card-price {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
}

.product-card-puffs {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 var(--space-2);
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.02em;
}

.product-card-btn {
  width: 100%;
  height: 42px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  transition: filter var(--dur-fast), transform var(--dur-fast);
  margin-top: auto;
  cursor: pointer;
}

.product-card-btn:hover { filter: brightness(1.1); }
.product-card-btn:active { transform: scale(0.98); }

/* Stock badge */
.stock-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  height: 22px;
  padding: 0 var(--space-2);
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stock-badge.in-stock {
  background: rgba(0,212,170,0.12);
  color: var(--success);
  border: 1px solid rgba(0,212,170,0.25);
}

.stock-badge.low-stock {
  background: rgba(245,166,35,0.12);
  color: var(--warning);
  border: 1px solid rgba(245,166,35,0.25);
}

.stock-badge.out-of-stock {
  background: rgba(255,59,48,0.12);
  color: var(--error);
  border: 1px solid rgba(255,59,48,0.25);
}

/* ============================================================
   8. SECTION HEADER
   ============================================================ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.section-header p {
  margin-top: var(--space-2);
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 400px;
}

.section-header .view-all {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-accent);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  white-space: nowrap;
  transition: gap var(--dur-fast);
}

.section-header .view-all:hover { gap: var(--space-2); }

/* ============================================================
   9. BRAND CARD
   ============================================================ */
.brand-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  cursor: pointer;
  transition: background var(--dur-base), border-color var(--dur-base),
              transform var(--dur-base) var(--ease-smooth), box-shadow var(--dur-base);
  backdrop-filter: var(--blur-sm);
  text-decoration: none;
}

.brand-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-default);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.brand-card .brand-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.brand-card .brand-count {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.brand-card .brand-accent {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: var(--space-2);
}

/* ============================================================
   10. FILTER COMPONENTS
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 var(--space-3);
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--dur-fast);
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
}

.filter-chip:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-default);
  color: var(--text-primary);
}

.filter-chip.active {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.filter-chip .chip-remove {
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  line-height: 1;
}

/* Filter sidebar (desktop) */
.filter-sidebar {
  width: 240px;
  flex-shrink: 0;
}

.filter-group {
  margin-bottom: var(--space-6);
}

.filter-group-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-3);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.filter-option:hover { color: var(--text-primary); }

.filter-option.active { color: var(--text-primary); }

.filter-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--dur-fast);
}

.filter-option.active .filter-radio {
  border-color: var(--accent);
  background: var(--accent);
}

.filter-option.active .filter-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.filter-option-count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.filter-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: var(--space-5) 0;
}

/* Sort dropdown */
.sort-select {
  appearance: none;
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  height: 38px;
  padding: 0 var(--space-8) 0 var(--space-3);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--dur-fast);
}

.sort-select:hover { border-color: var(--border-strong); }
.sort-select:focus { border-color: var(--accent); }
.sort-select option { background: var(--bg-raised); color: var(--text-primary); }

/* Mobile filter bottom sheet */
.filter-sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-overlay);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base);
}

.filter-sheet-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.filter-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 201;
  background: var(--bg-raised);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-top: 1px solid var(--border-default);
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.filter-sheet.open {
  transform: translateY(0);
}

.filter-sheet-handle {
  width: 36px;
  height: 4px;
  background: var(--border-default);
  border-radius: 2px;
  margin: var(--space-3) auto var(--space-4);
}

.filter-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-5) var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}

.filter-sheet-header h3 {
  font-size: 1rem;
  font-weight: 700;
}

.filter-sheet-content {
  padding: var(--space-5);
}

.filter-sheet-footer {
  position: sticky;
  bottom: 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-4) var(--space-5);
  display: flex;
  gap: var(--space-3);
}

/* Flavor tags in filter */
.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* ============================================================
   11. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-24) var(--space-5);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,102,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(0,68,204,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-base) 0%, #030612 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  height: 30px;
  padding: 0 var(--space-4);
  background: rgba(0,102,255,0.12);
  border: 1px solid rgba(0,102,255,0.25);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: var(--space-6);
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-size: clamp(2.75rem, 10vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 .accent-word {
  background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-12);
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.5s ease both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.hero-stat .stat-label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.hero-stat-sep {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-tertiary);
  animation: bounce 2s ease-in-out infinite, fadeIn 1s 1.5s ease both;
  opacity: 0;
  z-index: 1;
}

/* ============================================================
   12. WHATSAPP CTA BANNER
   ============================================================ */
.wa-banner {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--whatsapp);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wa-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(37,211,102,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.wa-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
}

.wa-banner p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   13. TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-10) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,102,255,0.1);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.trust-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-item p {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: -var(--space-1);
}

/* ============================================================
   14. CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg-overlay);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 301;
  width: 100%;
  max-width: 420px;
  background: var(--bg-raised);
  border-left: 1px solid var(--border-default);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-5) var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer-header h3 {
  font-size: 1rem;
  font-weight: 700;
}

.cart-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.cart-drawer-close:hover {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
  border-color: var(--border-default);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) var(--space-5);
}

.cart-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-gradient {
  width: 100%;
  height: 100%;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-brand {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.cart-item-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast);
}

.qty-btn:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: var(--bg-glass-hover);
}

.qty-value {
  font-size: 0.875rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cart-item-remove {
  color: var(--text-tertiary);
  cursor: pointer;
  padding: var(--space-1);
  border-radius: var(--radius-xs);
  transition: color var(--dur-fast);
  display: flex;
  align-items: center;
  line-height: 1;
}

.cart-item-remove:hover { color: var(--error); }

.cart-drawer-footer {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--border-subtle);
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.cart-summary-row.total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-subtle);
  margin-bottom: var(--space-4);
}

.cart-free-delivery {
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.15);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  margin-bottom: var(--space-4);
}

.cart-free-delivery p {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.delivery-progress {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.delivery-progress-fill {
  height: 100%;
  background: var(--success);
  border-radius: 2px;
  transition: width 0.5s var(--ease-smooth);
}

/* Empty cart */
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-10);
  gap: var(--space-4);
}

.cart-empty svg { color: var(--text-tertiary); }
.cart-empty h4 { font-size: 1rem; font-weight: 700; }
.cart-empty p { font-size: 0.875rem; color: var(--text-secondary); }

/* ============================================================
   15. TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  min-width: 240px;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s var(--ease-spring) both;
  pointer-events: all;
}

.toast.removing { animation: slideUp 0.3s ease reverse both; }

.toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-icon.success { background: rgba(0,212,170,0.15); color: var(--success); }
.toast-icon.error   { background: rgba(255,59,48,0.15);  color: var(--error);   }
.toast-icon.info    { background: rgba(0,102,255,0.15);   color: var(--accent);  }

.toast-text { font-size: 0.875rem; font-weight: 500; flex: 1; }

/* ============================================================
   16. FLAVOUR SELECTOR (PDP)
   ============================================================ */
.flavor-selector {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.flavor-selector-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.flavor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.flavor-pill {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 var(--space-4);
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--dur-fast);
  user-select: none;
}

.flavor-pill:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.flavor-pill.selected {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.flavor-pill.out-of-stock {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ============================================================
   17. SPEC TABLE (PDP)
   ============================================================ */
.spec-table {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.spec-row {
  display: flex;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}

.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: var(--bg-raised); }

.spec-label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  min-width: 140px;
  flex-shrink: 0;
}

.spec-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================================
   18. AUTHENTICITY BADGE
   ============================================================ */
.auth-badge {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: rgba(0,212,170,0.06);
  border: 1px solid rgba(0,212,170,0.18);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.auth-badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(0,212,170,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--success);
  font-size: 1rem;
}

.auth-badge h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 2px;
}

.auth-badge p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   19. STOCK INDICATOR (PDP)
   ============================================================ */
.stock-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 500;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stock-dot.in-stock  { background: var(--success); box-shadow: 0 0 8px rgba(0,212,170,0.4); }
.stock-dot.low-stock { background: var(--warning); box-shadow: 0 0 8px rgba(245,166,35,0.4); }
.stock-dot.out-stock { background: var(--error);   box-shadow: 0 0 8px rgba(255,59,48,0.4); }

/* ============================================================
   20. DELIVERY ZONE CARDS
   ============================================================ */
.delivery-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: var(--blur-sm);
  transition: transform var(--dur-base), box-shadow var(--dur-base), border-color var(--dur-base);
}

.delivery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-default);
}

.delivery-card .zone-icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
}

.delivery-card .zone-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-2);
}

.delivery-card .zone-time {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
}

.delivery-card .zone-detail {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

.delivery-card .zone-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.delivery-card .zone-free {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  margin-top: 2px;
}

/* ============================================================
   21. FAQ ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--dur-fast);
}

.faq-item:first-child { border-top: 1px solid var(--border-subtle); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--dur-fast);
  user-select: none;
}

.faq-question:hover { color: var(--text-accent); }

.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform var(--dur-base) var(--ease-smooth), color var(--dur-fast);
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-smooth);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: var(--space-5);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   22. CONTACT CARDS
   ============================================================ */
.contact-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  backdrop-filter: var(--blur-md);
  transition: transform var(--dur-base), box-shadow var(--dur-base), border-color var(--dur-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-default);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,102,255,0.10);
  border: 1px solid rgba(0,102,255,0.20);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card a {
  color: var(--accent-light);
  transition: color var(--dur-fast);
  font-weight: 500;
}

.contact-card a:hover { color: #fff; }

/* ============================================================
   23. WISHLIST ITEM
   ============================================================ */
.wishlist-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.wishlist-item:hover {
  border-color: var(--border-default);
  box-shadow: var(--shadow-sm);
}

.wishlist-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.wishlist-item-info {
  flex: 1;
  min-width: 0;
}

.wishlist-item-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: flex-end;
  flex-shrink: 0;
}

/* ============================================================
   24. PROCESS STEPS (Delivery / Checkout)
   ============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 768px) {
  .steps { flex-direction: row; align-items: flex-start; }
}

.step {
  display: flex;
  gap: var(--space-4);
  flex: 1;
  position: relative;
}

@media (min-width: 768px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3);
  }
}

.step-num {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: rgba(0,102,255,0.08);
  color: var(--accent-light);
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
}

@media (max-width: 767px) {
  .step-connector {
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: var(--border-subtle);
    display: block;
  }
}

@media (min-width: 768px) {
  .step-connector {
    top: 19px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--border-subtle);
    display: block;
  }
}

.step:last-child .step-connector { display: none; }

.step-content { padding-bottom: var(--space-6); }
@media (min-width: 768px) { .step-content { padding-bottom: 0; } }

.step-content h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.step-content p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   25. CHECKOUT FORM
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  height: 50px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9375rem;
  padding: 0 var(--space-4);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  width: 100%;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder { color: var(--text-tertiary); }

.form-textarea {
  min-height: 100px;
  padding: var(--space-3) var(--space-4);
  resize: vertical;
}

.form-select {
  height: 50px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9375rem;
  padding: 0 var(--space-8) 0 var(--space-4);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  width: 100%;
  transition: border-color var(--dur-fast);
}

.form-select:focus { border-color: var(--accent); }
.form-select option { background: var(--bg-raised); }

/* ============================================================
   26. ORDER SUMMARY PANEL
   ============================================================ */
.order-summary {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.order-summary h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-5);
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.order-item:last-child { border-bottom: none; }

.order-item-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.order-item-variant {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.order-item-price {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.order-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: var(--space-4) 0;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.0625rem;
  font-weight: 800;
}

.how-it-works {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-subtle);
}

.how-it-works h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
}

.how-step {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.how-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,102,255,0.4);
  color: var(--accent-light);
  font-size: 0.625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   27. ACCOUNT TABS
   ============================================================ */
.account-tabs {
  display: flex;
  gap: var(--space-1);
  overflow-x: auto;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-8);
  padding-bottom: 0;
  scrollbar-width: none;
}

.account-tabs::-webkit-scrollbar { display: none; }

.account-tab {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.account-tab:hover { color: var(--text-primary); }

.account-tab.active {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
}

/* ============================================================
   28. EMPTY STATES
   ============================================================ */
.empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.empty-state-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.empty-state p {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  max-width: 320px;
  line-height: 1.6;
}

/* ============================================================
   29. MOBILE BOTTOM NAV
   ============================================================ */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: 64px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: var(--blur-lg);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 var(--space-2);
}

@media (min-width: 1024px) {
  .mobile-bottom-nav { display: none; }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  color: var(--text-tertiary);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--dur-fast);
  padding: var(--space-1) 0;
  text-decoration: none;
}

.bottom-nav-item svg { transition: transform var(--dur-fast); }
.bottom-nav-item:hover { color: var(--text-secondary); }
.bottom-nav-item:hover svg { transform: translateY(-1px); }

.bottom-nav-item.active {
  color: var(--accent);
}

/* Add bottom padding to body on mobile */
@media (max-width: 1023px) {
  body { padding-bottom: 64px; }
}

/* ============================================================
   30. SEARCH MODAL
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0,0,0,0.92);
  backdrop-filter: var(--blur-xl);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base);
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 640px;
  margin: calc(var(--nav-height) + 40px + var(--space-4)) auto 0;
  width: 100%;
}

.search-input-wrap {
  flex: 1;
  position: relative;
}

.search-input-wrap svg {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 56px;
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  padding: 0 var(--space-4) 0 50px;
}

.search-input:focus { border-color: var(--accent); }
.search-input::placeholder { color: var(--text-tertiary); }

.search-results {
  max-width: 640px;
  margin: var(--space-4) auto 0;
  width: 100%;
  flex: 1;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--dur-fast);
  text-decoration: none;
}

.search-result-item:hover { background: var(--bg-glass-hover); }

.search-result-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.search-result-name {
  font-size: 0.9375rem;
  font-weight: 600;
}

.search-result-price {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ============================================================
   31. PRODUCT DETAIL LAYOUT
   ============================================================ */
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding-top: calc(var(--nav-height) + 40px + var(--space-8));
  padding-bottom: var(--space-16);
  /* extra bottom space on mobile for sticky bar */
  padding-bottom: calc(var(--space-16) + 80px);
}

@media (min-width: 1024px) {
  .pdp-layout {
    grid-template-columns: 55fr 45fr;
    gap: var(--space-16);
    align-items: start;
    padding-bottom: var(--space-16);
  }
}

.pdp-gallery {
  position: sticky;
  top: calc(var(--nav-height) + 40px + var(--space-6));
}

.pdp-main-image {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-4);
  position: relative;
}

.pdp-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}

.pdp-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--dur-fast);
}

.pdp-thumb.active { border-color: var(--accent); }
.pdp-thumb:hover { border-color: var(--border-strong); }

.pdp-info { display: flex; flex-direction: column; gap: var(--space-5); }

.pdp-brand {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.pdp-name {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.pdp-price-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.pdp-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.pdp-puffs {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 var(--space-3);
  background: rgba(0,102,255,0.10);
  border: 1px solid rgba(0,102,255,0.20);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.03em;
}

.pdp-divider {
  height: 1px;
  background: var(--border-subtle);
}

/* Sticky PDP bottom bar (mobile) */
.pdp-sticky-bar {
  position: fixed;
  bottom: 64px; /* above mobile bottom nav */
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(10,10,10,0.95);
  backdrop-filter: var(--blur-lg);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-3) var(--space-4);
  display: flex;
  gap: var(--space-2);
}

@media (min-width: 1024px) {
  .pdp-sticky-bar { display: none; }
}

/* ============================================================
   32. HERO FEATURE CARD (Go Further section)
   ============================================================ */
.feature-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: transform var(--dur-base) var(--ease-smooth), box-shadow var(--dur-base);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-card-bg {
  width: 100%;
  height: 100%;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.feature-card:hover .feature-card-bg {
  transform: scale(1.04);
}

.feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}

.feature-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
}

.feature-card-puffs {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 var(--space-3);
  background: var(--accent);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.feature-card-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.feature-card-price {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ============================================================
   33. HORIZONTAL SCROLL WRAPPER
   ============================================================ */
.h-scroll {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
}

.h-scroll::-webkit-scrollbar { display: none; }

.h-scroll > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ============================================================
   34. PRODUCT GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .products-grid { gap: var(--space-4); }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}

@media (min-width: 1280px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.products-grid-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

/* ============================================================
   35. SECTION TYPOGRAPHY HELPERS
   ============================================================ */
.section-header-wrap {
  margin-bottom: var(--space-8);
}

.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-2);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
}

.section-cta {
  margin-top: var(--space-10);
  text-align: center;
}

/* ============================================================
   36. HERO — EXTENDED CLASSES
   ============================================================ */
.hero-gradient {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,102,255,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(0,68,204,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-base) 0%, #030612 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade 4s ease-in-out infinite;
}

@keyframes particleFade {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  50%       { opacity: 0.5; transform: translateY(-10px) scale(1.5); }
}

.hero-particles span:nth-child(1)  { top: 20%; left: 15%; animation-delay: 0s; }
.hero-particles span:nth-child(2)  { top: 40%; left: 80%; animation-delay: 0.8s; }
.hero-particles span:nth-child(3)  { top: 70%; left: 25%; animation-delay: 1.6s; }
.hero-particles span:nth-child(4)  { top: 30%; left: 60%; animation-delay: 2.4s; }
.hero-particles span:nth-child(5)  { top: 80%; left: 70%; animation-delay: 3.2s; }
.hero-particles span:nth-child(6)  { top: 15%; left: 45%; animation-delay: 0.4s; }
.hero-particles span:nth-child(7)  { top: 55%; left: 90%; animation-delay: 1.2s; }
.hero-particles span:nth-child(8)  { top: 65%; left: 10%; animation-delay: 2.0s; }
.hero-particles span:nth-child(9)  { top: 45%; left: 35%; animation-delay: 2.8s; }
.hero-particles span:nth-child(10) { top: 85%; left: 55%; animation-delay: 3.6s; }

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,212,170,0.6);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  animation: fadeUp 0.7s 0.1s var(--ease-out) both;
}

.hero-title-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 40%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s var(--ease-out) both;
}

.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 2px;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ============================================================
   37. BRAND ROW (Homepage)
   ============================================================ */
.brand-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .brand-row { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .brand-row { grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
}

.brand-row .brand-card {
  min-height: 130px;
  justify-content: flex-end;
  padding: var(--space-5);
}

.brand-card-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.brand-card-name {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
}

.brand-card-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  line-height: 1.4;
}

.brand-card-arrow {
  margin-top: var(--space-3);
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast), transform var(--dur-fast);
}

.brand-card:hover .brand-card-arrow {
  color: rgba(255,255,255,0.9);
  transform: translateX(4px);
}

/* ============================================================
   38. TRUST STRIP — INLINE VARIANT (Homepage)
   ============================================================ */
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding: var(--space-2) 0;
}

.trust-strip .trust-item {
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: var(--space-2);
  height: auto;
  width: auto;
}

.trust-strip .trust-item svg { color: var(--accent); flex-shrink: 0; }

.trust-strip .trust-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ============================================================
   39. GO FURTHER SECTION
   ============================================================ */
.go-further-inner {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .go-further-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.go-further-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.go-further-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-1) 0 var(--space-2);
}

.go-further-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.go-further-feature svg { color: var(--success); flex-shrink: 0; }

/* ============================================================
   40. WA BANNER — INNER LAYOUT
   ============================================================ */
.wa-banner-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  text-align: left;
}

@media (min-width: 768px) {
  .wa-banner-inner { flex-wrap: nowrap; }
}

.wa-banner-icon {
  width: 60px;
  height: 60px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whatsapp);
  flex-shrink: 0;
}

.wa-banner-text { flex: 1; min-width: 200px; }

.wa-banner-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
  letter-spacing: -0.01em;
}

.wa-banner-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   41. PAGE HERO (Shop / inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 40px + var(--space-10)) 0 var(--space-8);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.page-hero-content { max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  flex-wrap: wrap;
}

.breadcrumb a { transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--text-secondary); }

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-3);
}

.page-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
}

/* ============================================================
   42. SHOP LAYOUT
   ============================================================ */
.shop-layout { padding: var(--space-8) 0 var(--space-16); }

.shop-inner {
  display: flex;
  gap: var(--space-10);
  align-items: flex-start;
}

/* Sidebar hidden on mobile */
.shop-inner > .filter-sidebar { display: none; }

@media (min-width: 1024px) {
  .shop-inner > .filter-sidebar { display: block; }
}

.shop-main { flex: 1; min-width: 0; }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.shop-toolbar-left,
.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Hide filter button on desktop */
@media (min-width: 1024px) {
  #open-filter-sheet { display: none; }
}

.shop-count {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.shop-sort-label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.shop-sort-select {
  appearance: none;
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  height: 38px;
  padding: 0 var(--space-8) 0 var(--space-3);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--dur-fast);
}

.shop-sort-select:focus {
  outline: none;
  border-color: var(--accent);
}

.shop-sort-select option { background: var(--bg-raised); color: var(--text-primary); }

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  min-height: 0;
}

/* ============================================================
   43. FILTER SIDEBAR EXTRAS
   ============================================================ */
.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}

.filter-sidebar-header h3 {
  font-size: 0.9375rem;
  font-weight: 700;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-option-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.filter-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* ============================================================
   44. FILTER SHEET EXTRAS
   ============================================================ */
.filter-sheet {
  display: flex;
  flex-direction: column;
}

.filter-sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-5);
  -webkit-overflow-scrolling: touch;
}

.filter-sheet-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.filter-sheet-close:hover {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
  border-color: var(--border-default);
}

/* ============================================================
   45. PRODUCT DETAIL PAGE — EXTRA CLASSES
   ============================================================ */
.pdp-breadcrumb-bar {
  padding: calc(var(--nav-height) + 40px + var(--space-4)) 0 0;
  background: transparent;
}

.pdp-breadcrumb-bar .breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.pdp-breadcrumb-bar .breadcrumb a:hover { color: var(--text-secondary); }

.pdp-section { padding-bottom: var(--space-8); }

.pdp-skeleton {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8) 0;
}

.skeleton-block {
  display: block;
  background: linear-gradient(
    90deg,
    var(--bg-raised) 0%,
    rgba(255,255,255,0.06) 50%,
    var(--bg-raised) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.8s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

.section-related {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.pdp-sticky-wishlist {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 48px;
  background: var(--bg-glass);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-fast);
}

.pdp-sticky-wishlist:hover {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.pdp-sticky-order { flex: 2; }

/* ============================================================
   46. PUFF / BRAND LABELS (product card image)
   Used as bare classes in dynamically-rendered cards
   ============================================================ */
.puff-label {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.04em;
  text-align: center;
  line-height: 1;
}

.brand-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.20);
}

/* ============================================================
   47. BRAND PAGE HERO
   ============================================================ */
#brand-hero {
  padding-top: calc(var(--nav-height) + 40px);
}

.brand-hero-skeleton {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   48. SECTION HEADER (extended, used in JS-rendered sections)
   ============================================================ */
.section-header {
  margin-bottom: var(--space-8);
}

/* ============================================================
   49. MOBILE RESPONSIVENESS PATCHES
   ============================================================ */

/* Stack hero stats on very small screens */
@media (max-width: 480px) {
  .hero-stats {
    gap: var(--space-4);
  }
  .hero-stat-divider { display: none; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Product card text wrapping */
@media (max-width: 360px) {
  .product-card-name { font-size: 0.875rem; }
  .product-card-price { font-size: 0.9375rem; }
}

/* Cart drawer full-width on mobile */
@media (max-width: 480px) {
  .cart-drawer { max-width: 100%; }
}

/* Wishlist item stack on mobile */
@media (max-width: 560px) {
  .wishlist-item {
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  .wishlist-item-actions {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
}

/* Toast on mobile */
@media (max-width: 639px) {
  .toast-container {
    bottom: 80px;
    right: 16px;
    left: 16px;
  }
  .toast {
    min-width: unset;
    max-width: 100%;
  }
}

/* ============================================================
   50. PERFORMANCE: WILL-CHANGE HINTS
   ============================================================ */
.cart-drawer,
.mobile-drawer,
.filter-sheet,
.search-overlay { will-change: transform; }

.wa-float { will-change: opacity, transform; }

/* ============================================================
   51. PRINT STYLES
   ============================================================ */
@media print {
  .navbar,
  .mobile-bottom-nav,
  .wa-float,
  .cart-overlay,
  .cart-drawer,
  .age-gate,
  .announcement-bar,
  .mobile-drawer { display: none !important; }
  body { padding: 0; background: white; color: black; }
  a { color: black; }
}

/* ============================================================
   52. ENHANCED PRODUCT CARD (Moran Vapes-inspired)
   ============================================================ */

/* Puff count pill badge — top-left of card image */
.card-puff-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  height: 26px;
  padding: 0 var(--space-3);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 3;
  pointer-events: none;
}

/* Sale percentage badge — positioned below puff badge */
.card-sale-badge {
  position: absolute;
  top: calc(var(--space-3) + 30px);
  left: var(--space-3);
  background: var(--error);
  border-radius: var(--radius-full);
  height: 22px;
  padding: 0 var(--space-2);
  font-size: 0.625rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}

/* When there is NO puff badge, sale badge goes at top */
.card-sale-badge.top-pos {
  top: var(--space-3);
}

/* New badge */
.card-new-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--accent);
  border-radius: var(--radius-full);
  height: 22px;
  padding: 0 var(--space-2);
  font-size: 0.625rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}

/* Quick-action button row — slides up from image bottom on card hover */
.card-quick-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-3) var(--space-3);
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0) 100%);
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--dur-base) var(--ease-smooth),
              opacity var(--dur-fast);
  z-index: 3;
}

.product-card:hover .card-quick-actions {
  transform: translateY(0);
  opacity: 1;
}

.card-qa-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background var(--dur-fast), border-color var(--dur-fast),
              transform var(--dur-fast) var(--ease-spring);
  text-decoration: none;
  flex-shrink: 0;
  font-family: var(--font);
}

.card-qa-btn:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.42);
  transform: scale(1.12);
}

.card-qa-btn:active { transform: scale(0.96); }

.card-qa-btn.in-wishlist {
  color: #ff4d6d;
  background: rgba(255,77,109,0.2);
  border-color: rgba(255,77,109,0.38);
}

.card-qa-btn.wa-btn {
  background: rgba(37,211,102,0.22);
  border-color: rgba(37,211,102,0.38);
}

.card-qa-btn.wa-btn:hover {
  background: rgba(37,211,102,0.42);
  border-color: rgba(37,211,102,0.60);
}

/* Price wrapper for sale/original display in card body */
.product-card-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.product-card-original-price {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-decoration: line-through;
  line-height: 1.2;
}

.product-card-price.on-sale { color: #FF453A; }

/* ============================================================
   53. QUICK BROWSE — Moran Vapes-inspired category tabs
   ============================================================ */
.quick-browse {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-4) 0;
}

.quick-browse-scroll {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 0 4px;
}

.quick-browse-scroll::-webkit-scrollbar { display: none; }

.quick-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  height: 40px;
  padding: 0 var(--space-4);
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--dur-fast);
  flex-shrink: 0;
  text-decoration: none;
}

.quick-tab:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-default);
  color: var(--text-primary);
}

.quick-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.quick-tab .tab-count {
  font-size: 0.6875rem;
  font-weight: 700;
  background: rgba(255,255,255,0.16);
  border-radius: var(--radius-full);
  min-width: 20px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quick-tab:not(.active) .tab-count {
  background: var(--bg-glass);
  color: var(--text-tertiary);
}

/* ============================================================
   54. FEATURED SECTION — brand filter mini-tabs
   ============================================================ */
.featured-tabs-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.featured-tabs {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}

.featured-tabs::-webkit-scrollbar { display: none; }

.featured-tab {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 var(--space-4);
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--dur-fast);
  flex-shrink: 0;
  font-family: var(--font);
}

.featured-tab:hover {
  border-color: var(--border-default);
  color: var(--text-primary);
  background: var(--bg-glass-hover);
}

.featured-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ============================================================
   55. AGE GATE — REDESIGN (White minimal modal)
   ============================================================ */
.age-gate {
  background: rgba(0, 0, 0, 0.88);
}
.age-gate-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.age-gate h2 {
  color: #111111;
  font-size: 1.375rem;
}
.age-gate p {
  color: #555555;
}
.age-gate-actions .btn-yes {
  background: #111111;
  color: #ffffff;
  border: 2px solid #111111;
}
.age-gate-actions .btn-yes:hover {
  background: #333333;
  border-color: #333333;
  transform: none;
}
.age-gate-actions .btn-no {
  background: #ffffff;
  color: #333333;
  border: 2px solid #e0e0e0;
}
.age-gate-actions .btn-no:hover {
  background: #f5f5f5;
  color: #111111;
  border-color: #bbbbbb;
}

/* ============================================================
   56. HERO — VIDEO BACKGROUND
   ============================================================ */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-gradient-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 40%, #1a1a2e 70%, #16213e 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.ready {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* ============================================================
   57. PRODUCT CARD — IMAGE SUPPORT
   ============================================================ */
.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  padding: var(--space-4);
}
