/* =============================================================
   HEALTHY SEAWEED CAFE — Prototype Stylesheet
   Designed against competitive benchmark:
   gimme Seaweed · The Seaweed Company · Maine Coast Sea Vegetables
   Brand: #94B200 · Outfit font · East African coastal identity
============================================================= */

/* ─── 1. VARIABLES & RESET ─────────────────────────────── */

:root {
  --green:        #94B200;
  --green-dark:   #7A9400;
  --green-light:  #B8D930;
  --green-pale:   #EFF7CF;
  --green-deep:   #2D4A00;
  --ocean-deep:   #0C3D2A;
  --ocean-mid:    #165C3E;
  --black:        #111111;
  --charcoal:     #2D2D2D;
  --mid-grey:     #6B6B6B;
  --border:       #E4ECC4;
  --sand:         #F8F4EE;
  --sand-dark:    #EDE8DF;
  --white:        #FFFFFF;

  --font:         'Outfit', sans-serif;

  --max-w:        1200px;
  --max-w-narrow: 720px;
  --max-w-mid:    900px;
  --pad-x:        clamp(1.25rem, 5vw, 3rem);
  --section-v:    clamp(64px, 9vw, 108px);

  --radius:       12px;
  --radius-lg:    20px;
  --radius-pill:  100px;

  --shadow:       0 2px 20px rgba(0,0,0,.07);
  --shadow-md:    0 6px 32px rgba(0,0,0,.1);
  --shadow-green: 0 8px 32px rgba(148,178,0,.25);

  --ease:         cubic-bezier(.25,.46,.45,.94);
  --t:            0.22s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ─── 2. TYPOGRAPHY ─────────────────────────────────────── */

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; }
p  { line-height: 1.72; }

