/* ═══════════════════════════════════════════════════════
   Premier Cannabis Genetics — Premium Heritage Seed Bank
   styles.css  |  Custom Design System
   ═══════════════════════════════════════════════════════ */

/* ── Self-hosted Fonts ──────────────────────────────── */
@import url('fonts/fonts.css');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Greens */
  --forest:     #1b3a2d;
  --canopy:     #2c5040;
  --fern:       #3d6b52;
  --sage:       #7a9e8a;
  --mist:       #c4d9cc;
  --dew:        #e8f2ec;

  /* Earths */
  --peat:       #3b2e22;
  --bark:       #6b4f35;
  --sand:       #d4b896;
  --parchment:  #f4ede0;
  --ivory:      #faf7f2;

  /* Accents */
  --gold:       #c4973a;
  --gold-light: #e8c478;
  --cream-white:#ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --gutter:      clamp(1rem, 4vw, 2rem);

  /* Transitions */
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--peat);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ── Typography Scale ──────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
}
.label-caps {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.body-lg { font-size: 1.1rem; line-height: 1.7; }

/* ── Utility Classes ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.text-forest  { color: var(--forest); }
.text-gold    { color: var(--gold); }
.text-sage    { color: var(--sage); }
.bg-forest    { background: var(--forest); }
.bg-parchment { background: var(--parchment); }
.bg-ivory     { background: var(--ivory); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,151,58,0.35);
}
.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: var(--ivory);
  color: var(--forest);
  border-color: var(--ivory);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline-dark:hover {
  background: var(--forest);
  color: var(--ivory);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--gold);
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  letter-spacing: 0.08em;
}
.btn-ghost:hover { color: var(--forest); border-color: var(--forest); }

/* ══════════════════════════════════════════════════════════
   AGE VERIFICATION MODAL
   ══════════════════════════════════════════════════════════ */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,58,45,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 0.6s var(--ease);
}
#age-gate.hidden { opacity: 0; pointer-events: none; }

.age-gate__box {
  background: var(--ivory);
  max-width: 480px;
  width: calc(100% - 2rem);
  padding: 3.5rem 3rem;
  text-align: center;
  border-top: 4px solid var(--gold);
  position: relative;
}
.age-gate__leaf {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}
.age-gate__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.age-gate__sub {
  color: var(--bark);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.age-gate__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.age-gate__actions .btn { flex: 1; min-width: 120px; justify-content: center; }
.age-gate__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: var(--sage);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--forest);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 100;
}
.announcement-bar strong { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--ivory);
  border-bottom: 1px solid rgba(27,58,45,0.12);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  min-height: 130px;
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(27,58,45,0.12);
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.02em;
}
.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

/* Main Nav */
.main-nav { display: flex; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--peat);
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--forest);
  background: var(--dew);
}
.nav-link svg { width: 10px; height: 10px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 8px; /* bridges the visual gap so hover is never lost */
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), visibility 0.2s;
}
.nav-dropdown-inner {
  background: var(--ivory);
  border: 1px solid rgba(27,58,45,0.1);
  border-top: 3px solid var(--gold);
  box-shadow: 0 20px 60px rgba(27,58,45,0.15);
  padding: 0.75rem 0;
  border-radius: 0 0 4px 4px;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem;
  color: var(--peat);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--dew); color: var(--forest); }
.nav-dropdown a span.dd-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 4px;
  color: var(--peat);
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.icon-btn:hover { background: var(--dew); color: var(--forest); }
.icon-btn svg { width: 18px; height: 18px; }
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.site-logo img {
    height: 112px;
    width: auto;
    display: block;
}

.site-header {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Search Bar */
.header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dew);
  border: 1px solid var(--mist);
  border-radius: 4px;
  padding: 0 0.75rem;
  height: 38px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 200px;
}
.header-search:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,138,0.15);
}
.header-search svg { width: 14px; height: 14px; color: var(--sage); flex-shrink: 0; }
.header-search input {
  border: none; background: transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--peat);
  outline: none;
  width: 100%;
}
.header-search input::placeholder { color: var(--sage); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 4px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--dew); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--peat);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--ivory);
  z-index: 400;
  overflow-y: auto;
  padding: 2rem var(--gutter) 3rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1px solid var(--mist);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: clamp(420px, 65vh, 700px);
  overflow: hidden;
  background: var(--forest);
}

