/* ============================================================
   VILLAGEBITES — DESIGN SYSTEM
   Palette: Leaf Green + Terracotta + Cream
   Fonts: Playfair Display (display) + Plus Jakarta Sans (body)
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Colors */
  --green-dark:    #2D5A3D;
  --green:         #4A7C59;
  --green-mid:     #6A9E78;
  --green-light:   #A8C9B0;
  --green-pale:    #EAF4EC;

  --terra-dark:    #8B3A1E;
  --terra:         #C4622D;
  --terra-mid:     #D4896A;
  --terra-light:   #EDB99A;
  --terra-pale:    #FDF0E8;

  --gold:          #D4A017;
  --gold-pale:     #FDF5E6;

  --cream:         #FAF6F0;
  --cream-dark:    #F2EAE0;
  --cream-border:  #E8DDD0;

  --brown-dark:    #3D2B1F;
  --brown:         #6B4C3B;
  --brown-mid:     #9C7B6A;

  --text-dark:     #1E1410;
  --text-body:     #4A3728;
  --text-muted:    #8B7355;
  --text-light:    #B8A090;

  --white:         #FFFFFF;
  --off-white:     #FEFCF9;

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(61,43,31,0.08), 0 1px 2px rgba(61,43,31,0.06);
  --shadow-md:  0 4px 16px rgba(61,43,31,0.10), 0 2px 6px rgba(61,43,31,0.06);
  --shadow-lg:  0 12px 40px rgba(61,43,31,0.14), 0 4px 12px rgba(61,43,31,0.08);
  --shadow-xl:  0 24px 64px rgba(61,43,31,0.18);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   150ms;
  --dur-mid:    280ms;
  --dur-slow:   450ms;

  /* Layout */
  --container:  1280px;
  --nav-h:      72px;
  --announce-h: 40px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: var(--radius-full); }

/* ---------- SELECTION ---------- */
::selection { background: var(--green-light); color: var(--green-dark); }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ---------- UTILITY ---------- */
.hide-mobile { display: inline; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--green-dark);
  color: var(--cream);
  text-align: center;
  padding: 0 var(--space-md);
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 100;
}

.announcement-bar strong { color: var(--terra-light); }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-border);
  transition: box-shadow var(--dur-mid) var(--ease),
              background var(--dur-mid) var(--ease);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(250, 246, 240, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--space-xl);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
  transition: opacity var(--dur-fast);
}
.logo:hover { opacity: 0.85; }

.logo-icon svg { width: 40px; height: 40px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--terra);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 24px);
  height: 2px;
  background: var(--green);
  border-radius: var(--radius-full);
  transition: transform var(--dur-mid) var(--ease-spring);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.chevron {
  width: 10px;
  height: 10px;
  transition: transform var(--dur-fast);
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid) var(--ease),
              transform var(--dur-mid) var(--ease),
              visibility var(--dur-mid);
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown li a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast), color var(--dur-fast);
}

.dropdown li a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

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

.icon-btn svg { width: 20px; height: 20px; }

.icon-btn:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  transform: translateY(-1px);
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--terra);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease-spring);
}

.cart-badge.bump { transform: scale(1.4); }

/* Search Bar */
.search-wrapper { position: relative; }

.search-bar {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  width: 280px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-mid) var(--ease),
              transform var(--dur-mid) var(--ease),
              visibility var(--dur-mid);
}

.search-bar.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-input {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--text-dark);
  background: transparent;
}

.search-submit {
  padding: var(--space-sm) var(--space-md);
  color: var(--green);
  transition: color var(--dur-fast);
}
.search-submit svg { width: 18px; height: 18px; }
.search-submit:hover { color: var(--green-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}
.hamburger:hover { background: var(--green-pale); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-body);
  border-radius: var(--radius-full);
  transition: transform var(--dur-mid) var(--ease), opacity var(--dur-mid);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--dur-mid) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn svg { width: 18px; height: 18px; transition: transform var(--dur-mid) var(--ease-spring); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(74,124,89,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 6px 24px rgba(74,124,89,0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74,124,89,0.3);
}

.btn-promo {
  background: var(--white);
  color: var(--terra-dark);
  border-color: var(--white);
  font-weight: 700;
}
.btn-promo:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  border: 1px solid var(--green-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.section-title em {
  font-style: italic;
  color: var(--terra);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s var(--ease);
  transform: scale(1.05);
  animation: none;
}

.hero-img.active {
  opacity: 1;
  animation: heroZoom 8s var(--ease) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 20, 10, 0.72) 0%,
    rgba(30, 20, 10, 0.45) 50%,
    rgba(74, 124, 89, 0.25) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: var(--space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xl);
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}

.hero-title em {
  font-style: italic;
  color: var(--terra-light);
}

.hero-subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  animation: fadeUp 0.8s var(--ease) 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
  animation: fadeUp 0.8s var(--ease) 0.8s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  animation: fadeUp 0.8s var(--ease) 1s both;
}

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