.display {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ─── 3. UTILITY ────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: var(--max-w-narrow); }
.container--mid    { max-width: var(--max-w-mid); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.section-label--white { color: rgba(255,255,255,.7); }
.section-label--light { color: var(--green-light); }

.section-heading {
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.centred { text-align: center; }
.text-white { color: var(--white) !important; }
.text-green { color: var(--green); }

.divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider--centre { margin-inline: auto; }

/* ─── 4. BUTTONS ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.78em 1.7em;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--t) var(--ease),
              color var(--t) var(--ease),
              transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--green);
  color: #fff;
}
.btn--primary:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-green);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--green-dark);
}
.btn--white:hover {
  background: var(--green-pale);
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn--lg { padding: 0.9em 2.2em; font-size: 1rem; }
.btn--sm { padding: 0.6em 1.2em; font-size: 0.82rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.btn-group--centre { justify-content: center; }

/* ─── 5. IMAGE PLACEHOLDERS ──────────────────────────────── */

.img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-align: center;
  user-select: none;
  overflow: hidden;
  position: relative;
}
.img-ph__label {
  position: relative;
  z-index: 1;
  padding: 0 .5rem;
}
.img-ph--product {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #b8d930 0%, #94B200 60%, #7a9400 100%);
}
.img-ph--farmer {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1a4a35 0%, #246b4a 50%, #2d8a5f 100%);
}
.img-ph--hero {
  inset: 0;
  position: absolute;
  background: linear-gradient(160deg, var(--ocean-deep) 0%, var(--ocean-mid) 40%, #1e8050 70%, #2d9c62 100%);
  border-radius: 0;
}
.img-ph--about {
  min-height: 480px;
  background: linear-gradient(145deg, var(--ocean-deep) 0%, #1d6b45 50%, #2d9460 100%);
}
.img-ph--wide {
  aspect-ratio: 16/7;
  background: linear-gradient(160deg, var(--ocean-deep) 0%, var(--ocean-mid) 50%, #2a7a52 100%);
}

/* Wave decoration SVG inline */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* ─── 6. TOPBAR ──────────────────────────────────────────── */

.topbar {
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px var(--pad-x);
  position: relative;
  z-index: 200;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar__sep { opacity: .45; }

/* ─── 7. HEADER & NAV ────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--t) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 var(--pad-x);
  height: 68px;
  max-width: var(--max-w);
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--black);
  flex-shrink: 0;
  margin-right: auto;
}
.nav__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.nav__logo-text span { color: var(--green); }
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__link {
  padding: 0.45em 0.85em;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius-pill);
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.nav__link:hover { background: var(--green-pale); color: var(--green-dark); }
.nav__link--active { color: var(--green-dark); font-weight: 600; }

/* ── Dropdown nav ── */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav__dropdown-trigger svg {
  width: 12px; height: 12px;
  stroke: currentColor;
  transition: transform .2s;
  flex-shrink: 0;
}
.nav__dropdown.open .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: .4rem;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s, transform .18s;
  z-index: 200;
  list-style: none;
}
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: .55rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 8px;
  white-space: nowrap;
  transition: background var(--t), color var(--t);
}
.nav__dropdown-link:hover { background: var(--green-pale); color: var(--green-dark); }
.nav__dropdown-link--active { color: var(--green-dark); font-weight: 600; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__cart {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: background var(--t);
}
.nav__cart:hover { background: var(--green-pale); }
.nav__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--t);
}
.nav__burger:hover { background: var(--green-pale); }
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  overflow-y: auto;
}
.nav__mobile.open .nav__mobile-panel { transform: translateX(0); }
.nav__mobile-close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--charcoal);
  cursor: pointer;
  margin-bottom: .5rem;
}
.nav__mobile-close:hover { background: var(--green-pale); }
.nav__mobile-link {
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  color: var(--charcoal);
  transition: background var(--t);
}
.nav__mobile-link:hover { background: var(--green-pale); color: var(--green-dark); }
.nav__mobile-link--sub { padding-left: 1.75rem; font-size: .92rem; opacity: .9; }
.nav__mobile-section {
  display: block;
  padding: .5rem 1rem .2rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.nav__mobile-divider { height: 1px; background: #eee; margin: 0.5rem 0; }

/* ─── 8. HERO ────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(10,40,25,.92) 0%, rgba(20,65,38,.82) 45%, rgba(35,100,60,.65) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(80px, 12vh, 140px) var(--pad-x) clamp(60px, 10vh, 120px);
  width: 100%;
}
.hero__credibility {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero__credibility-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: .6;
}
.hero h1 {
  color: #fff;
  max-width: 800px;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-light);
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(148,178,0,.25);
  border: 1px solid rgba(148,178,0,.45);
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
}
.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBob 2.5s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── 9. IMPACT BAR ──────────────────────────────────────── */

.impact-bar {
  background: var(--green);
  padding: 0;
}
.impact-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin-inline: auto;
}
.impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3.5vw, 2.5rem) 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.18);
}
.impact-stat:last-child { border-right: none; }
.impact-stat__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.impact-stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

/* ─── 10. PRODUCTS SECTION ───────────────────────────────── */

.products-section {
  padding: var(--section-v) 0;
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.product-card__img-wrap .img-ph--product {
  border-radius: 0;
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 1;
}
.product-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.product-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}
.product-card__tagline {
  font-size: 0.82rem;
  color: var(--mid-grey);
  line-height: 1.5;
  flex: 1;
}
.product-card__minerals {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem 1.25rem;
  gap: 0.5rem;
}
.product-card__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}
.product-card__price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mid-grey);
}
.products-section__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── 11. BENEFITS / WHY SEAMOSS ─────────────────────────── */

.benefits {
  background: var(--green-pale);
  padding: var(--section-v) 0;
}
.benefits__feature {
  text-align: center;
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin: 3rem 0;
  color: #fff;
}
.benefits__feature-num {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.benefits__feature-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: .85;
  max-width: 560px;
  margin-inline: auto;
  margin-top: .75rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(148,178,0,.2);
  transition: transform var(--t), box-shadow var(--t);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}
.benefit-card__icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.benefit-card h3 { font-size: 1.05rem; }
.benefit-card p  { font-size: 0.875rem; color: var(--mid-grey); }