/* Slides */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s var(--ease);
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

/* Gradient overlays */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(27,58,45,0.82) 0%,
    rgba(27,58,45,0.5) 55%,
    rgba(27,58,45,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 6rem;
}
.hero-text { max-width: 620px; }
.hero-eyebrow {
  color: var(--gold-light);
  margin-top: 3px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.9vw, 3.3rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  color: rgba(250,247,242,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 0.4rem; flex-wrap: nowrap; align-items: center; }
.hero-actions .btn { padding: 0.5rem 0.75rem; font-size: 0.72rem; }
.hero-actions .btn-outline-light { padding: 0.5rem 0.75rem; font-size: 0.72rem; }

/* Slide indicators */
.hero-indicators { display: none; }
.hero-dot {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active { background: var(--gold); width: 44px; }

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{top:-100%} 100%{top:100%} }

/* ══════════════════════════════════════════════════════════
   TRUST BADGES (below hero)
   ══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--forest);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.trust-item strong { color: var(--ivory); }

/* ══════════════════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header.left { text-align: left; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fern);
  margin-bottom: 0.75rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--sage);
}
.section-header.left .section-eyebrow::before { display: none; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-sub {
  color: var(--bark);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header.left .section-sub { margin: 0; }

/* ══════════════════════════════════════════════════════════
   FEATURED CATEGORIES
   ══════════════════════════════════════════════════════════ */
.categories-section {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  background: var(--canopy);
}
.category-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.category-card:hover .category-card-bg { transform: scale(1.08); }
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,58,45,0.85) 0%, rgba(27,58,45,0.1) 60%);
  transition: opacity 0.4s;
}
.category-card:hover::after { opacity: 0.9; }
.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 1.75rem 1.5rem;
  z-index: 2;
}
.category-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.category-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.category-card:first-child .category-name { font-size: 2rem; }
.category-count {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.6);
}
.category-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(250,247,242,0.12);
  border: 1px solid rgba(250,247,242,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.category-card:hover .category-arrow { opacity: 1; transform: translateY(0); }
.category-arrow svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS & CAROUSEL
   ══════════════════════════════════════════════════════════ */
.products-section {
  padding: var(--section-pad) 0;
  background: var(--parchment);
  overflow: hidden;
}
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Tab filter */
.product-tabs {
  display: flex;
  gap: 0.25rem;
  background: rgba(27,58,45,0.07);
  border-radius: 4px;
  padding: 4px;
}
.product-tab {
  padding: 0.5rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--bark);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.05em;
}
.product-tab.active, .product-tab:hover {
  background: var(--forest);
  color: var(--ivory);
}

/* Carousel wrapper */
.carousel-outer { position: relative; }
.carousel-track-wrap { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s var(--ease-out);
}

/* Product Card */
.product-card {
  flex: 0 0 calc(25% - 1rem);
  min-width: 240px;
  background: var(--ivory);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(27,58,45,0.07);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  position: relative;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(27,58,45,0.13);
  transform: translateY(-4px);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dew);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

