/* ============================================
   HAPPY GREENS — Custom Palette & Design System
   Fresh greens, vibrant, high-conversion landing
   ============================================ */

:root,
[data-theme="light"] {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Happy Greens brand palette */
  --color-bg: #f4fbf1;
  --color-surface: #ffffff;
  --color-surface-2: #f0f8ec;
  --color-surface-offset: #e8f5e0;
  --color-divider: #d0e8c4;
  --color-border: #b8d9a8;
  --color-text: #1a2e16;
  --color-text-muted: #4d7043;
  --color-text-faint: #8ab07a;
  --color-text-inverse: #f4fbf1;
  --color-primary: #2d9142;
  --color-primary-hover: #237533;
  --color-primary-active: #1a5a26;
  --color-primary-highlight: #d4f0d0;
  --color-accent: #ff6b35;
  --color-accent-hover: #e55a25;
  --color-secondary: #f9a825;
  --color-success: #2d9142;
  --color-error: #c0392b;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 4px rgba(30, 80, 20, 0.08);
  --shadow-md: 0 4px 16px rgba(30, 80, 20, 0.12);
  --shadow-lg: 0 12px 40px rgba(30, 80, 20, 0.18);
  --shadow-glow: 0 0 40px rgba(45, 145, 66, 0.25);

  --font-display: 'Poppins', 'Helvetica Neue', sans-serif;
  --font-body: 'Nunito', 'Helvetica Neue', sans-serif;
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

[data-theme="dark"] {
  --color-bg: #0d1f0a;
  --color-surface: #122010;
  --color-surface-2: #162814;
  --color-surface-offset: #1a3018;
  --color-divider: #1e3a1c;
  --color-border: #2a4a28;
  --color-text: #c8e8c0;
  --color-text-muted: #7aaa6a;
  --color-text-faint: #4a7040;
  --color-text-inverse: #0d1f0a;
  --color-primary: #4bc76a;
  --color-primary-hover: #3aad58;
  --color-primary-active: #2d9142;
  --color-primary-highlight: #1e3a1c;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(75, 199, 106, 0.2);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0d1f0a;
    --color-surface: #122010;
    --color-surface-2: #162814;
    --color-surface-offset: #1a3018;
    --color-divider: #1e3a1c;
    --color-border: #2a4a28;
    --color-text: #c8e8c0;
    --color-text-muted: #7aaa6a;
    --color-text-faint: #4a7040;
    --color-text-inverse: #0d1f0a;
    --color-primary: #4bc76a;
    --color-primary-hover: #3aad58;
    --color-primary-active: #2d9142;
    --color-primary-highlight: #1e3a1c;
  }
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img, canvas { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); text-wrap: balance; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

/* BUTTONS */
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 0.7em 1.4em;
  border-radius: var(--radius-full);
  transition: background var(--transition-interactive), transform 160ms, box-shadow var(--transition-interactive);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.btn-order:hover { background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-order:active { transform: translateY(0); background: var(--color-primary-active); }
.btn-order.btn-lg { font-size: var(--text-base); padding: 0.85em 1.8em; }
.btn-order.btn-xl { font-size: var(--text-lg); padding: 1em 2.2em; }
.btn-order.btn-sm { font-size: var(--text-xs); padding: 0.6em 1.2em; }
.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 0.7em 1.4em;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  transition: all var(--transition-interactive);
}
.btn-ghost.btn-lg { font-size: var(--text-base); padding: 0.85em 1.8em; }
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-primary-highlight); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 90%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex; align-items: center; gap: var(--space-6);
}
.logo {
  display: flex; align-items: center; gap: var(--space-3);
  color: var(--color-primary);
  flex-shrink: 0;
  text-decoration: none;
}
.logo svg { flex-shrink: 0; }
.logo-text-block {
  display: flex; flex-direction: column; gap: 1px;
}
.logo-name {
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg);
  color: var(--color-primary); line-height: 1.1;
}
.logo-tagline {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.58rem; letter-spacing: 0.13em;
  color: var(--color-text-muted); text-transform: uppercase;
  line-height: 1; white-space: nowrap;
}
.nav-links {
  display: flex; gap: var(--space-6); margin-left: auto;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
}
.nav-links a { color: var(--color-text-muted); transition: color var(--transition-interactive); }
.nav-links a:hover { color: var(--color-primary); }
.nav-actions { display: flex; align-items: center; gap: var(--space-3); }
.nav-cta { display: flex; }
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-interactive);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover { background: var(--color-surface-offset); color: var(--color-primary); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--space-2); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: var(--space-4);
  padding: var(--space-6) var(--space-6);
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
}
.mobile-menu a { font-family: var(--font-display); font-weight: 600; color: var(--color-text); padding: var(--space-2) 0; border-bottom: 1px solid var(--color-divider); }
.mobile-menu.open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0d2e10 0%, #1a4a1e 30%, #2d7a35 70%, #4cb85a 100%);
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto;
  padding: var(--space-24) var(--space-6);
  text-align: center;
  color: #fff;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #d4f7d4;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero h1 {
  font-size: var(--text-hero);
  font-weight: 900;
  color: #fff;
  margin-bottom: var(--space-6);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero h1 .highlight {
  color: #7eff8e;
  display: inline-block;
  position: relative;
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  max-width: 560px; margin: 0 auto var(--space-8);
  line-height: 1.7;
}
.hero-btns {
  display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap;
  margin-bottom: var(--space-12);
}
.hero-btns .btn-order { background: #fff; color: var(--color-primary); }
.hero-btns .btn-order:hover { background: #f0fff0; }
.hero-btns .btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-btns .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); color: #fff; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: var(--space-8);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-8);
  flex-wrap: wrap; gap: var(--space-6);
}
.stat { display: flex; flex-direction: column; align-items: center; gap: var(--space-1); }
.stat-num { font-family: var(--font-display); font-weight: 900; font-size: var(--text-xl); color: #7eff8e; line-height: 1; }
.stat-label { font-size: var(--text-xs); color: rgba(255,255,255,0.75); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
.hero-scroll-hint {
  position: absolute; bottom: var(--space-8); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  color: rgba(255,255,255,0.6); font-size: var(--text-xs); z-index: 2;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }

/* ============ SECTIONS ============ */
.section { padding: clamp(var(--space-12), 8vw, var(--space-32)) 0; }
.section-inner { max-width: var(--content-wide); margin: 0 auto; padding: 0 var(--space-6); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--space-12); }
.section-header.light { color: #fff; }
.section-badge {
  display: inline-block;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-xs);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-light {
  background: rgba(255,255,255,0.18);
  color: #d4f7d4;
}
.section-header h2 { font-size: var(--text-2xl); font-weight: 800; margin-bottom: var(--space-4); }
.section-header p { color: var(--color-text-muted); font-size: var(--text-base); }
.section-header.light p { color: rgba(255,255,255,0.8); }

/* ============ PRODUCTS ============ */
.products-section { background: var(--color-surface); }

/* Filter tabs */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  justify-content: center; margin-bottom: var(--space-8);
}
.filter-btn {
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
  cursor: pointer;
  transition: all var(--transition-interactive);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}

/* Products grid v2 — 4 columns on wide, 3 on medium, 2 on small, 1 on mobile */
.products-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.product-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card.featured { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-primary); }
.product-card.hidden { display: none; }
.product-img-wrap { position: relative; height: 190px; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: var(--space-3); left: var(--space-3);
  background: var(--color-primary); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-xs);
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
  white-space: nowrap;
}
.badge-pink  { background: #e91e8c !important; }
.badge-red   { background: #c0392b !important; }
.badge-lime  { background: #4caf50 !important; }
.badge-green { background: #2d7a2d !important; }
.badge-purple{ background: #7b1fa2 !important; }
.badge-yellow{ background: #f57f17 !important; color: #fff !important; }
.cafe-badge  { background: var(--color-accent) !important; }

.product-tags { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-1); }
.tag {
  font-size: 11px; font-weight: 700; font-family: var(--font-display);
  padding: 2px 10px; border-radius: var(--radius-full);
  background: var(--color-primary-highlight); color: var(--color-primary);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.product-info { padding: var(--space-4) var(--space-4) var(--space-3); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.product-info h3 { font-size: var(--text-base); font-weight: 700; }
.product-info p { font-size: var(--text-xs); color: var(--color-text-muted); flex: 1; line-height: 1.6; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: var(--space-2); gap: var(--space-2); }
.price-block { display: flex; align-items: baseline; gap: 3px; }
.price { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); color: var(--color-primary); }
.price-unit { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: 600; }

/* Bulk card full-width */
.bulk-card { grid-column: span 2; }

/* Grow Kit strip */
.kit-strip {
  margin-top: var(--space-8);
  background: linear-gradient(135deg, var(--color-primary) 0%, #4cb85a 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-8);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-5);
  color: #fff;
}
.kit-strip-text { display: flex; align-items: center; gap: var(--space-4); }
.kit-icon { font-size: 2.5rem; flex-shrink: 0; }
.kit-strip-text strong { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); display: block; }
.kit-strip-text span { font-size: var(--text-sm); opacity: 0.9; }
.kit-price-cta { display: flex; align-items: center; gap: var(--space-4); }
.kit-price { font-family: var(--font-display); font-weight: 900; font-size: var(--text-xl); white-space: nowrap; }
.kit-strip .btn-order { background: #fff; color: var(--color-primary); white-space: nowrap; }
.kit-strip .btn-order:hover { background: #f0fff0; }

/* ============ BENEFITS ============ */
.benefits-section {
  background: linear-gradient(135deg, #1a3a1e 0%, #2d6632 100%);
  color: #fff;
}
.highlight-light { color: #7eff8e; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.benefit-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(4px);
}
.benefit-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.benefit-icon { font-size: 2.5rem; margin-bottom: var(--space-4); }
.benefit-card h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-3); color: #d4f7d4; }
.benefit-card p { font-size: var(--text-sm); color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ============ SHOWCASE ============ */
.showcase-section { background: var(--color-bg); }
.showcase-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.showcase-text .section-badge { margin-bottom: var(--space-5); }
.showcase-text h2 { font-size: var(--text-2xl); font-weight: 800; margin-bottom: var(--space-6); }
.showcase-text p { color: var(--color-text-muted); margin-bottom: var(--space-8); line-height: 1.75; }
.showcase-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-8); }
.showcase-list li { display: flex; align-items: center; gap: var(--space-3); font-weight: 600; }
.check { color: var(--color-primary); font-weight: 900; font-size: 1.1em; }
.showcase-visual { position: relative; display: flex; align-items: center; justify-content: center; }
#showcase-canvas { width: 100%; height: 380px; border-radius: var(--radius-xl); }
.floating-badge {
  position: absolute;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-xs);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: floatBadge 3s ease-in-out infinite;
}
.badge-f1 { top: 10%; left: -10%; animation-delay: 0s; }
.badge-f2 { top: 50%; right: -10%; animation-delay: 0.8s; }
.badge-f3 { bottom: 10%; left: 5%; animation-delay: 1.6s; }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============ HOW IT WORKS ============ */
.how-section { background: var(--color-surface-2); }
.steps-row {
  display: flex; align-items: flex-start; gap: var(--space-4);
  justify-content: center; flex-wrap: wrap;
}
.step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center; flex: 1; min-width: 220px; max-width: 300px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num { font-family: var(--font-display); font-weight: 900; font-size: var(--text-2xl); color: var(--color-primary-highlight); margin-bottom: var(--space-2); line-height: 1; }
.step-icon { font-size: 2.5rem; margin-bottom: var(--space-4); }
.step-card h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-3); }
.step-card p { font-size: var(--text-sm); color: var(--color-text-muted); }
.step-arrow {
  font-size: 2rem; color: var(--color-primary); align-self: center;
  margin-top: var(--space-4); font-weight: 900;
}
.how-cta { text-align: center; margin-top: var(--space-12); }

/* ============ REVIEWS ============ */
.reviews-section { background: var(--color-bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: box-shadow 0.25s, transform 0.25s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-card.featured-review { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-primary); }
.review-stars { color: #f9a825; font-size: var(--text-base); letter-spacing: 2px; }
.review-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.75; flex: 1; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: var(--space-3); }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: var(--text-base); color: var(--color-primary); flex-shrink: 0;
}
.reviewer strong { display: block; font-size: var(--text-sm); font-weight: 700; }
.reviewer span { font-size: var(--text-xs); color: var(--color-text-faint); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, #1a5c22 0%, #2d9142 50%, #4cb85a 100%);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  text-align: center; color: #fff;
}
.cta-inner { max-width: var(--content-narrow); margin: 0 auto; padding: 0 var(--space-6); }
.cta-inner h2 { font-size: var(--text-2xl); font-weight: 800; margin-bottom: var(--space-4); }
.cta-inner p { font-size: var(--text-base); color: rgba(255,255,255,0.85); margin-bottom: var(--space-8); line-height: 1.7; }
.cta-banner .btn-order { background: #fff; color: var(--color-primary); font-size: var(--text-base); }
.cta-banner .btn-order:hover { background: #f0fff0; }

/* ============ FOOTER ============ */
.footer { background: #0d2010; color: rgba(255,255,255,0.7); padding: var(--space-12) 0; }
.footer-inner { max-width: var(--content-default); margin: 0 auto; padding: 0 var(--space-6); text-align: center; }
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: var(--space-3);
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg);
  color: #4bc76a; margin-bottom: var(--space-3);
}
.footer-tagline { font-size: var(--text-sm); margin-bottom: var(--space-6); }
.footer-links {
  display: flex; gap: var(--space-6); justify-content: center; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}
.footer-links a { color: rgba(255,255,255,0.6); transition: color var(--transition-interactive); }
.footer-links a:hover { color: #4bc76a; }
.footer-copy { font-size: var(--text-xs); color: rgba(255,255,255,0.35); }

/* ============ FLOATING WA ============ */
.wa-float {
  position: fixed; bottom: var(--space-6); right: var(--space-6); z-index: 200;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ============ ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .products-grid-v2 { grid-template-columns: repeat(3, 1fr); }
  .bulk-card { grid-column: span 1; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .products-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .bulk-card { grid-column: span 2; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-inner { grid-template-columns: 1fr; }
  .showcase-visual { display: none; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .hero-stats { gap: var(--space-4); padding: var(--space-4); }
  .stat-divider { display: none; }
  .cta-banner .btn-order.btn-xl { font-size: var(--text-base); padding: 0.9em 1.6em; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .badge-f1, .badge-f2, .badge-f3 { display: none; }
  .products-grid-v2 { grid-template-columns: 1fr; }
  .bulk-card { grid-column: span 1; }
  .kit-strip { flex-direction: column; text-align: center; padding: var(--space-5); }
  .kit-strip-text { flex-direction: column; gap: var(--space-2); }
  .kit-price-cta { flex-direction: column; }
}

/* ============================================
   LOGO PHOTO (nav + footer)
   ============================================ */
.logo-photo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(45, 145, 66, 0.25);
  box-shadow: 0 2px 8px rgba(45, 145, 66, 0.18);
  flex-shrink: 0;
}

.footer-logo-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  flex-shrink: 0;
}

/* ============================================
   ORDER FORM MODAL
   ============================================ */
.order-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 15, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.order-modal-overlay.active {
  display: flex;
}

.order-modal {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2rem 1.75rem;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(10, 40, 12, 0.32);
  animation: modalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 92vh;
  overflow-y: auto;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f0f4f0;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.3rem;
  line-height: 1;
  color: #2d9142;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.modal-close:hover {
  background: #e0f0e0;
  transform: rotate(90deg);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #2d9142;
  box-shadow: 0 4px 14px rgba(45, 145, 66, 0.22);
  flex-shrink: 0;
}

.modal-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a2e16;
  margin: 0 0 0.2rem 0;
}
.modal-header p {
  font-size: 0.88rem;
  color: #4d7043;
  margin: 0;
}

/* Form layout */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2d5a27;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #c8e6c9;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #1a2e16;
  background: #f8fdf6;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2d9142;
  box-shadow: 0 0 0 3px rgba(45, 145, 66, 0.12);
  background: #fff;
}

.form-group input.error,
.form-group select.error {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 12px;
  margin-top: 0.25rem;
  gap: 0.6rem;
  display: flex;
  align-items: center;
}

.form-note {
  font-size: 0.78rem;
  color: #5a8c50;
  text-align: center;
  margin: 0;
  line-height: 1.45;
}

/* Nav "Place Order" button style */
.btn-order-form {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #2d9142, #1e7a38);
  color: #fff;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(45, 145, 66, 0.3);
  white-space: nowrap;
}
.btn-order-form:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 145, 66, 0.4);
}

/* Responsive modal */
@media (max-width: 540px) {
  .order-modal {
    padding: 1.5rem 1.25rem 1.5rem;
    border-radius: 16px;
    max-height: 96vh;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .modal-header h2 {
    font-size: 1.2rem;
  }
}

[data-theme="dark"] .order-modal {
  background: #1c2c1c;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
[data-theme="dark"] .modal-header h2 { color: #d0f0d0; }
[data-theme="dark"] .modal-header p  { color: #8ab07a; }
[data-theme="dark"] .form-group label { color: #8ab07a; }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: #152015;
  border-color: #2d5a27;
  color: #d0f0d0;
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
  border-color: #2d9142;
  background: #1a2e1a;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: #1a5a26;
  width: 100%;
  z-index: 200;
}
.top-bar-inner {
  max-width: var(--content-wide, 1200px);
  margin: 0 auto;
  padding: 0.45rem 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}
.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.88);
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s;
  white-space: nowrap;
}
.top-bar-link:hover {
  color: #fff;
}
.top-bar-link svg {
  flex-shrink: 0;
  opacity: 0.85;
}

[data-theme="dark"] .top-bar {
  background: #0f3018;
}

@media (max-width: 480px) {
  .top-bar-inner {
    padding: 0.4rem 1rem;
    gap: 1rem;
  }
  .top-bar-link {
    font-size: 0.72rem;
  }
}

/* ============================================
   NAV CONTACT LINKS (Gmail + Instagram)
   ============================================ */
.nav-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--color-text-muted);
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.18s, transform 0.18s;
  padding: 0.3rem 0;
}
.nav-contact-link:hover {
  color: var(--color-primary);
  transform: translateY(-1px);
}
.nav-contact-link svg {
  flex-shrink: 0;
  border-radius: 4px;
}

/* Hide text on medium screens, show icon only */
@media (max-width: 1024px) {
  .nav-contact-text {
    display: none;
  }
}

/* Hide entirely on mobile (hamburger menu takes over) */
@media (max-width: 768px) {
  .nav-contact-link {
    display: none;
  }
}