/* ─── 12. ORIGIN / PROVENANCE ────────────────────────────── */

.origin {
  background: var(--charcoal);
  color: #fff;
  overflow: hidden;
}
.origin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.origin__image {
  position: relative;
  overflow: hidden;
}
.origin__image .img-ph--about {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: unset;
  height: 100%;
  width: 100%;
}
.origin__content {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.origin .section-label { color: var(--green-light); }
.origin h2 { color: #fff; }
.origin p   { color: rgba(255,255,255,.78); font-size: .95rem; }
.origin__facts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.origin__fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
}
.origin__fact::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* ─── 13. FARMERS ────────────────────────────────────────── */

.farmers {
  background: var(--sand);
  padding: var(--section-v) 0;
}
.farmers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.farmer-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand-dark);
  transition: transform var(--t), box-shadow var(--t);
}
.farmer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.farmer-card__img { position: relative; }
.farmer-card__years {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.farmer-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.farmer-card__name { font-size: 1rem; font-weight: 700; }
.farmer-card__location { font-size: 0.78rem; color: var(--green-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.farmer-card__quote {
  font-size: 0.875rem;
  color: var(--mid-grey);
  font-style: italic;
  border-left: 3px solid var(--green);
  padding-left: 0.85rem;
  margin-top: 0.25rem;
  line-height: 1.6;
}
.farmers__cta { text-align: center; }

/* ─── 14. ENVIRONMENTAL IMPACT ───────────────────────────── */

.env-impact {
  background: linear-gradient(155deg, var(--ocean-deep) 0%, var(--ocean-mid) 50%, #2d8055 100%);
  color: #fff;
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}
.env-impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(148,178,0,.12) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(148,178,0,.08) 0%, transparent 50%);
}
.env-impact .container { position: relative; z-index: 1; }
.env-impact .section-label { color: var(--green-light); }
.env-impact h2 { color: #fff; }
.env-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  text-align: center;
}
.env-number__val {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.env-number__label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.env-number__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}
.env-impact__claim {
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2.5rem;
  text-align: center;
}
.env-impact__claim p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin-inline: auto;
}

/* ─── 15. VIDEO SECTION ──────────────────────────────────── */

.brand-video {
  background: var(--charcoal);
  padding: var(--section-v) 0;
  text-align: center;
}
.brand-video .section-label { color: var(--green-light); }
.brand-video h2 { color: #fff; margin-bottom: 2rem; }
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 820px;
  margin-inline: auto;
  background: #000;
}
.video-wrap .img-ph--wide {
  aspect-ratio: 16/7;
  border-radius: 0;
  font-size: 1rem;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-play__btn {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green-dark);
  transition: transform var(--t), background var(--t);
  padding-left: 4px;
}
.video-play:hover .video-play__btn {
  transform: scale(1.1);
  background: var(--green-light);
}

/* ─── 16. TESTIMONIALS ───────────────────────────────────── */

.testimonials {
  background: var(--sand);
  padding: var(--section-v) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--sand-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card__stars {
  color: var(--green);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-card__meta { flex: 1; }
.testimonial-card__name  { font-size: 0.875rem; font-weight: 700; display: block; }
.testimonial-card__loc   { font-size: 0.78rem; color: var(--mid-grey); }
.testimonial-card__source {
  font-size: 0.72rem;
  color: var(--mid-grey);
  white-space: nowrap;
}

/* ─── 17. AWARDS ─────────────────────────────────────────── */

.awards {
  background: var(--white);
  padding: var(--section-v) 0;
}
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 1.5rem 1.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 160px;
  transition: border-color var(--t), background var(--t), transform var(--t);
  cursor: default;
}
.award-item:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: translateY(-3px);
}
.award-item__icon {
  font-size: 1.8rem;
  line-height: 1;
}
.award-item__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
}
.award-item__detail {
  font-size: 0.72rem;
  color: var(--mid-grey);
}

/* ─── 18. USE CASE GUIDE ─────────────────────────────────── */