/* Badges */
.product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}
.badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  line-height: 1;
}
.badge-new     { background: var(--gold); color: var(--forest); }
.badge-hot     { background: var(--forest); color: var(--gold-light); }
.badge-sale    { background: #c0392b; color: #fff; }
.badge-fem     { background: var(--sage); color: var(--forest); }
.badge-auto    { background: var(--sand); color: var(--peat); }

/* Quick view */
.product-quick-view {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(27,58,45,0.92);
  color: var(--ivory);
  text-align: center;
  padding: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.product-card:hover .product-quick-view { transform: translateY(0); }

/* Wishlist btn */
.product-wish {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 30px; height: 30px;
  background: rgba(250,247,242,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
  transition: background 0.2s, color 0.2s;
}
.product-wish:hover { background: var(--ivory); color: #c0392b; }
.product-wish svg { width: 14px; height: 14px; }

/* Card body */
.product-card-body { padding: 1.25rem; }
.product-type-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fern);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.product-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.stat-pill {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--bark);
  background: var(--dew);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.price-current {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
}
.price-old {
  font-size: 0.85rem;
  color: var(--sage);
  text-decoration: line-through;
  margin-left: 0.35rem;
}
.btn-add-cart {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  background: var(--forest);
  color: var(--ivory);
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  display: flex; align-items: center; gap: 0.3rem;
}
.btn-add-cart:hover { background: var(--fern); transform: translateY(-1px); }
.btn-add-cart svg { width: 13px; height: 13px; }

/* Stars */
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 11px; height: 11px; fill: var(--gold); color: var(--gold); }
.stars svg.half { fill: url(#half-star); }
.rating-count { font-size: 0.7rem; color: var(--sage); }

/* Carousel navigation */
.carousel-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  justify-content: center;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--mist);
  background: var(--ivory);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.carousel-btn:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--ivory);
}
.carousel-btn svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════════════
   PROMO BANNER (mid-page)
   ══════════════════════════════════════════════════════════ */
.promo-banner {
  background: var(--canopy);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(196,151,58,0.08);
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.promo-text { flex: 1; min-width: 280px; }
.promo-eyebrow { color: var(--gold-light); margin-bottom: 0.75rem; }
.promo-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.promo-sub { color: rgba(250,247,242,0.7); font-size: 0.95rem; line-height: 1.6; }
.promo-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.promo-stat {
  text-align: center;
  flex-shrink: 0;
}
.promo-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.promo-stat-label { font-size: 0.75rem; color: rgba(250,247,242,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
.promo-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.12); }

/* ══════════════════════════════════════════════════════════
   EDUCATION / CONTENT SECTION
   ══════════════════════════════════════════════════════════ */
.education-section {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}
.education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.education-media { position: relative; }
.education-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 3px;
}
.education-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
  border: 6px solid var(--ivory);
  box-shadow: 0 12px 40px rgba(27,58,45,0.15);
}
.education-img-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--forest);
  padding: 1rem 1.25rem;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(196,151,58,0.3);
}
.education-img-badge .num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.education-img-badge .lbl { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }

.education-content { padding: 1rem 0; }
.feature-list { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px;
  background: var(--dew);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--fern);
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-text h4 { font-weight: 600; color: var(--forest); margin-bottom: 0.2rem; font-size: 0.9rem; }
.feature-text p { font-size: 0.85rem; color: var(--bark); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   BLOG / GUIDES SECTION
   ══════════════════════════════════════════════════════════ */
.blog-section {
  padding: var(--section-pad) 0;
  background: var(--parchment);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: var(--ivory);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(27,58,45,0.1);
  transform: translateY(-3px);
}
.blog-card-img {
  position: relative;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:first-child .blog-card-img img { aspect-ratio: 4/3; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-category-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}
.blog-card-body { padding: 1.5rem; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--mist); }
.blog-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-title { color: var(--fern); }
.blog-excerpt { font-size: 0.83rem; color: var(--bark); line-height: 1.6; margin-bottom: 1rem; }
.blog-read-more {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fern);
  display: flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read-more { gap: 0.65rem; }
.blog-read-more svg { width: 12px; height: 12px; }

/* ══════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════════════════════════════ */
.newsletter-section {
  background: var(--forest);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before,
.newsletter-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--gold);
}
.newsletter-section::before { width: 400px; height: 400px; top: -200px; left: -100px; }
.newsletter-section::after  { width: 300px; height: 300px; bottom: -150px; right: -50px; }
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.newsletter-text { flex: 1; min-width: 250px; }
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.newsletter-sub { color: rgba(250,247,242,0.65); font-size: 0.9rem; }
.newsletter-form { flex: 1; min-width: 280px; max-width: 440px; }
.newsletter-input-group {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.newsletter-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ivory);
  outline: none;
}
.newsletter-input-group input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input-group .btn {
  border-radius: 0;
  padding: 0.9rem 1.5rem;
}
.newsletter-note { margin-top: 0.65rem; font-size: 0.7rem; color: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--peat);
  color: rgba(250,247,242,0.65);
  padding-top: 4rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.footer-logo-mark { width: 32px; height: 32px; }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ivory);
}
.footer-desc { font-size: 0.82rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.5rem; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,242,0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,151,58,0.08);
}
.social-link svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.82rem;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 0.35rem;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  font-size: 0.75rem;
}
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal-links a { transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--ivory); }

.age-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 1rem var(--gutter);
  text-align: center;
  font-size: 0.72rem;
  color: rgba(250,247,242,0.4);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: var(--sage);
}
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb svg { width: 12px; height: 12px; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  padding: 2rem 0 5rem;
  align-items: start;
}

