/* ============================================================
   SIMOYO NATURES — Hero Slider & Premium Overrides
   Replaces generic AI-look with editorial FMCG design
   ============================================================ */

/* ── HERO SLIDER (FMN-style fullscreen) ──────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 480px;
  overflow: hidden;
  background: #0d3318;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
}

.hero-slider .slide.active { opacity: 1; z-index: 2; }
.hero-slider .slide.prev   { opacity: 0; z-index: 1; }

/* Subtle gradient at bottom for CTA readability */
.hero-slider .slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
}

.slide-cta {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-arrow:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Slider Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot.active {
  background: #fff;
  width: 28px;
}

/* ── SECTION EYEBROW CENTERED VARIANT ──────────────────────── */
.section-eyebrow--center {
  justify-content: center;
  width: 100%;
}
.section-eyebrow--center::before { display: none; }
.section-eyebrow--white { color: rgba(255,255,255,0.65); }
.section-eyebrow--white::before { background: rgba(255,255,255,0.5); }

/* Slide progress bar */
.slide-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 25;
  animation: slideProgress 5s linear forwards;
}
@keyframes slideProgress { from { width: 0; } to { width: 100%; } }


/* ── SECTION HEADERS PREMIUM ─────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-12);
  gap: var(--space-6);
  flex-wrap: wrap;
}
.section-header__left {}
.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-brand);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--text-brand);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}
.section-headline em { font-style: normal; color: var(--text-brand); }

/* .section-eyebrow display:flex is already set in the definition above */

/* ══ OUR STORY — DARK SECTION ════════════════════════════════ */
.story-dark {
  background: #0a1a0e;
  padding: var(--space-24) 0;
  overflow: hidden;
}
.story-dark__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

/* ── Image cards (overlapping) ── */
.story-dark__visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-img-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.story-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.story-img-card--back {
  width: 62%;
  aspect-ratio: 3/4;
  top: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 1;
  filter: brightness(0.75);
}
.story-img-card--front {
  width: 70%;
  aspect-ratio: 3/4;
  bottom: 0;
  right: 0;
  z-index: 2;
  transform: rotate(2deg);
}

/* Caption badge on front card */
.story-img-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(10,26,14,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-img-caption__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.story-img-caption__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}
.story-img-caption__sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* ── Content ── */
.story-dark__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
}
.story-dark__eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0;
}
.story-dark__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.story-dark__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
}
.story-dark__headline em { color: var(--accent); font-style: normal; }
.story-dark__body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ── Stat rows ── */
.story-dark__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-6);
}
.story-dark__stat {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.story-dark__stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.story-dark__stat-num {
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.story-dark__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .story-dark__grid { grid-template-columns: 1fr; }
  .story-dark__visual { min-height: 380px; }
}

/* ══ ABOUT SIMOYO SECTION ════════════════════════════════════ */
.about-simoyo-section {
  background: var(--cream);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}
/* Subtle radial green glow behind the circle */
.about-simoyo-section::before {
  content: '';
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(30,107,49,.07) 0%, transparent 68%);
  pointer-events: none;
}

/* ── Layout ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

/* ── Visual / circular image ── */
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12);
  min-height: 500px;
}
.about-circle {
  width: min(420px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  /* Double-ring effect like FMN */
  box-shadow:
    0 0 0 10px rgba(255,255,255,.75),
    0 0 0 20px rgba(30,107,49,.10),
    0 32px 80px rgba(0,0,0,.14);
}
.about-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-circle:hover img { transform: scale(1.04); }

/* ── Floating product accents ── */
.about-deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.about-deco--tr {
  top: 12%;
  right: 12%;
  width: 120px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.18));
  animation: floatDeco1 4s ease-in-out infinite;
}
.about-deco--bl {
  bottom: 10px;
  left: -10px;
  width: 140px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.18));
  animation: floatDeco2 5s ease-in-out infinite;
}
.about-deco--br {
  bottom: 15px;
  right: 0;
  width: 110px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.18));
  animation: floatDeco3 4.5s ease-in-out infinite;
}
@keyframes floatDeco1 {
  0%,100% { transform: rotate(8deg) translateY(0); }
  50%      { transform: rotate(8deg) translateY(-10px); }
}
@keyframes floatDeco2 {
  0%,100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-12deg) translateY(-8px); }
}
@keyframes floatDeco3 {
  0%,100% { transform: rotate(5deg) translateY(0); }
  50%      { transform: rotate(5deg) translateY(-12px); }
}