.stat strong {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.4);
  transition: all var(--dur-mid) var(--ease);
  border: none;
}

.dot.active {
  background: var(--white);
  width: 28px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  right: var(--space-2xl);
  bottom: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  z-index: 3;
  animation: fadeUp 1s var(--ease) 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-indicator span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  writing-mode: vertical-rl;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-section {
  background: var(--white);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--cream-border);
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  transition: background var(--dur-mid), transform var(--dur-mid) var(--ease);
}

.trust-item:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.trust-icon svg { width: 56px; height: 56px; }

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-section {
  padding: var(--space-4xl) 0;
  background: var(--cream);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
  transition: transform var(--dur-mid) var(--ease);
}

.category-card:hover { transform: translateY(-6px); }

.category-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.category-card:hover .category-img-wrap img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,20,10,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-mid);
}

.category-card:hover .category-overlay { opacity: 1; }

.category-info h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.category-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section {
  padding: var(--space-4xl) 0;
  background: var(--off-white);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-3xl);
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  transition: all var(--dur-mid) var(--ease);
}

.filter-tab:hover {
  border-color: var(--green-light);
  color: var(--green-dark);
  background: var(--green-pale);
}

.filter-tab.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(74,124,89,0.3);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-border);
  transition: box-shadow var(--dur-mid) var(--ease),
              transform var(--dur-mid) var(--ease);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-card.hidden { display: none; }

/* Product Image */
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

/* Product Badges */
.product-badges {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.badge-organic,
.badge-bestseller,
.badge-new {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.badge-organic    { background: var(--green); color: var(--white); }
.badge-bestseller { background: var(--terra); color: var(--white); }
.badge-new        { background: var(--gold); color: var(--white); }

/* Wishlist */
.wishlist-btn {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--dur-mid), transform var(--dur-mid) var(--ease-spring);
  z-index: 2;
}

.wishlist-btn svg { width: 14px; height: 14px; color: var(--text-muted); }

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

.wishlist-btn:hover svg { color: var(--terra); fill: var(--terra); }

/* Quick View Overlay */
.product-actions-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,20,10,0.35);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-md);
  opacity: 0;
  transition: opacity var(--dur-mid);
  z-index: 1;
}

.product-card:hover .product-actions-overlay { opacity: 1; }

.quick-view-btn {
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  transform: translateY(8px);
  transition: transform var(--dur-mid) var(--ease-spring), background var(--dur-fast);
}

.product-card:hover .quick-view-btn { transform: translateY(0); }
.quick-view-btn:hover { background: var(--cream); }

/* Product Info */
.product-info {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.product-category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.stars {
  color: var(--gold);
  font-size: 0.8125rem;
  letter-spacing: 1px;
}

.rating-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-xs);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--cream-border);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
}

.price-current {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-dark);
}

.price-old {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.add-to-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--green-light);
  transition: all var(--dur-mid) var(--ease);
}

.add-to-cart svg { width: 14px; height: 14px; }

.add-to-cart:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(74,124,89,0.3);
}

.view-all-wrap {
  text-align: center;
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--terra-dark) 0%, var(--terra) 50%, #E8834A 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.promo-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.promo-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.promo-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.promo-text strong { color: var(--white); font-weight: 700; }

/* ============================================================
   OUR STORY
   ============================================================ */
.story-section {
  padding: var(--space-4xl) 0;
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

/* Story Images */
.story-images {
  position: relative;
}

.story-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.story-img-main:hover img { transform: scale(1.04); }

.story-img-secondary {
  position: absolute;
  bottom: -var(--space-xl);
  right: -var(--space-xl);
  width: 48%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 4/3;
  bottom: -24px;
  right: -24px;
}

.story-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-badge-float {
  position: absolute;
  top: var(--space-xl);
  right: -var(--space-xl);
  background: var(--terra);
  color: var(--white);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  top: 24px;
  right: -24px;
  z-index: 2;
}

.story-badge-float strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.story-badge-float span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  opacity: 0.9;
}

/* Story Content */
.story-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.story-content .section-tag { align-self: flex-start; }
.story-content .section-title { text-align: left; margin-bottom: 0; }

.story-lead {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.7;
}

.story-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.story-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-border);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.value-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--space-4xl) 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: var(--font-display);
  font-size: 400px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonials-section .section-tag {
  background: rgba(255,255,255,0.1);
  color: var(--green-light);
  border-color: rgba(255,255,255,0.15);
}

.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.6); }

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--space-xl);
  transition: transform var(--dur-slow) var(--ease);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - var(--space-lg));
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  backdrop-filter: blur(8px);
  transition: background var(--dur-mid), transform var(--dur-mid) var(--ease);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--green-light);
  line-height: 0.6;
  margin-bottom: var(--space-md);
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.testimonial-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 2px;
}