.use-case {
  background: var(--green-pale);
  padding: var(--section-v) 0;
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.use-case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  border: 1.5px solid rgba(148,178,0,.2);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform var(--t), box-shadow var(--t);
}
.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
}
.use-case-card--featured {
  border-color: var(--green);
}
.use-case-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.use-case-card__icon { font-size: 2.25rem; text-align: center; }
.use-case-card h3    { font-size: 1.1rem; text-align: center; }
.use-case-card__tag  { text-align: center; font-size: .8rem; color: var(--green-dark); font-weight: 600; }
.use-case-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  flex: 1;
}
.use-case-table tr { border-bottom: 1px solid #f4f4f4; }
.use-case-table tr:last-child { border-bottom: none; }
.use-case-table th {
  text-align: left;
  padding: 8px 8px 8px 0;
  width: 36%;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #aaa;
  vertical-align: top;
}
.use-case-table td {
  padding: 8px 0;
  color: var(--charcoal);
  line-height: 1.5;
  vertical-align: top;
}
.use-case-card .btn { text-align: center; width: 100%; margin-top: 0.5rem; }

/* ─── 19. STOCKIST CTA ───────────────────────────────────── */

.stockist-cta {
  background: var(--green);
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}
.stockist-cta::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -30%;
  width: 50%;
  height: 160%;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}
.stockist-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stockist-cta .section-label { color: rgba(255,255,255,.65); }
.stockist-cta h2 { color: #fff; }
.stockist-cta__sub { color: rgba(255,255,255,.78); font-size: 1rem; max-width: 420px; }

/* ─── 20. FOOTER ─────────────────────────────────────────── */

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
}
.footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem var(--pad-x);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
}
.footer-trust__item span:first-child { color: var(--green-light); }
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding: 3.5rem var(--pad-x) 2.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.footer-col__logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-col__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.footer-col p    { font-size: 0.83rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-col h4   { font-size: 0.72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.footer-col ul   { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t);
}
.footer-col li a:hover { color: var(--green-light); }
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.footer-social__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  transition: background var(--t), border-color var(--t), color var(--t);
}
.footer-social__link:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem var(--pad-x);
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--green-light); }

/* ─── 21. SHOP PAGE ──────────────────────────────────────── */

