/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── SCROLL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.94);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .08s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .16s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .24s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: .32s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: .40s; }

/* counter number count-up */
.count-up { display: inline-block; }

/* ─── HERO ENTRANCE ───────────────────────────────────── */
.hero-content {
  animation: heroSlideUp .7s cubic-bezier(.22,1,.36,1) both;
  animation-delay: .1s;
}
.hero-image-wrap {
  animation: heroSlideUp .7s cubic-bezier(.22,1,.36,1) both;
  animation-delay: .28s;
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-pill {
  animation: heroPop .5s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: .05s;
}
@keyframes heroPop {
  from { opacity: 0; transform: scale(.8); }
  to   { opacity: 1; transform: scale(1); }
}
body {
  font-family: 'DM Sans', sans-serif;
  background: #FAFAF6;
  color: #1C2B1A;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --green-deep:  #1A4D2E;
  --green-mid:   #2D6A4F;
  --green-light: #7AB648;
  --cream:       #F5F2EB;
  --warm-white:  #FAFAF6;
  --text-dark:   #1C2B1A;
  --text-muted:  #5A6B58;
  --border:      rgba(26,77,46,.12);
  --shadow-sm:   0 2px 12px rgba(26,77,46,.08);
  --shadow-md:   0 8px 32px rgba(26,77,46,.14);
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
}

/* ─── UTILITIES ───────────────────────────────────────── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  border-radius: 50px; cursor: pointer; transition: all .22s ease;
  border: none; white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--green-deep); color: #fff;
}
.products-track .added_to_cart.wc-forward { display: none !important; }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn-outline:hover { background: var(--green-deep); color: #fff; }
.btn-white {
  background: #fff; color: var(--green-deep);
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-light);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700; line-height: 1.15;
  color: var(--green-deep);
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  background: var(--green-deep);
  position: relative; overflow: hidden;
  padding: 56px 20px 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 80% 20%, rgba(122,182,72,.18) 0%, transparent 60%),
              radial-gradient(ellipse 50% 60% at 10% 90%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}
/* Dotted texture */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1140px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 40px; text-align: center;
}
.hero-content { max-width: 560px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(122,182,72,.18); border: 1px solid rgba(122,182,72,.3);
  color: #a8d87e; border-radius: 50px;
  padding: 6px 14px; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-pill span { width: 6px; height: 6px; background: var(--green-light); border-radius: 50%; display: inline-block; }
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 9vw, 72px);
  font-weight: 900; line-height: 0.96;
  color: #fff; margin-bottom: 16px;
  text-wrap: balance;
}
.hero-heading
{
  margin-top: 10px;
}
.hero-heading em { color: var(--green-light); font-style: normal; }
.hero-subtext {
  font-size: clamp(15px, 2.5vw, 18px); font-weight: 300;
  color: rgba(255,255,255,.72); line-height: 1.6;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 28px; margin-bottom: 40px;
}
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px; padding: 8px 16px;
  font-size: 13px; color: rgba(255,255,255,.85); font-weight: 400;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--green-light); flex-shrink: 0; }
.hero-image-wrap {
  width: 100%; max-width: 480px;
  position: relative;
}
.hero-image-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 32px 24px 0;
  display: flex; justify-content: center;
  overflow: hidden;
}
.hero-image-card img {
  width: 100%; max-width: 380px;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
}
/* placeholder for hero image */
.hero-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(122,182,72,.15) 0%, rgba(255,255,255,.05) 100%);
  border-radius: 16px 16px 0 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.hero-img-placeholder svg { width: 64px; height: 64px; opacity: .3; }
.hero-img-placeholder span { font-size: 12px; color: rgba(255,255,255,.4); font-family: monospace; }