/* Gallery */
.gallery-main {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--dew);
  margin-bottom: 1rem;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}
.gallery-nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(250,247,242,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: background 0.2s;
  z-index: 2;
}
.gallery-nav-btn:hover { background: var(--ivory); }
.gallery-nav-btn.prev { left: 1rem; }
.gallery-nav-btn.next { right: 1rem; }
.gallery-nav-btn svg { width: 16px; height: 16px; }
.gallery-thumbs {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 72px; height: 72px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: var(--dew);
  flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.product-detail-info {}
.product-detail-badge-row {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem;
}
.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.product-detail-subtitle {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--sage);
  margin-bottom: 1rem;
}
.product-detail-rating {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.product-detail-rating .rating-count { color: var(--sage); font-size: 0.82rem; }
.product-detail-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.product-detail-price .from-label { font-size: 0.85rem; color: var(--sage); font-family: var(--font-body); font-weight: 400; margin-right: 0.25rem; }

/* Quantity options */
.option-label { font-size: 0.78rem; font-weight: 600; color: var(--peat); letter-spacing: 0.05em; margin-bottom: 0.65rem; }
.seed-qty-group {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.seed-qty-btn {
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--mist);
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--peat);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.seed-qty-btn:hover, .seed-qty-btn.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--ivory);
}

/* Add to cart area */
.add-cart-row {
  display: flex; gap: 0.75rem; margin-bottom: 1.5rem; align-items: stretch;
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--mist);
  border-radius: 3px;
  overflow: hidden;
}
.qty-stepper button {
  width: 38px; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--forest);
  transition: background 0.2s;
  padding: 0 0.5rem;
}
.qty-stepper button:hover { background: var(--dew); }
.qty-stepper input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--mist);
  border-right: 1px solid var(--mist);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--peat);
  padding: 0.65rem 0;
  outline: none;
}
.btn-atc-large {
  flex: 1;
  justify-content: center;
  background: var(--forest);
  color: var(--ivory);
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  display: flex; align-items: center; gap: 0.5rem;
  transition: background 0.25s, transform 0.2s;
}
.btn-atc-large:hover { background: var(--canopy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,58,45,0.2); }
.btn-atc-large svg { width: 16px; height: 16px; }

/* Trust row */
.trust-row {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.trust-pill {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: var(--sage);
}
.trust-pill svg { width: 14px; height: 14px; color: var(--fern); }

/* Description & Tabs */
.product-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--mist);
  margin-bottom: 2rem;
}
.product-tabs-nav .tab-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--sage);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.product-tabs-nav .tab-btn.active, .product-tabs-nav .tab-btn:hover { color: var(--forest); border-bottom-color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Growing Stats Table */
.stats-table { width: 100%; border-collapse: collapse; }
.stats-table tr { border-bottom: 1px solid var(--mist); }
.stats-table tr:last-child { border-bottom: none; }
.stats-table td { padding: 0.85rem 1rem; font-size: 0.85rem; }
.stats-table td:first-child { color: var(--sage); font-weight: 500; width: 50%; }
.stats-table td:last-child { color: var(--peat); font-weight: 500; }
.stats-table tr:nth-child(odd) td { background: rgba(27,58,45,0.025); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card:first-child { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .blog-card:last-child { display: none; }
}

@media (max-width: 900px) {
  .education-grid { grid-template-columns: 1fr; gap: 3rem; }
  .education-img-accent { display: none; }
  .education-img-badge { display: none; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .header-search { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid .blog-card:last-child { display: block; }
  .promo-inner { flex-direction: column; text-align: center; }
  .promo-divider { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-inner { flex-direction: column; }
  .hero-indicators { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }

  /* Convert homepage carousel to scrollable 2-column grid on mobile */
  .carousel-track-wrap { overflow: visible; }
  .carousel-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    transform: none !important;
    transition: none !important;
  }
  .product-card { flex: none; min-width: 0; width: auto; }
  .carousel-nav { display: none; }
}

@media (max-width: 480px) {
  .product-card { flex: 0 0 calc(100% - 0); min-width: auto; }
  .categories-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .age-gate__box { padding: 2.5rem 1.5rem; }
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS & SCROLL REVEAL
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.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; }

/* Loading shimmer */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, var(--dew) 25%, var(--mist) 50%, var(--dew) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--fern); }