/* ── Text content ── */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
  max-width: 540px;
}
.about-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-brand);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0;
}
.about-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--text-brand);
  border-radius: 2px;
  flex-shrink: 0;
}
.about-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
}
.about-headline em { color: var(--text-brand); font-style: normal; }
.about-body {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: var(--text-secondary);
  margin: 0;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}
[data-theme="dark"] .about-badge {
  background: rgba(74,140,42,0.15);
  border-color: rgba(74,140,42,0.3);
  color: #9dbaa0;
}

/* ── WHY CARDS PREMIUM ──────────────────────────────────── */
.why-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.why-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--green-500), var(--green-700));
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(30,107,49,0.12);
  border-color: var(--green-300);
}
.why-item:hover::before { opacity: 1; }

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(30,107,49,0.30);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-item:hover .why-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(30,107,49,0.40);
}
.why-item__body { flex: 1; min-width: 0; }
.why-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.why-desc {
  font-size: 0.8125rem;
  line-height: 1.68;
  color: var(--text-secondary);
  margin: 0;
}

/* ── PRODUCT CARDS PREMIUM ──────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-8);
}
.prod-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
}
.prod-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.prod-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--green-50);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.prod-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prod-card:hover .prod-card__img { transform: scale(1.05); }
.prod-card__img-placeholder { font-size: 5rem; }
.prod-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}
.prod-card__body { padding: 24px; }
.prod-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.prod-card__name { font-size: 1.125rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; line-height: 1.3; }
.prod-card__desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-card__foot {
  padding: 16px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.prod-card__price { font-weight: 800; font-size: 1.0625rem; color: var(--primary); }
.prod-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.prod-card__link:hover { gap: 8px; }


/* ── PRODUCT SHOWCASE (Clean horizontal card) ────────────── */
.prod-showcase {
  background: var(--green-900);
  /* Extra vertical padding gives the overflowing image breathing room */
  padding: calc(var(--space-20) + 5rem) 0;
}
.prod-showcase__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}
/* Header text is always white — section bg is always dark green */
.prod-showcase .section-eyebrow       { color: rgba(255,255,255,0.7); }
.prod-showcase .section-eyebrow::before { background: rgba(255,255,255,0.7); }
.prod-showcase .section-headline      { color: #ffffff; }
.prod-showcase .section-headline em   { color: var(--accent); }
.prod-showcase .btn--outline {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}
.prod-showcase .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* The feature card: image left, content right */
.prod-showcase__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 0;
  overflow: visible;
  min-height: 200px;
  /* No shadow — uniform flat card */
}

/* Left: image panel — same flat bg as content panel */
.prod-showcase__img-panel {
  background: #0f1f13;
  border-radius: 20px 0 0 20px;
  position: relative;
  overflow: visible;
}
/* Image is absolutely centered — taller than the card so it overflows top & bottom */
.prod-showcase__img-panel img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: auto;
  max-width: 90%;
  height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.55));
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.prod-showcase__img-panel img.fading {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
}