.shop-banner {
  background: linear-gradient(155deg, var(--ocean-deep) 0%, var(--ocean-mid) 60%, #2d8055 100%);
  padding: 5rem var(--pad-x) 4rem;
  text-align: center;
  color: #fff;
}
.shop-banner .section-label { color: var(--green-light); }
.shop-banner h1 { color: #fff; margin-bottom: 0.75rem; }
.shop-banner p  { color: rgba(255,255,255,.75); font-size: 1.05rem; }

.shop-body { padding: var(--section-v) 0; background: #fff; }
.shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.shop-bar__filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-pill {
  padding: 0.4em 1em;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
}
.filter-pill.active, .filter-pill:hover { border-color: var(--green); }
.shop-bar__sort {
  font-size: 0.82rem;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Shop product card variant (slightly larger) */
.shop-grid .product-card { border-radius: var(--radius-lg); }
.shop-grid .product-card__img-wrap .img-ph--product { min-height: 260px; }

/* ─── 22. ABOUT PAGE ─────────────────────────────────────── */

.about-banner {
  background: linear-gradient(155deg, var(--ocean-deep) 0%, var(--ocean-mid) 60%, #2d8055 100%);
  padding: 6rem var(--pad-x) 5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-banner .section-label { color: var(--green-light); }
.about-banner h1 { color: #fff; max-width: 660px; }
.about-banner p  { color: rgba(255,255,255,.75); max-width: 540px; margin-top: .75rem; font-size: 1.1rem; }

.founder-section {
  padding: var(--section-v) 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.founder-img { position: relative; }
.founder-img .img-ph {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--ocean-deep) 0%, #2d8055 100%);
  border-radius: var(--radius-lg);
}
.founder-img__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: var(--shadow-green);
}
.founder-content { display: flex; flex-direction: column; gap: 1.25rem; }
.founder-content h2 { margin-bottom: 0; }
.founder-content p  { color: var(--mid-grey); }
.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.founder-credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--charcoal);
}
.founder-credential__dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.about-impact {
  background: var(--green-pale);
  padding: var(--section-v) 0;
}
.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.about-impact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(148,178,0,.2);
}
.about-impact-card__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: .5rem;
}
.about-impact-card__label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .35rem;
}
.about-impact-card__desc { font-size: .78rem; color: var(--mid-grey); line-height: 1.5; }

.mission-section {
  padding: var(--section-v) 0;
  background: var(--white);
}
.mission-pull {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}
.mission-pull p {
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  max-width: 740px;
  margin-inline: auto;
}
.mission-pull cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  font-style: normal;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ─── 23. SCROLL ANIMATIONS ──────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ─── 24. RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main   { grid-template-columns: 1fr 1fr; }
  .shop-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .origin__grid     { grid-template-columns: 1fr; }
  .origin__image    { min-height: 320px; }
  .origin__image .img-ph--about { position: relative; min-height: 320px; height: 320px; }
  .env-numbers      { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .use-case-grid    { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .stockist-cta__inner { flex-direction: column; text-align: center; }
  .founder-grid     { grid-template-columns: 1fr; }
  .founder-img      { max-width: 380px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: block; }
  .nav__cta    { display: none; }

  .topbar__inner { gap: 0.75rem; font-size: 0.72rem; }

  .impact-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .impact-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
  .impact-stat:nth-child(even) { border-left: 1px solid rgba(255,255,255,.18); }
  .impact-stat:nth-last-child(-n+2) { border-bottom: none; }

  .benefits-grid    { grid-template-columns: 1fr; }
  .farmers-grid     { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .awards-grid      { gap: 0.75rem; }
  .award-item       { min-width: 130px; }
  .products-grid    { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .shop-grid        { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .footer-main      { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-trust     { gap: 1.25rem; }
  .about-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__scroll     { display: none; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .impact-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.2rem; }
  .about-impact-grid { grid-template-columns: 1fr; }
}

/* ─── 25. PRINT ──────────────────────────────────────────── */
@media print {
  .topbar, .site-header, .site-footer,
  .stockist-cta, .brand-video, .hero__scroll { display: none !important; }
  body { font-size: 11pt; }
}

/* ─── 26. SVG ICON UTILITY ───────────────────────────────── */

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Scale SVGs inside semantic icon containers */
.benefit-card__icon svg,
.benefit-card__icon .icon {
  width: 28px;
  height: 28px;
  color: var(--green-dark);
  stroke: var(--green-dark);
}
.award-item__icon svg,
.award-item__icon .icon {
  width: 30px;
  height: 30px;
  color: var(--green);
  stroke: var(--green);
}
.use-case-card__icon svg,
.use-case-card__icon .icon {
  width: 40px;
  height: 40px;
  color: var(--green);
  stroke: var(--green);
}
.footer-trust__item svg,
.footer-trust__item .icon {
  width: 16px;
  height: 16px;
  color: var(--green);
  stroke: var(--green);
  margin-right: .25rem;
  vertical-align: -3px;
  flex-shrink: 0;
}
.topbar svg,
.topbar .icon {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-right: 2px;
}
/* Mobile close button */
.nav__mobile-close svg { width: 18px; height: 18px; display: block; }

/* ─── 27. WHATSAPP FLOAT ORDER BUTTON ────────────────────── */

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: none;
}
.wa-float.visible { display: block; }
.wa-float__btn {
  position: relative;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .8rem 1.35rem .8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.wa-float__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .65);
}
.wa-float__btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}
.wa-float__badge {
  position: absolute;
  top: -7px;
  right: -7px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  border: 2px solid #fff;
  pointer-events: none;
}

/* Stories page — blog listing */
.stories-hero {
  background: var(--charcoal);
  color: #fff;
  padding: 6rem 0 4rem;
  text-align: center;
}
.stories-hero h1 { color: #fff; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: var(--section-v) 0;
}
.story-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.story-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-green); }
.story-card__img { aspect-ratio: 16/9; }
.story-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.story-card__tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-dark);
}
.story-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
}
.story-card__excerpt {
  font-size: .85rem;
  color: var(--mid-grey);
  line-height: 1.6;
  flex: 1;
}
.story-card__meta {
  font-size: .75rem;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: .75rem;
  border-top: 1px solid #f0f0f0;
  margin-top: .5rem;
}
.story-card__read {
  margin-top: auto;
  padding: .6rem 1.25rem;
  font-size: .8rem;
}