/* Testimonial Controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.testimonial-prev,
.testimonial-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-mid) var(--ease);
}

.testimonial-prev svg,
.testimonial-next svg { width: 18px; height: 18px; }

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-sm);
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.3);
  transition: all var(--dur-mid) var(--ease);
}

.t-dot.active {
  background: var(--white);
  width: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--brown-dark); }

/* Newsletter */
.footer-newsletter {
  background: linear-gradient(135deg, var(--green-dark) 0%, #3A6B4A 100%);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.newsletter-text p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.newsletter-form input {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.9375rem;
  width: 280px;
  outline: none;
  transition: border-color var(--dur-mid), background var(--dur-mid);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }

.newsletter-form input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
}

/* Footer Main */
.footer-main {
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
}

.footer-logo .logo-main { color: var(--cream); }
.footer-logo .logo-sub  { color: var(--terra-light); }

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xl);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--dur-mid) var(--ease);
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}

.footer-links a:hover {
  color: var(--green-light);
  padding-left: 6px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-light);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-xl) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.payment-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

.payment-badges {
  display: flex;
  gap: var(--space-xs);
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.12);
}

.payment-badge.visa       { background: #1A1F71; color: #fff; }
.payment-badge.mastercard { background: #EB001B; color: #fff; }
.payment-badge.bkash      { background: #E2136E; color: #fff; }
.payment-badge.nagad       { background: #F05A28; color: #fff; }
.payment-badge.rocket      { background: #8B1A8B; color: #fff; }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,20,10,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid), visibility var(--dur-mid);
  backdrop-filter: blur(4px);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  box-shadow: var(--shadow-xl);
}

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

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

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cart-header span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background var(--dur-fast), color var(--dur-fast);
}

.cart-close svg { width: 20px; height: 20px; }
.cart-close:hover { background: var(--cream); color: var(--text-dark); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xl);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  height: 100%;
  text-align: center;
  color: var(--text-muted);
}

.cart-empty svg { width: 64px; height: 64px; opacity: 0.3; }
.cart-empty p { font-size: 1rem; font-weight: 500; }

/* Cart Item */
.cart-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--cream-border);
}

.cart-item-name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cart-item-price {
  font-size: 0.875rem;
  color: var(--green-dark);
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
}

.qty-btn:hover { background: var(--green-pale); }

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

.cart-item-remove {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 1;
  transition: color var(--dur-fast);
}

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

.cart-footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--text-body);
}

.cart-total strong {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--green-dark);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--green-dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: transform var(--dur-mid) var(--ease-spring), opacity var(--dur-mid);
  opacity: 0;
}

.toast svg { width: 18px; height: 18px; color: var(--green-light); }

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--dur-mid) var(--ease);
  z-index: 500;
}

.back-to-top svg { width: 20px; height: 20px; }

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --container: 100%; }

  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .trust-grid      { grid-template-columns: repeat(2, 1fr); }

  .story-grid { gap: var(--space-2xl); }
  .story-img-secondary { right: -12px; bottom: -12px; }
  .story-badge-float   { right: -12px; }

  .testimonial-card { flex: 0 0 calc(50% - var(--space-md)); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --announce-h: 36px;
  }

  .hide-mobile { display: none; }

  /* Navbar */
  .nav-links {
    position: fixed;
    top: calc(var(--announce-h) + var(--nav-h));
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg);
    gap: var(--space-xs);
    border-bottom: 1px solid var(--cream-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--dur-mid) var(--ease),
                opacity var(--dur-mid),
                visibility var(--dur-mid);
    z-index: 998;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link { width: 100%; padding: var(--space-sm) var(--space-md); font-size: 1rem; }
  .nav-link::after { display: none; }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    margin-top: var(--space-xs);
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .has-dropdown.open .dropdown { display: block; }

  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; max-height: none; }
  .hero-content { padding-top: 0; }
  .hero-stats { gap: var(--space-lg); }
  .stat strong { font-size: 1.25rem; }
  .scroll-indicator { display: none; }

  /* Trust */
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .trust-item { padding: var(--space-lg); }

  /* Categories */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .filter-tabs { gap: var(--space-xs); }
  .filter-tab { font-size: 0.8125rem; padding: 0.4rem 0.875rem; }

  /* Promo */
  .promo-inner { flex-direction: column; text-align: center; }

  /* Story */
  .story-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .story-images { max-width: 480px; margin: 0 auto; }
  .story-img-secondary { width: 42%; right: -8px; bottom: -8px; }
  .story-badge-float { right: -8px; top: 16px; width: 72px; height: 72px; }
  .story-badge-float strong { font-size: 1.25rem; }
  .story-content .section-title { font-size: 1.75rem; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 calc(100% - var(--space-md)); }

  /* Newsletter */
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Cart */
  .cart-sidebar { width: 100%; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats   { flex-direction: column; gap: var(--space-md); }
  .stat-divider { display: none; }

  .products-grid   { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid      { grid-template-columns: 1fr; }

  .section-title { font-size: 1.625rem; }

  .announcement-bar { font-size: 0.75rem; }
}