/* Right: content panel */
.prod-showcase__content {
  background: #0f1f13;
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) var(--space-10);
  border-left: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.prod-showcase__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.prod-showcase__name {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.prod-showcase__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
  margin-bottom: var(--space-6);
  max-width: 400px;
}
.prod-showcase__footer {
  display: flex;
  align-items: center;
}
.prod-showcase__nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
}
.prod-showcase__counter {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  min-width: 36px;
  text-align: center;
}
#showcase-current { color: rgba(255,255,255,0.8); }
.showcase-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.showcase-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .prod-showcase { padding: calc(var(--space-12) + 3rem) 0; }
  .prod-showcase__card { grid-template-columns: 1fr; }
  .prod-showcase__img-panel {
    border-radius: 20px 20px 0 0;
    min-height: 220px;
  }
  .prod-showcase__img-panel img { height: 260px; }
  .prod-showcase__content {
    border-radius: 0 0 20px 20px;
    padding: var(--space-8) var(--space-6);
  }
}

/* ── STORY SECTION ───────────────────────────────────────── */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: stretch;
}
.story-visual {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
}
/* Only dim if there's a direct img child (old single-image layout) */
.story-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: transform 0.6s ease;
}
.story-section:hover .story-visual > img { transform: scale(1.04); }
/* Collage images should show at full brightness */
.story-collage img { opacity: 1; }
/* Overlay only applies when there's no collage */
.story-visual:not(:has(.story-collage)) .story-visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(13,51,24,0.8), rgba(30,107,49,0.4));
}
/* When collage exists, keep a very subtle vignette */
.story-visual:has(.story-collage) .story-visual__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.story-content {
  padding: var(--space-20) var(--space-16);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--text-brand);
  line-height: 1.3;
  margin-bottom: var(--space-6);
}
.story-body { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: var(--space-8); }
.story-sig { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-8); }
.story-sig-line { width: 40px; height: 2px; background: var(--accent); }
.story-sig-name { font-weight: 600; font-size: 0.875rem; color: var(--text-primary); }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: var(--space-12) 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-block {
  padding: var(--space-8);
  text-align: center;
  background: var(--primary);
}
.stat-block__num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-block__label { font-size: 0.875rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ── TESTIMONIALS PREMIUM ────────────────────────────────── */
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: var(--space-8);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testi-card__quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--green-100);
  font-family: Georgia, serif;
  font-weight: 900;
  position: absolute;
  top: 16px; right: 24px;
}
[data-theme="dark"] .testi-card__quote { color: rgba(255,255,255,0.06); }
.testi-card__stars { display: flex; gap: 3px; color: var(--accent); font-size: 0.875rem; margin-bottom: var(--space-4); }
.testi-card__text { font-size: 0.9375rem; line-height: 1.78; color: var(--text-secondary); flex: 1; margin-bottom: var(--space-6); }
.testi-card__author { display: flex; align-items: center; gap: var(--space-4); }
.testi-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-800));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-card__name { font-weight: 700; font-size: 0.9375rem; color: var(--text-primary); }
.testi-card__loc { font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; }

/* ── NEWSLETTER SECTION ──────────────────────────────────── */
.newsletter-section {
  background: var(--green-900);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating card */
.nl-card {
  background: #0f1f13;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: var(--space-16) var(--space-16);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.nl-card .section-eyebrow { color: rgba(255,255,255,0.6); }
.nl-card .section-eyebrow::before { background: rgba(255,255,255,0.6); }
.nl-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: var(--space-4) 0 var(--space-5);
}
.nl-card__sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.72;
  margin-bottom: var(--space-10);
}
.nl-card__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  margin-top: var(--space-5);
}
.nl-card__disclaimer a { color: rgba(255,255,255,0.48); text-decoration: underline; }

/* Stacked form */
.nl-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.nl-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.nl-input::placeholder { color: rgba(255,255,255,0.32); }
.nl-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,197,24,0.15); }
.nl-btn {
  width: 100%;
  padding: 14px 20px;
  background: var(--accent);
  color: #0a1e0d;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nl-btn:hover { background: #d4a600; transform: translateY(-2px); }
.nl-card__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  margin-top: var(--space-6);
}
.nl-card__disclaimer a { color: rgba(255,255,255,0.48); text-decoration: underline; }
@media (max-width: 640px) {
  .nl-card { padding: var(--space-12) var(--space-6); border-radius: 16px; }
}