/* Admin panel */
.admin-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background: #f4f6f8;
  font-family: var(--font);
}
.admin-sidebar {
  background: var(--charcoal);
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.admin-sidebar__logo {
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.admin-sidebar__logo-mark {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem; color: #fff;
}
.admin-sidebar__name { font-weight: 700; font-size: .9rem; }
.admin-sidebar__sub  { font-size: .7rem; opacity: .5; }
.admin-nav { flex: 1; padding: 1rem 0; }
.admin-nav__section { padding: .5rem 1.25rem .25rem; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .4; }
.admin-nav__link {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem 1.25rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .85rem;
  transition: background .15s, color .15s;
  border-radius: 0;
}
.admin-nav__link:hover,
.admin-nav__link.active {
  background: rgba(148,178,0,.15);
  color: var(--green-light);
}
.admin-nav__link svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .7; }
.admin-nav__link.active svg { opacity: 1; }
.admin-main { padding: 2rem 2.5rem; overflow-y: auto; }
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.admin-topbar h1 { font-size: 1.5rem; font-weight: 800; color: var(--black); }
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.admin-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e2e8f0;
  display: flex; flex-direction: column; gap: .4rem;
}
.admin-stat-card__label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--mid-grey); }
.admin-stat-card__value { font-size: 1.8rem; font-weight: 800; color: var(--black); line-height: 1; }
.admin-stat-card__change { font-size: .75rem; color: #22c55e; font-weight: 600; }
.admin-stat-card__change--down { color: #ef4444; }
.admin-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.admin-card__head {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-card__head h2 { font-size: 1rem; font-weight: 700; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.admin-table th {
  background: #f8fafc;
  padding: .65rem 1rem;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mid-grey);
  border-bottom: 1px solid #e2e8f0;
}
.admin-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f8fafc; }
.badge {
  display: inline-flex; align-items: center;
  padding: .2rem .6rem;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
}
.badge--green  { background: #dcfce7; color: #15803d; }
.badge--orange { background: #fef3c7; color: #92400e; }
.badge--grey   { background: #f1f5f9; color: #475569; }
.badge--red    { background: #fee2e2; color: #b91c1c; }
.badge--blue   { background: #dbeafe; color: #1d4ed8; }
.admin-btn { padding: .4rem .85rem; border-radius: 8px; font-size: .78rem; font-weight: 600; cursor: pointer; border: 1.5px solid transparent; transition: background .15s; }
.admin-btn--primary { background: var(--green); color: #fff; border-color: var(--green); }
.admin-btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.admin-btn--outline { background: transparent; color: var(--black); border-color: #d1d5db; }
.admin-btn--outline:hover { background: #f9fafb; }
.admin-btn--danger { background: #fee2e2; color: #b91c1c; border-color: #fecaca; }
.admin-settings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.admin-setting-card { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; padding: 1.5rem; }
.admin-setting-card h3 { font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
.admin-field { margin-bottom: 1rem; }
.admin-field label { display: block; font-size: .78rem; font-weight: 600; color: var(--mid-grey); margin-bottom: .35rem; }
.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: .55rem .85rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-family: var(--font);
  font-size: .85rem;
  color: var(--black);
  background: #fff;
  transition: border-color .15s;
  box-sizing: border-box;
}
.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
  outline: none;
  border-color: var(--green);
}
.admin-field textarea { min-height: 80px; resize: vertical; }

@media (max-width: 768px) {
  .wa-float { bottom: 1rem; right: 1rem; }
  .wa-float__btn { font-size: .8rem; padding: .7rem 1rem .7rem .9rem; }
  .stories-grid { grid-template-columns: 1fr; }
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-settings-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   28. MEDIA LIBRARY (admin)
═══════════════════════════════════════════════════════════ */

.media-upload-zone {
  border: 2px dashed #d0dbe8;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: #fafbfc;
}
.media-upload-zone:hover,
.media-upload-zone.dragover {
  border-color: #94B200;
  background: #f5fadf;
}

.media-preset-selector {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
}
.media-preset-btn {
  padding: .38rem .9rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid #d8e0e8;
  background: #fff;
  color: #2d3748;
  transition: all .15s;
}
.media-preset-btn:hover  { border-color: #94B200; color: #5a7200; }
.media-preset-btn.active { border-color: #94B200; background: #eff7cf; color: #5a7200; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.media-card {
  background: #fff;
  border: 1.5px solid #e9eef4;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}
.media-card:hover { border-color: #94B200; box-shadow: 0 4px 16px rgba(148,178,0,.15); }
.media-card--picker:hover { border-color: #94B200; }
.media-card__preview {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8fafc;
}
.media-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-card__info {
  padding: .5rem .6rem .25rem;
}
.media-card__name {
  font-size: .72rem;
  font-weight: 600;
  color: #2d3748;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-card__meta {
  font-size: .68rem;
  color: #8a9aac;
}
.media-card__actions {
  padding: .4rem .6rem .6rem;
  display: flex;
  gap: .35rem;
}

.img-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: .75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e9eef4;
}
.img-compare__panel {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.img-compare__label {
  font-size: .72rem;
  font-weight: 600;
  color: #5a6a7a;
}
.img-compare__panel img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  max-height: 200px;
  background: #eee;
}

/* ═══════════════════════════════════════════════════════════
   28b. SECTION IMAGE + OVERLAY LAYERS (admin-controlled)
═══════════════════════════════════════════════════════════ */

/* Background image layer — sits behind overlay */
.sc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Colour overlay layer */
.sc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
/* Sections that now host bg + overlay layers */
.shop-banner,
.about-banner,
.stories-hero,
.stores-hero,
.stockist-hero {
  position: relative;
  overflow: hidden;
}
/* Push section content above the overlay layers */
.shop-banner    > :not(.sc-bg):not(.sc-overlay),
.about-banner   > :not(.sc-bg):not(.sc-overlay),
.stories-hero   > :not(.sc-bg):not(.sc-overlay),
.stores-hero    > :not(.sc-bg):not(.sc-overlay),
.stockist-hero  > :not(.sc-bg):not(.sc-overlay) {
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   29. STOCKIST / STORES PAGE (public)
═══════════════════════════════════════════════════════════ */

.stores-hero {
  background: linear-gradient(155deg, #2D4A00 0%, #5a7200 50%, #94B200 100%);
  padding: 5rem var(--pad-x) 4rem;
  text-align: center;
  color: #fff;
}
.stores-hero .section-label { color: rgba(255,255,255,.7); }
.stores-hero h1 { color: #fff; margin-bottom: .75rem; }
.stores-hero p  { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 540px; margin-inline: auto; }

.stores-filter {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: .85rem var(--pad-x);
  position: sticky;
  top: 68px;
  z-index: 10;
}
.stores-filter .container { display: flex; gap: .5rem; flex-wrap: wrap; }

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.store-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: transform var(--t), box-shadow var(--t);
}
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}
.store-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
}
.store-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}
.store-card__type {
  display: inline-flex;
  align-items: center;
  padding: .18rem .65rem;
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: capitalize;
  background: #dbeafe;
  color: #1d4ed8;
  white-space: nowrap;
  flex-shrink: 0;
}
.store-card__address,
.store-card__phone,
.store-card__hours {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .82rem;
  color: var(--mid-grey);
  line-height: 1.45;
}
.store-card__address svg,
.store-card__phone svg,
.store-card__hours svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: var(--green);
}
.store-card__featured-badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: .15rem .55rem;
  border-radius: 50px;
  align-self: flex-start;
}

.stores-map {
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  margin-top: 0;
}
#stores-leaflet-map {
  height: 100%;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   30. BECOME A STOCKIST PAGE
═══════════════════════════════════════════════════════════ */

.stockist-hero {
  background: linear-gradient(155deg, #0C3D2A 0%, #165C3E 50%, #2d7a50 100%);
  padding: 5.5rem var(--pad-x) 4.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stockist-hero::before {
  content: '';
  position: absolute;
  right: -8%;
  top: -30%;
  width: 45%;
  height: 160%;
  background: rgba(148,178,0,.07);
  border-radius: 50%;
  pointer-events: none;
}
.stockist-hero .section-label { color: var(--green-light); }
.stockist-hero h1 { color: #fff; margin-bottom: .75rem; max-width: 700px; margin-inline: auto; }
.stockist-hero p  { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 540px; margin-inline: auto; }

.stockist-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stockist-benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transition: transform var(--t), box-shadow var(--t);
}
.stockist-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}
.stockist-benefit-card__icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stockist-benefit-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stockist-benefit-card h3 { font-size: 1.05rem; margin: 0; }
.stockist-benefit-card p  { font-size: .875rem; color: var(--mid-grey); margin: 0; }

.stockist-form-section {
  max-width: 680px;
  margin-inline: auto;
  padding: var(--section-v) var(--pad-x);
}
.stockist-form-section h2 {
  margin-bottom: .5rem;
  text-align: center;
}
.stockist-form-section .section-label {
  display: block;
  text-align: center;
  margin-bottom: .35rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.form-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: .7rem 1rem;
  border: 1.5px solid #d8e0e8;
  border-radius: 10px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--black);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(148,178,0,.12);
}
.form-field textarea { min-height: 90px; resize: vertical; }

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

.wa-submit-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  background: #25D366;
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  margin-top: 1.5rem;
}
.wa-submit-btn:hover {
  background: #1ebe5e;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.wa-submit-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.stockist-cta-banner {
  background: var(--green-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem var(--pad-x);
  text-align: center;
}
.stockist-cta-banner h3  { margin-bottom: .5rem; }
.stockist-cta-banner p   { color: var(--mid-grey); margin-bottom: 1.25rem; font-size: .95rem; }

@media (max-width: 900px) {
  .stores-grid           { grid-template-columns: repeat(2, 1fr); }
  .stockist-benefits     { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .stores-grid           { grid-template-columns: 1fr; }
  .form-grid-2           { grid-template-columns: 1fr; }
  .stores-map            { height: 300px; }
}

/* ─── 31. IMAGE PICKER FIELD (admin forms) ──────────────── */

.image-picker-field {
  border: 1px solid var(--adm-border, #2a3145);
  border-radius: 8px;
  padding: .75rem;
  background: var(--adm-input-bg, #1a2035);
}
.image-picker-preview {
  width: 100%;
  max-height: 180px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: .5rem;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-picker-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.image-picker-placeholder {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a9aac;
  font-size: .85rem;
  border: 2px dashed #2a3145;
  border-radius: 6px;
  margin-bottom: .5rem;
}

/* ═══════════════════════════════════════════════════════════
   ADMIN — Section Image Editor UI
═══════════════════════════════════════════════════════════ */

.sc-editor-row {
  border-bottom: 1px solid #f0f4f8;
}
.sc-editor-row:last-child { border-bottom: none; }
.sc-editor-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background .15s;
}
.sc-editor-row__head:hover { background: #fafbfc; }
.sc-chevron { transition: transform .2s; flex-shrink: 0; stroke: #8a9aac; }
.sc-editor-body {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid #f0f4f8;
  background: #fafbfc;
}

.sc-preview-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-img-preview {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 10px;
  border: 1.5px solid #d1d9e0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sc-live-preview {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid #d1d9e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-live-preview__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a3a2a;
}
.sc-live-preview__overlay {
  position: absolute;
  inset: 0;
}
.sc-live-preview__label {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