/* ─── TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 20px;
}
.trust-bar-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
  align-items: center; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text-dark);
}
.trust-item svg { width: 18px; height: 18px; color: var(--green-deep); flex-shrink: 0; }

/* ─── PRODUCTS ────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-label { margin-bottom: 10px; }
.section-header .section-title { margin-bottom: 14px; }
.section-header p { font-size: 16px; color: var(--text-muted); max-width: 480px; margin: 0 auto; line-height: 1.6; }

/* Horizontal scroll on mobile */
/* Swiper */
.products-swiper {
  position: relative;
  padding: 8px 20px 34px;
}
.products-track.swiper-wrapper { padding: 4px 0; }
.products-swiper .swiper-slide { height: auto; }
.products-swiper .swiper-slide > .product-card { height: 100%; }

.products-swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.products-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: .28;
  background: var(--green-deep);
}
.products-swiper-pagination .swiper-pagination-bullet-active { opacity: .85; }
.product-card {
  flex: 0 0 calc(100vw - 64px);
  width: 100;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s, transform .22s;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card-img {
  width: 100%; height: 160px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
  background: repeating-linear-gradient(45deg, var(--cream) 0, var(--cream) 6px, rgba(26,77,46,.04) 6px, rgba(26,77,46,.04) 12px);
}
.product-img-ph span { font-size: 10px; font-family: monospace; color: var(--text-muted); text-align: center; padding: 0 8px; }
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card-category { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green-light); }
.product-card-name { font-size: 15px; font-weight: 600; color: var(--green-deep); }
.product-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.4; flex: 1; }
.product-card-price { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-top: auto; }
.product-card-price small { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.product-card-price .product-daily { font: inherit; color: inherit; }
.products-track .product-card { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.products-track .product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.products-track .product-card-body { gap: 6px; }
.products-track .product-card-name { line-height: 1.3; }
.products-track .product-card-price { font-family: 'Playfair Display', serif; font-size: 22px; }
.product-card-footer { padding: 0 16px 16px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.product-card-footer .btn { justify-content: center; }
.add-to-cart { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--green-deep); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.add-to-cart svg { width: 18px; height: 18px; }
.products-track .product-card-empty { min-height: 220px; justify-content: center; }
.products-track .product-card-empty .product-card-body { justify-content: center; align-items: center; text-align: center; gap: 10px; }

/* =======================================================
   Fully-clickable product card (stretch-link pattern)
   ======================================================= */
.product-card-name a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}

/* Keep interactive elements above the overlay */
.product-card .add-to-cart,
.product-card .btn,
.product-card .btn-primary {
  position: relative;
  z-index: 1;
}

/* ─── WHY WEEKLY ─────────────────────────────────────── */
.why-section { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.why-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.why-card-icon {
  width: 48px; height: 48px;
  background: rgba(26,77,46,.06); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.why-card-icon svg { width: 24px; height: 24px; color: var(--green-deep); }
.why-card h3 { font-size: 16px; font-weight: 600; color: var(--green-deep); }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how-steps {
  display: flex; flex-direction: column;
  gap: 0;
  max-width: 600px; margin: 0 auto;
}
.how-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 0 0 36px;
  position: relative;
}
.how-step:last-child { padding-bottom: 0; }
.how-step-line {
  position: absolute; left: 19px; top: 44px;
  width: 2px; bottom: 0;
  background: linear-gradient(to bottom, var(--green-light), transparent);
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.how-step:last-child .how-step-line { display: none; }
.how-step-num {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--green-deep); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; position: relative; z-index: 1;
  transform: scale(.75);
  opacity: .2;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
}
.how-step-content h3 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.how-step-content p { font-size: 15px; color: var(--text-muted); line-height: 1.55; }
.how-step-icon {
  width: 36px; height: 36px; background: rgba(26,77,46,.06);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.how-step-icon svg { width: 18px; height: 18px; color: var(--green-deep); }

/* ─── BOX CONTENTS ───────────────────────────────────── */
.box-section { background: var(--green-deep); position: relative; overflow: hidden; }
.box-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(122,182,72,.12) 0%, transparent 60%);
  pointer-events: none;
}
.box-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 40px;
}
.box-section .section-label { color: var(--green-light); }
.box-section .section-title { color: #fff; }
.box-list { display: flex; flex-direction: column; gap: 14px; }
.box-list-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  font-size: 16px; font-weight: 500; color: #fff;
}
.box-list-item svg { width: 20px; height: 20px; color: var(--green-light); flex-shrink: 0; }
.box-image-wrap {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.box-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.box-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 6px, rgba(255,255,255,.05) 6px, rgba(255,255,255,.05) 12px);
}
.box-img-ph svg { width: 48px; height: 48px; opacity: .25; color: #fff; }
.box-img-ph span { font-size: 11px; font-family: monospace; color: rgba(255,255,255,.35); }

/* ─── TRUST ──────────────────────────────────────────── */
.trust-section { background: var(--warm-white); }
.trust-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 5vw, 36px); font-weight: 700;
  color: var(--green-deep); line-height: 1.25;
  margin-bottom: 32px; max-width: 480px;
}
.trust-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.trust-stat {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 20px; text-align: center;
}
.trust-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 900;
  color: var(--green-deep); line-height: 1;
}
.trust-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.trust-cards {
  display: flex; flex-direction: column; gap: 12px;
}
.trust-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.trust-card-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(26,77,46,.06); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.trust-card-icon svg { width: 20px; height: 20px; color: var(--green-deep); }
.trust-card h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.trust-card p { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
  background: var(--green-deep);
  padding: 64px 20px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(122,182,72,.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.cta-inner .section-label { color: var(--green-light); margin-bottom: 14px; display: block; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 6vw, 46px); font-weight: 900;
  color: #fff; line-height: 1.1; margin-bottom: 16px;
}
.cta-inner p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 32px; line-height: 1.6; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ─── RESPONSIVE: TABLET+ ────────────────────────────── */
@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .hero { padding: 80px 20px 0; }
  .hero-inner { flex-direction: row; text-align: left; align-items: flex-end; gap: 48px; }
  .hero-content { flex: 1; max-width: none; }
  .hero-actions { justify-content: flex-start; }
  .hero-badges { justify-content: flex-start; margin-bottom: 64px; }
  .hero-image-wrap { flex: 0 0 420px; max-width: 420px; }
  .trust-bar-inner { flex-direction: row; flex-wrap: wrap; gap: 24px 40px; }

  .products-swiper { margin: 0; padding: 8px 20px 40px; }
  .product-card { flex: none; width: auto; max-width: none; }

  .why-grid { grid-template-columns: repeat(5, 1fr); }
  .why-card { padding: 24px 18px; }

  .how-steps { max-width: none; }

  .box-inner { flex-direction: row; align-items: center; }
  .box-image-wrap { flex: 0 0 340px; max-width: 340px; aspect-ratio: 1; }

  .trust-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (min-width: 1024px) {
  .how-steps {
    flex-direction: row;
    gap: 0;
    max-width: none;
  }
  .how-step {
    flex: 1; flex-direction: column;
    align-items: center; text-align: center;
    padding: 0 16px;
    overflow: visible;
  }
  .how-step-line {
    top: 19px;
    left: calc(50% + 20px);
    right: auto;
    bottom: auto;
    width: calc(100% - 8px);
    height: 2px;
  }
  .how-step-content { text-align: center; }
  .how-step-icon { margin: 0 auto 8px; }
  .box-image-wrap { flex: 0 0 460px; }
}

/* how-step line/point animation on scroll */
.how-steps.visible .how-step-line {
  transform: scaleY(1);
  opacity: 1;
}
.how-steps.visible .how-step-num {
  transform: scale(1);
  opacity: 1;
}
.how-steps.visible .how-step:nth-child(1) .how-step-num,
.how-steps.visible .how-step:nth-child(1) .how-step-line { transition-delay: .05s; }
.how-steps.visible .how-step:nth-child(2) .how-step-num,
.how-steps.visible .how-step:nth-child(2) .how-step-line { transition-delay: .15s; }
.how-steps.visible .how-step:nth-child(3) .how-step-num,
.how-steps.visible .how-step:nth-child(3) .how-step-line { transition-delay: .25s; }
.how-steps.visible .how-step:nth-child(4) .how-step-num,
.how-steps.visible .how-step:nth-child(4) .how-step-line { transition-delay: .35s; }