/* ── DISTRIBUTOR CTA PREMIUM ─────────────────────────────── */
.dist-banner {
  background: var(--green-50);
  border: 2px solid var(--green-100);
  border-radius: 24px;
  padding: var(--space-16) var(--space-12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
  align-items: center;
  overflow: hidden;
  position: relative;
}
.dist-banner::after {
  content: '🤝';
  position: absolute;
  right: 280px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.08;
}
.dist-banner__title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--text-primary); margin-bottom: var(--space-2); }
.dist-banner__text { color: var(--text-secondary); }

/* ── MOBILE RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .story-section { grid-template-columns: 1fr; }
  .story-visual { height: 380px; }
  .story-content { padding: var(--space-12) var(--space-8); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .dist-banner { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: var(--space-10); }
  .about-visual { min-height: 360px; padding: var(--space-8); }
  .about-circle { width: min(340px, 80vw); }
  .about-content { max-width: 100%; }
}
@media (max-width: 768px) {
  /* Hide announcement bar on mobile */
  .announcement-bar { display: none; }

  /* Header sits at the very top now (no bar above it) */
  .site-header.at-slider { top: 0; }

  /* Ensure no cream background bleeds through at the very top */
  html, body { background-color: #0d3318; }

  /* Reset hero height — no need to subtract 38px bar; use plain viewport height */
  .hero-slider { height: 75vh; min-height: 420px; }
  .slider-arrow { width: 44px; height: 44px; font-size: 1.25rem; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .nl-form { flex-direction: column; }
  .dist-banner { padding: var(--space-10) var(--space-6); text-align: center; }
  .dist-banner__actions { justify-content: center; display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-5); }
  .why-grid-2 { grid-template-columns: 1fr; }
  .story-dark__content .btn, .about-content .btn { width: 100%; justify-content: center; }

  /* ── Mobile-specific hero backgrounds (portrait images) ──── */
  /* Override the inline style with higher-specificity selectors */
  .hero-slider .slide--1 {
    background-image: url('../../images/simoyo-hero-mobile-bg-2.webp') !important;
    background-position: center top;
  }
  .hero-slider .slide--2 {
    background-image: url('../../images/simoyo-hero-mobile-bg-3.webp') !important;
    background-position: center top;
  }
  /* Slides 3 & 4 cycle the two portrait images in reverse for variety */
  .hero-slider .slide--3 {
    background-image: url('../../images/simoyo-hero-mobile-bg-3.webp') !important;
    background-position: center center;
  }
  .hero-slider .slide--4 {
    background-image: url('../../images/simoyo-hero-mobile-bg-2.webp') !important;
    background-position: center center;
  }
}

/* ══ DISTRIBUTOR SPLIT-SCREEN ════════════════════════════════ */
.dist-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  width: 100%;
}

/* Left: green content panel */
.dist-split__content {
  background: #0f2714;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
  position: relative;
  overflow: hidden;
}
/* Decorative radial glow */
.dist-split__content::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,140,42,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.dist-split__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.dist-split__rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: -var(--space-2);
}
.dist-split__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}
.dist-split__headline em {
  color: var(--accent);
  font-style: normal;
}
.dist-split__body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin: 0;
  max-width: 42ch;
}

/* CTA button — outlined with play icon, Eagle Flour style */
.dist-split__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.5);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: var(--space-2);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.dist-split__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0f2714;
}
.dist-split__btn svg { flex-shrink: 0; }

/* Right: full-bleed photo */
.dist-split__photo {
  position: relative;
  overflow: hidden;
}
.dist-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .dist-split {
    grid-template-columns: 1fr;
  }
  .dist-split__photo {
    height: 300px;
    order: -1;
  }
  .dist-split__content {
    padding: var(--space-10) var(--space-6);
  }
}
