/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  --green:        #1A5C38;
  --green-mid:    #2A7A50;
  --green-light:  #EBF5F0;
  --orange:       #C85D28;
  --orange-light: #FDF0E8;
  --cream:        #FAFAF5;
  --white:        #FFFFFF;
  --text:         #1C1C1C;
  --text-mid:     #4A4A4A;
  --text-soft:    #717171;
  --border:       #E5E5E5;
  --purple:       #5B3A8A;
  --purple-mid:   #7047A8;
  --purple-light: #F0EAF9;
  --gold:         #F59E0B;
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  22px;
  --sh:    0 2px 20px rgba(0,0,0,0.07);
  --sh-lg: 0 8px 48px rgba(0,0,0,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', sans-serif; font-size: 17px; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* =============================================
   LAYOUT
   ============================================= */
.container  { max-width: 1380px; margin: 0 auto; padding: 0 36px; }
.section    { padding: 72px 0; }
.bg-cream   { background: var(--cream); }
.bg-green-light { background: var(--green-light); }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-header .eyebrow { display: block; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 10px; }
.section-header h2 { font-family: 'Nunito', sans-serif; font-size: 2.1rem; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.section-header p  { color: var(--text-mid); font-size: 1rem; }

/* =============================================
   TAGS & LABELS
   ============================================= */
.tag        { display: inline-block; background: var(--green-light); color: var(--green); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
.tag-purple { background: var(--purple-light); color: var(--purple); }
.tag-orange { background: var(--orange-light); color: var(--orange); }

/* =============================================
   BUTTONS
   ============================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 28px; border-radius: 100px; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: background .18s, border-color .18s, color .18s, transform .12s; white-space: nowrap; line-height: 1; }
.btn:active { transform: scale(0.98); }

.btn-green         { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover   { background: var(--green-mid); border-color: var(--green-mid); }
.btn-outline       { background: transparent; color: var(--text-soft); border-color: var(--border); }
.btn-outline:hover { border-color: var(--text-soft); color: var(--text); }
.btn-outline-green       { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green-light); }
.btn-purple       { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-purple:hover { background: var(--purple-mid); }
.btn-white         { background: #fff; color: var(--green); border-color: #fff; }
.btn-white:hover   { background: var(--green-light); border-color: var(--green-light); }
.btn-outline-white       { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { border-color: #fff; }
.btn-lg    { padding: 16px 40px; font-size: 1rem; }
.btn-block { width: 100%; }

/* =============================================
   LOGO
   ============================================= */
.logo      { display: flex; align-items: center; gap: 10px; }
.logo-mark { background: var(--green); color: #fff; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.85rem; letter-spacing: .04em; padding: 7px 11px; border-radius: var(--r-sm); line-height: 1; flex-shrink: 0; }
.logo-mark--sm { font-size: 0.74rem; padding: 5px 9px; }
.logo-text { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--text); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); transition: box-shadow .2s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--text-mid); transition: color .15s; }
.nav-links a:hover { color: var(--green); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.cart-btn  { position: relative; display: flex; align-items: center; color: var(--text-mid); transition: color .15s; padding: 4px; }
.cart-btn:hover { color: var(--green); }
.cart-count { position: absolute; top: -5px; right: -7px; background: var(--orange); color: #fff; font-size: .62rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Toast */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--text); color: #fff; padding: 12px 24px; border-radius: 100px; font-size: .88rem; font-weight: 600; z-index: 200; opacity: 0; pointer-events: none; transition: transform .3s, opacity .3s; white-space: nowrap; }
.toast--visible { transform: translateX(-50%) translateY(0); opacity: 1; }

/* =============================================
   TRUST BAR (shared)
   ============================================= */
.trust-bar   { background: var(--green); padding: 20px 0; }
.trust-inner { display: flex; justify-content: space-around; gap: 16px; flex-wrap: wrap; }
.trust-item  { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 600; }
.trust-icon  { font-size: 1.1rem; }

/* =============================================
   HOMEPAGE — FULL-BLEED HERO
   ============================================= */
.home-hero-full { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg  { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(8,28,14,.72) 0%, rgba(12,36,18,.58) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 800px; padding: 0 28px; }
.hero-content h1 { font-family: 'Nunito', sans-serif; font-size: 3.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 22px; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero-content p  { font-size: 1.2rem; opacity: .88; margin-bottom: 40px; max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.72; }
.hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-trust-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: .83rem; color: rgba(255,255,255,.7); margin-top: 24px; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.5); font-size: .76rem; display: flex; flex-direction: column; align-items: center; gap: 6px; animation: bounce 2.4s infinite; cursor: pointer; }
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* =============================================
   HOMEPAGE — KIT CARDS
   ============================================= */
.home-kits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.kit-card { display: block; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); position: relative; transition: box-shadow .2s, transform .2s; color: var(--text); }
.kit-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.kit-card--muted .kit-card-img img { filter: saturate(.7); }
.kit-card-badge { position: absolute; top: 16px; left: 16px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; z-index: 1; color: #fff; }
.kit-card-badge--green  { background: var(--green); }
.kit-card-badge--purple { background: var(--purple); }
.kit-card-img  { aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.kit-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .4s; }
.kit-card:hover .kit-card-img img { transform: scale(1.04); }
.kit-card-body { padding: 26px 30px 30px; }
.kit-label     { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-soft); display: block; margin-bottom: 8px; }
.kit-card-body h3 { font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.kit-card-body p  { font-size: .9rem; color: var(--text-mid); line-height: 1.55; margin-bottom: 20px; }
.kit-link         { font-size: .88rem; font-weight: 600; color: var(--green); }
.kit-link--purple { color: var(--purple); }

/* =============================================
   HOMEPAGE — BRAND STORY
   ============================================= */
.brand-story-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.brand-story-inner h2 { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 28px; }
.brand-story-inner p  { color: var(--text-mid); font-size: 1.05rem; line-height: 1.82; }
.brand-story-inner p + p { margin-top: 18px; }
.brand-stats  { display: flex; justify-content: center; gap: 56px; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.brand-stat strong { display: block; font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 900; color: var(--green); }
.brand-stat span   { font-size: .82rem; color: var(--text-soft); }

/* =============================================
   HOMEPAGE — FEATURE SPLITS
   ============================================= */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
/* 1:1 square image containers (all listing images are 1500×1500) */
.feature-split-image { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 1/1; }
.feature-split-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.feature-split-text .fs-eyebrow { display: block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); margin-bottom: 12px; }
.feature-split-text h3 { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 900; margin-bottom: 8px; line-height: 1.15; }
.feature-split-text .fs-intro { color: var(--text-soft); font-size: .95rem; margin-bottom: 28px; line-height: 1.6; }

/* Big bullet list */
.big-bullets { list-style: none; margin-bottom: 32px; }
.big-bullets li { display: flex; gap: 18px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.big-bullets li:last-child { border-bottom: none; }
.bb-icon   { font-size: 1.9rem; flex-shrink: 0; line-height: 1; }
.bb-text strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.bb-text p { font-size: .85rem; color: var(--text-soft); line-height: 1.5; }
.feature-link { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--green); transition: gap .15s; }
.feature-link:hover { gap: 10px; }
.feature-link--purple { color: var(--purple); }

/* =============================================
   HOMEPAGE — PRODUCT CAROUSEL
   ============================================= */
.carousel-section .section-header { margin-bottom: 40px; }
.carousel-outer  { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 8px 36px 28px; cursor: grab; user-select: none; }
.carousel-outer:active { cursor: grabbing; }
.carousel-outer::-webkit-scrollbar { display: none; }
.carousel-track  { display: flex; gap: 28px; width: max-content; }
.carousel-card   { width: 300px; background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--border); box-shadow: var(--sh); transition: box-shadow .2s, transform .2s; flex-shrink: 0; color: var(--text); display: block; }
.carousel-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
/* 1:1 square image container */
.carousel-card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.carousel-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .4s; }
.carousel-card:hover .carousel-card-img img { transform: scale(1.04); }
.carousel-card-body  { padding: 18px 22px 22px; }
.carousel-card-body h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; margin-bottom: 4px; }
.carousel-card-body p  { font-size: .82rem; color: var(--text-soft); margin-bottom: 12px; }
.carousel-price { font-family: 'Nunito', sans-serif; font-weight: 900; color: var(--green); font-size: 1.1rem; }
.carousel-soon  { font-size: .78rem; color: var(--purple); font-weight: 700; background: var(--purple-light); padding: 3px 11px; border-radius: 100px; }

/* =============================================
   PRODUCT PAGE — HERO & GALLERY
   ============================================= */
.product-hero       { padding: 52px 0 44px; }
.product-hero-inner { display: grid; grid-template-columns: 55fr 45fr; gap: 64px; align-items: start; }
.gallery { position: sticky; top: 88px; }

/* ── Gallery — opacity cross-fade (no partial-slide bleed) ── */
.gallery-main {
  background: var(--cream);
  border-radius: var(--r-lg);
  height: 520px;
  position: relative;
  margin-bottom: 14px;
  overflow: hidden;
}
/* Slides container is sized to parent; each slide stacks absolutely */
.gallery-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}
.gallery-slide.active {
  opacity: 1;
  z-index: 1;
}
/* Product images: contain so nothing is clipped */
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
}
/* Video slide: black bg, contain so full frame is visible */
.gallery-slide--video {
  background: #000;
}
.gallery-slide--video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Arrows */
.gallery-prev-btn,
.gallery-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: background .15s;
  z-index: 3;
}
.gallery-prev-btn:hover,
.gallery-next-btn:hover { background: #fff; }
.gallery-prev-btn { left: 10px; }
.gallery-next-btn { right: 10px; }

/* Thumbnails */
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb  {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--cream);
  padding: 0;
  transition: border-color .15s;
  flex-shrink: 0;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--green); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 1rem;
  pointer-events: none;
}

/* Hero cert line (below micro-trust) */
.hero-cert-line {
  font-size: .75rem;
  color: var(--text-soft);
  margin-top: 10px;
}
.hero-cert-line a { color: var(--green); font-weight: 600; }

/* Buy Panel */
.buy-panel        { padding-top: 4px; }
.product-category { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-soft); margin-bottom: 10px; }
.buy-panel-title  { font-family: 'Nunito', sans-serif; font-size: 2.2rem; font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.price-row        { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.price-original   { font-size: 1.15rem; color: var(--text-soft); }
.price-current    { font-family: 'Nunito', sans-serif; font-size: 2.1rem; font-weight: 900; color: var(--green); }
.price-save       { background: #FEF3C7; color: #92400E; font-size: .76rem; font-weight: 700; padding: 3px 11px; border-radius: 100px; }
.feature-bullets  { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-bullets li { display: flex; gap: 10px; font-size: .9rem; color: var(--text-mid); line-height: 1.45; }
.feature-bullets li span { flex-shrink: 0; }
.buy-actions { display: flex; gap: 12px; margin-bottom: 22px; }
.btn-buy     { flex: 1; padding: 15px 20px; }
.micro-trust { display: flex; gap: 18px; flex-wrap: wrap; font-size: .8rem; color: var(--text-soft); margin-bottom: 18px; }
.amazon-link { font-size: .83rem; color: var(--text-soft); transition: color .15s; display: block; }
.amazon-link:hover { color: var(--orange); }

/* =============================================
   PRODUCT PAGE — STICKY BAR
   ============================================= */
.sticky-bar { position: fixed; top: 70px; left: 0; right: 0; z-index: 90; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,.09); padding: 12px 0; transform: translateY(-120%); transition: transform .3s ease; }
.sticky-bar--visible { transform: translateY(0); }
.sticky-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.sticky-name  { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .95rem; flex: 1; min-width: 160px; }
.sticky-price-row    { display: flex; align-items: center; gap: 8px; }
.sticky-price-original { font-size: .85rem; color: var(--text-soft); }
.sticky-price-current  { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--green); }
.sticky-actions { display: flex; gap: 10px; }

/* =============================================
   PRODUCT PAGE — REASSURANCE STRIP
   ============================================= */
.reassurance-strip  { background: var(--green-light); border-top: 1px solid #c2dcc8; border-bottom: 1px solid #c2dcc8; padding: 22px 0; }
.reassurance-inner  { display: flex; justify-content: space-around; gap: 16px; flex-wrap: wrap; }
.reassurance-item   { display: flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 600; color: var(--green); }

/* =============================================
   PRODUCT PAGE — PLAY MEETS SCIENCE
   ============================================= */
.play-learn-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
/* 1:1 square image (listing images are 1500×1500) */
.play-learn-image { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 1/1; }
.play-learn-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.play-learn-text h2 { font-family: 'Nunito', sans-serif; font-size: 2.2rem; font-weight: 900; line-height: 1.18; margin-bottom: 8px; }
.play-learn-text .pl-intro { color: var(--text-soft); font-size: .95rem; margin-bottom: 28px; line-height: 1.6; }

/* =============================================
   PRODUCT PAGE — VIDEO
   ============================================= */
.video-section { background: var(--cream); }
.video-wrap    { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); background: #000; }
.video-wrap video { width: 100%; display: block; max-height: 640px; }

/* =============================================
   PRODUCT PAGE — EXPERIMENTS 3-GRID
   ============================================= */
.experiments-3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.exp3-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); transition: box-shadow .2s, transform .2s; }
.exp3-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
/* 1:1 containers for square listing images */
.exp3-card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.exp3-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .45s; }
.exp3-card:hover .exp3-card-img img { transform: scale(1.05); }
.exp3-card-body { padding: 20px 24px 22px; }
.exp3-card-body h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--green); margin-bottom: 6px; }
.exp3-card-body p  { font-size: .87rem; color: var(--text-mid); line-height: 1.55; }

/* =============================================
   PRODUCT PAGE — TRUST SECTION (A+ image + checklist)
   ============================================= */
.trust-deep-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
/* 97:60 containers for A+ content images (970×600) */
.trust-deep-image { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 97/60; }
.trust-deep-image img { width: 100%; height: 100%; object-fit: cover; }
.trust-deep-text h2 { font-family: 'Nunito', sans-serif; font-size: 1.9rem; font-weight: 800; margin-bottom: 24px; line-height: 1.2; }
.trust-check-list   { display: flex; flex-direction: column; gap: 22px; }
.trust-check-item   { display: flex; gap: 14px; align-items: flex-start; }
.check-circle { flex-shrink: 0; width: 26px; height: 26px; background: var(--green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; margin-top: 2px; }
.trust-check-item strong { display: block; font-weight: 700; margin-bottom: 4px; }
.trust-check-item p { font-size: .87rem; color: var(--text-mid); line-height: 1.55; }

/* =============================================
   PRODUCT PAGE — WHAT'S INSIDE
   ============================================= */
.whats-inside-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
/* 1:1 square container for Listing 07 */
.whats-inside-image { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 1/1; background: var(--cream); }
.whats-inside-image img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.whats-inside-text h2  { font-family: 'Nunito', sans-serif; font-size: 1.9rem; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.whats-inside-sub      { color: var(--text-mid); margin-bottom: 28px; }
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.includes-item { display: flex; align-items: center; gap: 7px; font-size: .83rem; color: var(--text-mid); background: var(--cream); padding: 9px 11px; border-radius: var(--r-sm); }
.seeds-note    { display: flex; gap: 10px; align-items: flex-start; background: var(--orange-light); border: 1px solid #F0CDB5; border-radius: var(--r-sm); padding: 13px 16px; font-size: .85rem; color: var(--text-mid); line-height: 1.55; }

/* =============================================
   PRODUCT PAGE — REVIEWS
   ============================================= */
.reviews-top   { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.reviews-top h2 { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 800; }
.reviews-aggregate { display: flex; align-items: center; gap: 12px; }
.agg-stars  { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.agg-text   { font-size: .9rem; color: var(--text-soft); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card  { background: var(--white); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh); border: 1px solid var(--border); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; margin-bottom: 12px; }
.review-headline { font-weight: 700; font-size: 1rem; margin-bottom: 10px; line-height: 1.4; color: var(--text); }
.review-text    { font-size: .87rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
.review-author  { font-size: .8rem; color: var(--text-soft); font-weight: 600; }
.reviews-footer { text-align: center; margin-top: 36px; }
.reviews-footer a { color: var(--orange); font-size: .9rem; font-weight: 600; transition: color .15s; }
.reviews-footer a:hover { color: var(--text); }

/* =============================================
   PRODUCT PAGE — 30-DAY GUARANTEE
   ============================================= */
.guarantee-box { background: var(--green); border-radius: var(--r-lg); padding: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; text-align: center; }
.g-item       { color: #fff; }
.g-icon       { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.g-item h4    { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.g-item p     { font-size: .85rem; opacity: .82; line-height: 1.6; }
.g-item a     { color: rgba(255,255,255,.85); text-decoration: underline; }
.g-item a:hover { color: #fff; }

/* =============================================
   PHYSICS PAGE — HERO (Coming Soon)
   ============================================= */
.cs-hero       { background: var(--purple-light); padding: 80px 0; }
.cs-hero-inner { display: grid; grid-template-columns: 55fr 45fr; gap: 64px; align-items: start; }
.cs-hero-text h1 { font-family: 'Nunito', sans-serif; font-size: 2.6rem; font-weight: 900; color: var(--purple); margin-bottom: 16px; line-height: 1.1; }
.cs-sub          { color: var(--text-mid); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.72; }
.cs-features    { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.cs-features li { display: flex; gap: 11px; font-size: .92rem; color: var(--text-mid); }
.cs-notify { background: var(--white); border-radius: var(--r); padding: 22px 26px; box-shadow: var(--sh); }
.cs-footnote { font-size: .78rem; color: var(--text-soft); margin-top: 12px; }
/* Physics gallery (2000×2000 square images) — fixed height */
.cs-gallery     { position: sticky; top: 88px; }
.cs-gallery-main { background: var(--cream); border-radius: var(--r-lg); height: 520px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; overflow: hidden; }
.cs-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: opacity .15s; }

/* =============================================
   PHYSICS PAGE — FORCES SECTION
   ============================================= */
.forces-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.force-card  { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 36px 28px; text-align: center; box-shadow: var(--sh); }
.force-icon  { font-size: 2.8rem; display: block; margin-bottom: 16px; }
.force-card h3  { font-family: 'Nunito', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--purple); margin-bottom: 14px; }
.force-bullets  { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.force-bullets li { font-size: .87rem; color: var(--text-mid); display: flex; gap: 8px; }

/* =============================================
   PHYSICS PAGE — FEATURE SPLITS (reuse .feature-split)
   ============================================= */
.physics-feature-image { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 1/1; }
.physics-feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* A+ content sections with headings — 97:60 container */
.aplus-section     { padding: 0; }
.aplus-section-wrap { max-width: 1100px; margin: 0 auto; padding: 0 36px; }
.aplus-img-wrap    { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); aspect-ratio: 97/60; }
.aplus-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   PHYSICS PAGE — TEACHER & ASSURANCE SECTIONS
   ============================================= */
.teacher-inner  { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
/* 97:60 for A+ image */
.teacher-image  { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 97/60; }
.teacher-image img { width: 100%; height: 100%; object-fit: cover; }
.teacher-text h2 { font-family: 'Nunito', sans-serif; font-size: 1.9rem; font-weight: 800; margin-bottom: 24px; }

.assurance-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.assurance-card  { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--sh); }
.assurance-card .a-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.assurance-card h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem; margin-bottom: 8px; }
.assurance-card p  { font-size: .87rem; color: var(--text-mid); line-height: 1.6; }

/* Coming soon final notify */
.cs-final-notify       { background: var(--purple); padding: 80px 0; text-align: center; color: #fff; }
.cs-final-notify h2    { font-family: 'Nunito', sans-serif; font-size: 2.2rem; font-weight: 900; margin-bottom: 12px; }
.cs-final-notify .sub  { opacity: .85; margin-bottom: 32px; font-size: 1.05rem; }
.notify-centered       { max-width: 440px; margin: 0 auto; }
.notify-label          { font-size: .84rem; color: var(--text-mid); margin-bottom: 10px; }
.notify-input-row      { display: flex; gap: 8px; }
.notify-input-row input { flex: 1; min-width: 0; padding: 12px 18px; border: 1.5px solid var(--border); border-radius: 100px; font-size: .9rem; font-family: 'Inter', sans-serif; color: var(--text); outline: none; transition: border-color .15s; background: #fff; }
.notify-input-row input:focus { border-color: var(--purple); }

/* =============================================
   CART PAGE
   ============================================= */
.cart-container { max-width: 960px; }
.cart-title      { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 40px; }
.cart-empty      { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 80px 0; }
.cart-empty-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.cart-empty h2   { font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.cart-empty p    { color: var(--text-soft); }
.cart-layout     { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.cart-item       { display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); }
/* 1:1 square thumbnail */
.cart-item-img      { width: 80px; height: 80px; border-radius: var(--r-sm); overflow: hidden; background: var(--cream); flex-shrink: 0; }
.cart-item-img img  { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item-info h4  { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.cart-item-price    { color: var(--text-soft); font-size: .87rem; }
.cart-item-total    { font-weight: 700; font-size: .95rem; min-width: 60px; text-align: right; }
.cart-item-remove   { background: none; border: none; color: var(--text-soft); cursor: pointer; font-size: 1.3rem; padding: 4px 6px; border-radius: 4px; transition: color .15s, background .15s; line-height: 1; }
.cart-item-remove:hover { color: #c00; background: #fff0f0; }
.qty-control        { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.qty-control button { width: 32px; height: 32px; background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--text-mid); transition: background .15s; }
.qty-control button:hover { background: var(--green-light); }
.qty-control span   { min-width: 32px; text-align: center; font-size: .9rem; font-weight: 600; }
.cart-summary   { background: var(--cream); border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--border); position: sticky; top: 88px; }
.cart-summary h3    { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 20px; }
.summary-row    { display: flex; justify-content: space-between; font-size: .9rem; color: var(--text-mid); margin-bottom: 12px; }
.summary-free   { color: var(--green); font-weight: 600; }
.summary-divider { height: 1px; background: var(--border); margin: 16px 0; }
.summary-total  { font-weight: 700; font-size: 1.05rem; color: var(--text); }
.cart-security  { text-align: center; font-size: .78rem; color: var(--text-soft); margin-top: 12px; }
.continue-shopping { display: block; text-align: center; margin-top: 14px; font-size: .83rem; color: var(--text-soft); transition: color .15s; }
.continue-shopping:hover { color: var(--green); }

/* =============================================
   FOOTER
   ============================================= */
.footer        { background: var(--text); color: rgba(255,255,255,.65); padding: 56px 0 40px; }
.footer-inner  { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-brand  { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo   { display: flex; align-items: center; gap: 9px; }
.footer-brand-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem; color: #fff; }
.footer-tagline    { font-size: .82rem; }
.footer-small-biz  { font-size: .76rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.footer-nav        { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-nav a      { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-nav a:hover { color: #fff; }
.footer-legal      { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }
.footer-legal a    { font-size: .76rem; color: rgba(255,255,255,.38); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-copy   { font-size: .76rem; opacity: .3; }

/* =============================================
   RESPONSIVE — TABLET ≤1000px
   ============================================= */
@media (max-width: 1000px) {
  .home-hero-full .hero-content h1 { font-size: 2.8rem; }
  .feature-split, .play-learn-inner, .trust-deep-inner,
  .whats-inside-inner, .teacher-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse { direction: ltr; }
  .product-hero-inner, .cs-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery { position: static; }
  .cs-gallery { position: static; }
  .home-kits-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .experiments-3-grid { grid-template-columns: 1fr 1fr; }
  .forces-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-box { grid-template-columns: 1fr; padding: 36px; }
  .assurance-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

/* =============================================
   RESPONSIVE — MOBILE ≤640px
   ============================================= */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .home-hero-full .hero-content h1 { font-size: 2.1rem; }
  .home-hero-full .hero-content p  { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .nav-links { display: none; }
  .nav-cta   { padding: 10px 18px; font-size: .85rem; }
  .section-header h2 { font-size: 1.7rem; }
  .buy-panel-title { font-size: 1.7rem; }
  .buy-actions { flex-direction: column; }
  .btn-buy { flex: none; width: 100%; }
  .gallery-main, .cs-gallery-main { height: 360px; }
  .experiments-3-grid { grid-template-columns: 1fr; }
  .forces-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .assurance-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .notify-input-row { flex-direction: column; }
  .notify-input-row .btn { width: 100%; }
  .sticky-actions { gap: 8px; }
  .cart-item { grid-template-columns: 64px 1fr; grid-template-rows: auto auto auto; gap: 10px; }
  .cart-item-total, .cart-item-remove, .qty-control { grid-column: 2; width: fit-content; }
  .guarantee-box { padding: 28px 20px; }
  .brand-stats { gap: 28px; }
}

/* =============================================
   CHECKOUT PROGRESS BAR (shared: cart, checkout, thankyou)
   ============================================= */
.checkout-progress { display: flex; align-items: center; justify-content: center; gap: 0; padding: 28px 0 20px; }
.progress-step { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--text-soft); }
.progress-step.active { color: var(--green); }
.progress-step.done   { color: var(--green-mid); }
.step-num { width: 26px; height: 26px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; flex-shrink: 0; transition: background .2s; }
.progress-step.active .step-num { background: var(--green); color: #fff; border-color: var(--green); }
.progress-step.done   .step-num { background: var(--green-light); border-color: var(--green); }
.progress-connector { width: 52px; height: 2px; background: var(--border); margin: 0 6px; flex-shrink: 0; }
.progress-connector.done { background: var(--green); }

/* =============================================
   CART PAGE — REDESIGNED
   ============================================= */
.cart-page { padding: 0 0 80px; background: var(--cream); min-height: 80vh; }
.cart-page-header { background: var(--white); border-bottom: 1px solid var(--border); }
.cart-trust-strip { background: var(--green); padding: 10px 0; }
.cart-trust-inner { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.cart-trust-item  { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 600; }
.cart-body { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; padding-top: 28px; }
.cart-main-col { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--sh); }
.cart-col-header { padding: 22px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-col-header h2 { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 800; }
.cart-items-wrap { padding: 0 28px; }
.cart-mini-trust { padding: 18px 28px; background: var(--green-light); border-top: 1px solid #c2dcc8; display: flex; gap: 20px; flex-wrap: wrap; }
.cart-mini-trust-item { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--green); font-weight: 600; }
/* RIGHT COLUMN */
.cart-summary-col { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--sh); position: sticky; top: 88px; overflow: hidden; }
.cart-summary-head { padding: 22px 24px; border-bottom: 1px solid var(--border); }
.cart-summary-head h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; }
.cart-summary-body  { padding: 20px 24px; }
.summary-row-v2  { display: flex; justify-content: space-between; font-size: .88rem; color: var(--text-mid); padding: 7px 0; }
.summary-total-v2 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--text); padding-top: 14px; border-top: 2px solid var(--border); margin-top: 6px; }
.checkout-cta-btn { width: 100%; padding: 17px; font-size: 1.05rem; font-weight: 700; border-radius: var(--r); margin-top: 18px; }
.cart-payment-icons { display: flex; align-items: center; gap: 7px; justify-content: center; margin-top: 14px; flex-wrap: wrap; }
.pay-card-svg { display: block; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06); flex-shrink: 0; }
.cart-secure-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .74rem; color: var(--text-soft); margin-top: 12px; }
.cart-mini-review { border-top: 1px solid var(--border); padding: 18px 24px; background: var(--cream); }
.cmr-stars { color: var(--gold); font-size: .85rem; margin-bottom: 6px; }
.cmr-quote { font-size: .82rem; color: var(--text-mid); line-height: 1.55; font-style: italic; margin-bottom: 8px; }
.cmr-author { font-size: .74rem; color: var(--text-soft); font-weight: 600; }

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.checkout-page { background: var(--cream); min-height: 100vh; padding-bottom: 80px; }
.checkout-nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; }
.checkout-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; padding-top: 28px; }
/* Form column */
.checkout-form-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--sh); overflow: hidden; }
.checkout-section { padding: 26px 30px; border-bottom: 1px solid var(--border); }
.checkout-section:last-child { border-bottom: none; }
.checkout-section-title { font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.checkout-section-title .section-step { background: var(--green); color: #fff; width: 22px; height: 22px; border-radius: 50%; font-size: .7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-group { margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }
.form-label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .9rem; font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); outline: none; transition: border-color .15s; }
.form-input:focus { border-color: var(--green); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px; }
/* Payment tabs */
.payment-tabs { display: flex; gap: 0; border: 1.5px solid var(--border); border-radius: var(--r-sm); overflow: hidden; margin-bottom: 22px; }
.payment-tab { flex: 1; padding: 11px 16px; background: var(--white); border: none; cursor: pointer; font-size: .83rem; font-weight: 600; color: var(--text-soft); display: flex; align-items: center; justify-content: center; gap: 6px; transition: background .15s, color .15s; border-right: 1px solid var(--border); }
.payment-tab:last-child { border-right: none; }
.payment-tab.active { background: var(--green-light); color: var(--green); }
.payment-tab:hover:not(.active) { background: var(--cream); }
.payment-panel { display: none; }
.payment-panel.active { display: block; }
.card-fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.stripe-note { background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 12px 16px; font-size: .8rem; color: var(--text-soft); display: flex; gap: 8px; align-items: center; margin-bottom: 14px; }
.paypal-btn-wrap, .razorpay-btn-wrap { padding: 20px; text-align: center; background: var(--cream); border-radius: var(--r-sm); }
.paypal-btn-wrap p, .razorpay-btn-wrap p { font-size: .82rem; color: var(--text-soft); margin-top: 12px; }
.btn-paypal { background: #FFC439; color: #003087; border-color: #FFC439; font-weight: 700; padding: 13px 40px; font-size: .95rem; }
.btn-paypal:hover { background: #F0B92E; border-color: #F0B92E; }
.btn-razorpay { background: #528FF0; color: #fff; border-color: #528FF0; font-weight: 700; padding: 13px 40px; font-size: .95rem; }
.btn-razorpay:hover { background: #3A75D4; border-color: #3A75D4; }
.place-order-btn { width: 100%; padding: 18px; font-size: 1.05rem; font-weight: 800; border-radius: var(--r-sm); letter-spacing: .02em; margin-top: 8px; }
/* Checkout right column */
.checkout-summary-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--sh); position: sticky; top: 88px; overflow: hidden; }
.checkout-summary-head { padding: 20px 24px; border-bottom: 1px solid var(--border); background: var(--cream); }
.checkout-summary-head h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .95rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: .04em; }
.checkout-order-items { padding: 16px 24px; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
.checkout-order-item { display: flex; gap: 14px; align-items: center; }
.checkout-item-img { width: 56px; height: 56px; border-radius: var(--r-sm); overflow: hidden; background: var(--cream); border: 1px solid var(--border); flex-shrink: 0; }
.checkout-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-info strong { font-size: .88rem; font-weight: 700; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.checkout-item-info span { font-size: .78rem; color: var(--text-soft); }
.checkout-item-price { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: .95rem; color: var(--green); white-space: nowrap; }
.checkout-totals { padding: 16px 24px; border-bottom: 1px solid var(--border); }
.checkout-trust-list { padding: 16px 24px; display: flex; flex-direction: column; gap: 9px; }
.checkout-trust-item { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--text-soft); }
.checkout-policies { padding: 14px 24px; background: var(--cream); display: flex; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--border); }
.checkout-policies a { font-size: .72rem; color: var(--text-soft); transition: color .15s; }
.checkout-policies a:hover { color: var(--green); }

/* =============================================
   THANK YOU PAGE
   ============================================= */
.thankyou-page { background: var(--cream); min-height: 100vh; padding: 0 0 80px; }
.thankyou-hero  { background: var(--white); border-bottom: 1px solid var(--border); padding: 52px 0 44px; text-align: center; }
.thankyou-check { width: 72px; height: 72px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; animation: pop .4s cubic-bezier(.36,.07,.19,.97); }
.thankyou-check svg { color: #fff; }
@keyframes pop { 0%{transform:scale(0)} 60%{transform:scale(1.15)} 100%{transform:scale(1)} }
.thankyou-hero h1 { font-family: 'Nunito', sans-serif; font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; }
.thankyou-hero .order-id { display: inline-block; background: var(--green-light); color: var(--green); font-size: .83rem; font-weight: 700; padding: 5px 16px; border-radius: 100px; margin-bottom: 16px; }
.thankyou-hero .confirm-email { font-size: .9rem; color: var(--text-soft); }
.thankyou-body { padding-top: 32px; }
.thankyou-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.thankyou-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--sh); overflow: hidden; margin-bottom: 20px; }
.thankyou-card-head { padding: 18px 24px; background: var(--cream); border-bottom: 1px solid var(--border); font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .95rem; display: flex; align-items: center; gap: 8px; }
.thankyou-card-body { padding: 22px 24px; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 16px; padding-bottom: 22px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: 15px; top: 32px; bottom: 0; width: 2px; background: var(--border); }
.timeline-item:last-child::before { display: none; }
.tl-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--green-light); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; z-index: 1; }
.tl-content strong { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 3px; }
.tl-content p { font-size: .82rem; color: var(--text-soft); line-height: 1.55; }
.great-choice-card { background: var(--green); border-radius: var(--r-lg); padding: 32px; color: #fff; text-align: center; margin-bottom: 20px; }
.great-choice-card h3 { font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 900; margin-bottom: 10px; }
.great-choice-card p { opacity: .88; font-size: .9rem; line-height: 1.65; margin-bottom: 16px; }
.great-choice-card blockquote { background: rgba(255,255,255,.12); border-radius: var(--r-sm); padding: 16px 20px; font-style: italic; font-size: .88rem; opacity: .9; line-height: 1.6; }
.great-choice-card cite { display: block; font-size: .75rem; margin-top: 8px; opacity: .7; font-style: normal; }
.upsell-card-ty { background: var(--white); border-radius: var(--r-lg); border: 1.5px solid var(--purple-light); box-shadow: var(--sh); overflow: hidden; }
.upsell-card-ty .upsell-img { aspect-ratio: 16/9; overflow: hidden; background: var(--purple-light); }
.upsell-card-ty .upsell-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.upsell-card-ty .upsell-body { padding: 20px 24px; }
.upsell-card-ty h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; margin-bottom: 6px; color: var(--purple); }
.upsell-card-ty p { font-size: .83rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.55; }

/* =============================================
   RESPONSIVE — CHECKOUT & THANKYOU
   ============================================= */
@media (max-width: 1000px) {
  .checkout-grid, .thankyou-grid { grid-template-columns: 1fr; }
  .checkout-summary-card { position: static; }
  .cart-body { grid-template-columns: 1fr; }
  .cart-summary-col { position: static; }
}
@media (max-width: 640px) {
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .payment-tab span.tab-label { display: none; }
  .thankyou-hero h1 { font-size: 1.6rem; }
  .checkout-grid { gap: 16px; }
  .progress-connector { width: 28px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Review Carousel
   ═══════════════════════════════════════════════════════════════════════════ */

.rev-header        { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; margin-bottom:32px; }
.rev-header h2     { font-size:1.7rem; font-weight:900; margin:0; }
.rev-aggregate     { display:flex; align-items:center; gap:10px; }
.rev-agg-stars     { font-size:1.1rem; color:#F59E0B; letter-spacing:2px; }
.rev-agg-text      { font-size:.85rem; color:var(--text-soft); }

/* Carousel wrapper */
.rev-carousel-wrap { position:relative; display:flex; align-items:center; gap:8px; }
.rev-viewport      { overflow:hidden; flex:1; }
.rev-track         { display:flex; gap:20px; transition:transform .45s cubic-bezier(.4,0,.2,1); will-change:transform; }

/* Arrow buttons */
.rev-arrow {
  flex-shrink:0; width:40px; height:40px; border-radius:50%;
  background:#fff; border:1.5px solid var(--border);
  font-size:22px; line-height:1; cursor:pointer; color:var(--text);
  display:flex; align-items:center; justify-content:center;
  transition:background .15s, border-color .15s; z-index:1;
  box-shadow:0 2px 8px rgba(0,0,0,.07);
}
.rev-arrow:hover { background:var(--green-light); border-color:var(--green); color:var(--green); }

/* Individual card */
.rev-card {
  flex:0 0 calc(33.333% - 14px);
  background:#fff; border:1.5px solid var(--border);
  border-radius:var(--r-lg); padding:24px 22px 20px;
  box-shadow:var(--sh); display:flex; flex-direction:column; gap:0;
}

/* Stars */
.rev-star-row      { font-size:15px; letter-spacing:1px; margin-bottom:10px; }
.rev-stars-filled  { color:#F59E0B; }
.rev-stars-empty   { color:#ddd; }

/* Headline */
.rev-headline {
  font-size:.95rem; font-weight:700; color:var(--text);
  margin:0 0 10px; line-height:1.4;
}

/* Truncated body with fade */
.rev-body          { position:relative; margin-bottom:6px; }
.rev-text          { font-size:.86rem; color:var(--text-mid); line-height:1.65; margin:0;
                     display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical;
                     overflow:hidden; }
.rev-fade          { display:none; } /* clamp handles fade natively */

/* Read more */
.rev-more-btn {
  background:none; border:none; padding:0; margin:4px 0 12px;
  font-size:.82rem; font-weight:600; color:var(--green);
  cursor:pointer; text-align:left; font-family:inherit;
  text-decoration:underline; text-underline-offset:2px;
}
.rev-more-btn:hover { color:var(--green-mid); }

/* Byline */
.rev-byline   { margin-top:auto; padding-top:12px; border-top:1px solid var(--border); display:flex; flex-direction:column; gap:2px; }
.rev-author   { font-size:.82rem; color:var(--text); }
.rev-detail   { font-size:.76rem; color:var(--text-soft); }

/* Dots */
.rev-dots { display:flex; justify-content:center; gap:8px; margin-top:20px; }
.rev-dot  {
  width:8px; height:8px; border-radius:50%; background:var(--border);
  border:none; cursor:pointer; padding:0; transition:background .2s, transform .2s;
}
.rev-dot.active { background:var(--green); transform:scale(1.25); }

/* Footer link */
.rev-footer      { text-align:center; margin-top:24px; }
.rev-footer a    { font-size:.85rem; color:var(--text-soft); text-decoration:underline; text-underline-offset:2px; }
.rev-footer a:hover { color:var(--green); }
.rev-footer-note { font-size:.82rem; color:var(--text-soft); }

/* Responsive */
@media (max-width: 959px) {
  .rev-card { flex:0 0 calc(50% - 10px); }
}
@media (max-width: 579px) {
  .rev-card { flex:0 0 100%; }
  .rev-arrow { display:none; }
  .rev-header h2 { font-size:1.4rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Email Capture Popup
   ═══════════════════════════════════════════════════════════════════════════ */

/* Overlay */
#wt-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: background 0.35s ease;
  pointer-events: none;
}
#wt-popup-overlay.wt-popup-visible {
  background: rgba(0, 0, 0, 0.55);
  pointer-events: all;
}

/* Card */
#wt-popup-card {
  display: flex;
  max-width: 720px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  transform: translateY(32px) scale(0.97);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
#wt-popup-overlay.wt-popup-visible #wt-popup-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Left image column */
#wt-popup-img-col {
  flex: 0 0 260px;
  position: relative;
  overflow: hidden;
  background: #e8f5ee;
}
#wt-popup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#wt-popup-img-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,92,56,0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Right form column */
#wt-popup-form-col {
  flex: 1;
  padding: 36px 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Close button */
#wt-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #bbb;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
#wt-popup-close:hover { color: #555; background: #f5f5f5; }

/* Eyebrow */
#wt-popup-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2A7A50;
  margin-bottom: 10px;
}

/* Headline */
#wt-popup-headline {
  font-size: 26px;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.2;
}
#wt-popup-headline .wt-green { color: #1A5C38; }

/* Subtext */
#wt-popup-subtext {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 22px;
}

/* Inputs */
#wt-popup-form input {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
#wt-popup-form input:focus { border-color: #2A7A50; }
#wt-popup-form input.wt-input-error { border-color: #e53e3e; }
#wt-popup-form input::placeholder { color: #aaa; }

/* CTA button */
#wt-popup-submit {
  width: 100%;
  background: linear-gradient(135deg, #1A5C38 0%, #2A7A50 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: opacity 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
}
#wt-popup-submit:hover { opacity: 0.92; transform: translateY(-1px); }
#wt-popup-submit:active { transform: translateY(0); }
#wt-popup-spinner svg { animation: wt-spin 0.8s linear infinite; }
@keyframes wt-spin { to { transform: rotate(360deg); } }

/* Error */
#wt-popup-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 8px;
  padding: 8px 12px;
  background: #fff5f5;
  border-radius: 8px;
  border: 1px solid #fed7d7;
}

/* Success state */
#wt-popup-success {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 0;
}
#wt-popup-success-icon { font-size: 48px; margin-bottom: 12px; }
#wt-popup-success-headline { font-size: 20px; margin: 0 0 8px; }
#wt-popup-success-body { font-size: 14px; color: #555; line-height: 1.7; margin: 0 0 20px; }
#wt-popup-success-close {
  background: linear-gradient(135deg, #1A5C38 0%, #2A7A50 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}
#wt-popup-success-close:hover { opacity: 0.9; }

/* Dismiss link */
#wt-popup-dismiss {
  background: none;
  border: none;
  font-size: 11px;
  color: #bbb;
  cursor: pointer;
  margin-top: 14px;
  padding: 0;
  text-align: center;
  font-family: inherit;
  transition: color 0.2s;
  text-decoration: underline;
  align-self: center;
}
#wt-popup-dismiss:hover { color: #888; }

/* ── Mobile: centered card, image hidden ───────────────────────────────────── */
@media (max-width: 767px) {
  #wt-popup-overlay {
    align-items: center;
    padding: 20px 16px;
  }
  #wt-popup-card {
    flex-direction: column;
    border-radius: 20px;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
  }
  #wt-popup-img-col {
    display: none;
  }
  #wt-popup-form-col {
    padding: 32px 24px 28px;
  }
  #wt-popup-headline { font-size: 22px; }
}

/* ── Reduced motion ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #wt-popup-card { transition: opacity 0.2s ease; transform: none !important; }
  #wt-popup-spinner svg { animation: none; }
}

/* =============================================
   BULK / SCHOOLS SECTION  (homepage)
   ============================================= */
.bulk-section {
  background: linear-gradient(140deg, #0d3820 0%, #1A5C38 55%, #1e6b40 100%);
  padding: 96px 0;
  overflow: hidden;
}
.bulk-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.bulk-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.88);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 20px;
}
.bulk-text h2 {
  font-family: 'Nunito', sans-serif;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 900;
  margin: 0 0 18px;
  line-height: 1.15;
}
.bulk-text > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  line-height: 1.78;
  max-width: 500px;
  margin: 0 0 36px;
}
.bulk-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 44px;
}
.bulk-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.bulk-perk-check {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
}
.bulk-perk-text {
  font-size: .88rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  line-height: 1.45;
}
.bulk-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.bulk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1A5C38;
  font-size: .97rem;
  font-weight: 800;
  padding: 15px 34px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}
.bulk-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.3); }
.bulk-cta-note {
  font-size: .8rem;
  color: rgba(255,255,255,0.52);
}
.bulk-image-col {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0,0,0,0.38);
  transform: perspective(900px) rotateY(-4deg) rotateX(1deg);
  transition: transform .35s ease;
}
.bulk-image-col:hover { transform: perspective(900px) rotateY(0deg) rotateX(0deg); }
.bulk-image-col img   { width: 100%; display: block; }

@media (max-width: 940px) {
  .bulk-inner { grid-template-columns: 1fr; gap: 48px; }
  .bulk-image-col { transform: none; max-width: 460px; margin: 0 auto; }
  .bulk-text h2 { font-size: 1.9rem; }
}
@media (max-width: 560px) {
  .bulk-perks   { grid-template-columns: 1fr; }
  .bulk-section { padding: 72px 0; }
  .bulk-cta-row { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */

/* Hero */
.contact-hero {
  background: linear-gradient(135deg, #1A5C38 0%, #2A7A50 100%);
  padding: 88px 0 80px;
  text-align: center;
}
.contact-hero-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.contact-hero h1 {
  font-family: 'Nunito', sans-serif;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 900;
  margin: 0 0 16px;
  line-height: 1.15;
}
.contact-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.72;
}

/* Section + layout */
.contact-section {
  padding: 80px 0 108px;
  background: var(--cream);
}
.contact-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

/* Info card */
.contact-info-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--sh);
  position: sticky;
  top: 92px;
}
.contact-info-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  margin: 0 0 26px;
  color: var(--text);
}
.contact-detail-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-detail-icon { font-size: 20px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.contact-detail-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-soft);
  margin: 0 0 5px;
}
.contact-detail-value {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
}
.contact-email-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.contact-email-link {
  font-size: .85rem;
  color: var(--green);
  font-weight: 600;
  word-break: break-all;
}
.copy-email-btn {
  background: var(--green-light);
  color: var(--green);
  border: none;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.copy-email-btn:hover { background: #c2e2d0; }
.copy-email-btn--done { background: var(--green) !important; color: #fff !important; }
.contact-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 22px 0;
}
.contact-reasons-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-soft);
  margin: 0 0 12px;
}
.contact-reasons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-reasons-list li {
  font-size: .85rem;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.contact-reasons-list li:last-child { border-bottom: none; }

/* Nav active link */
.nav-link-active { color: var(--green) !important; font-weight: 700; }

/* Form card */
.contact-form-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 44px 48px;
  box-shadow: var(--sh-lg);
}
.contact-form-card h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  margin: 0 0 6px;
}
.contact-form-sub {
  font-size: .88rem;
  color: var(--text-soft);
  margin: 0 0 32px;
}

/* Form fields */
.cf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cf-group  { margin-bottom: 22px; }
.cf-label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.cf-req { color: var(--orange); }
.cf-opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-soft); font-size: .72rem; }
.cf-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.cf-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,92,56,0.1);
}
.cf-input::placeholder { color: #c0c0c0; }
.cf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
  padding-right: 40px;
}
.cf-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}
.cf-error-msg {
  background: #fef2f2;
  color: #c0392b;
  border: 1px solid #f5c6c6;
  border-radius: var(--r-sm);
  padding: 11px 16px;
  font-size: .85rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Success card */
.contact-success-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 72px 48px;
  box-shadow: var(--sh-lg);
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.contact-success-icon { font-size: 60px; margin-bottom: 20px; }
.contact-success-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--green);
  margin: 0 0 14px;
}
.contact-success-card p {
  font-size: .95rem;
  color: var(--text-mid);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.72;
}
.contact-success-sub {
  font-size: .83rem !important;
  color: var(--text-soft) !important;
  margin-top: 8px !important;
}

@media (max-width: 900px) {
  .contact-layout   { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .contact-form-card { padding: 32px 28px; }
  .contact-success-card { padding: 52px 28px; }
}
@media (max-width: 560px) {
  .cf-row-2    { grid-template-columns: 1fr; gap: 0; }
  .contact-hero h1 { font-size: 2rem; }
}

/* =============================================
   CERTIFICATIONS
   ============================================= */

/* Strip below homepage kit cards */
.cert-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 40px;
  padding: 18px 28px;
  background: var(--green-light);
  border-radius: var(--r);
  border: 1px solid #c4ddd0;
}
.cert-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
}
.cert-strip-dot {
  width: 4px; height: 4px;
  background: #b8d8c6;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Compact safety box inside buy panel */
.safety-cert-box {
  background: var(--green-light);
  border: 1.5px solid #b8d8c6;
  border-radius: var(--r);
  padding: 13px 16px;
  margin: 18px 0 20px;
}
.safety-cert-eyebrow {
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin: 0 0 10px;
}
.safety-cert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.safety-cert-badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.safety-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #c4ddd0;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text);
}
.safety-cert-viewlink {
  font-size: .74rem;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.safety-cert-viewlink:hover { text-decoration: underline; }

/* Dedicated certifications section (product page) */
.cert-detail-section {
  background: var(--cream);
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.cert-detail-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cert-detail-text { flex: 1; min-width: 220px; }
.cert-detail-text h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 0 8px;
}
.cert-detail-text p {
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 400px;
}
.cert-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}
.cert-detail-cta:hover { background: var(--green-mid); }
.cert-detail-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  flex: 1.2;
  min-width: 280px;
}
.cert-card {
  background: #fff;
  border: 1.5px solid #c4ddd0;
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cert-card-icon { font-size: 26px; flex-shrink: 0; margin-top: 1px; }
.cert-card-body strong {
  display: block;
  font-size: .85rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
}
.cert-card-body span {
  font-size: .75rem;
  color: var(--text-soft);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .cert-detail-inner { flex-direction: column; }
  .cert-detail-cards { grid-template-columns: 1fr; }
}

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.faq-section { background: #faf8f5; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s ease;
}
details[open] > .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 4px 22px;
}
.faq-a p {
  font-size: .93rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin: 0;
}
.faq-a a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}
.faq-a a:hover { text-decoration: underline; }

/* ── BUY PANEL SOCIAL PROOF ──────────────────────────────────────────────────── */
.buy-proof-row {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFF9E6;
  border: 1.5px solid #F5D87A;
  border-radius: 8px;
  padding: 7px 12px;
  text-decoration: none;
  margin: 12px 0 0;
  font-size: .82rem;
  color: var(--text);
  transition: border-color .15s;
}
/* no hover effect — it's no longer a link */
.buy-proof-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 1px; }
.buy-proof-rating { font-weight: 800; font-size: .9rem; color: #92400E; }
.buy-proof-count { color: var(--text-soft); font-size: .78rem; }

.buy-stats-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin: 10px 0 16px;
  overflow: hidden;
}
.buy-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  text-align: center;
}
.buy-stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1.2;
}
.buy-stat-label {
  font-size: .68rem;
  color: var(--text-soft);
  line-height: 1.3;
  margin-top: 2px;
}
.buy-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── COMPARISON SECTION ──────────────────────────────────────────────────────── */
.compare-section { background: #faf8f5; }
.compare-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
  margin-top: 8px;
}
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.compare-table thead tr {
  background: var(--green);
}
.compare-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.85);
}
.compare-wt-col { color: #fff !important; }
.compare-wt-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
  text-transform: none;
  letter-spacing: 0;
}
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: #f9fdf9; }
.compare-table tbody td {
  padding: 12px 16px;
  vertical-align: middle;
  color: var(--text);
}
.compare-feat-col { color: var(--text-soft) !important; font-weight: 600; }
.compare-wt-cell { font-weight: 600; color: var(--green) !important; }
.compare-wt-cell strong { color: var(--green); }
.compare-gen-cell { color: var(--text-soft) !important; }
.compare-gen-cell.muted { color: #aaa !important; }
.compare-yes { color: #166534 !important; }
.compare-no { color: #991B1B !important; }
.compare-warn { color: #92400E !important; }

/* ── SCORE CARD ──────────────────────────────────────────────────────────────── */
.score-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  padding: 28px 24px 20px;
  position: sticky;
  top: 80px;
}
.score-badge-wrap {
  text-align: center;
  margin-bottom: 24px;
}
.score-badge-circle {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A5C38 0%, #2A7A50 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.score-badge-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
  line-height: 1;
}
.score-badge-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.score-badge-slash {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 3px;
}
.score-badge-title {
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 2px;
}
.score-badge-sub {
  font-size: .75rem;
  color: var(--text-soft);
  margin: 0;
}
.score-bars { display: flex; flex-direction: column; gap: 12px; }
.score-bar-row {}
.score-bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.score-val { color: var(--green); font-weight: 800; }
.score-track {
  background: #e8f0eb;
  border-radius: 99px;
  height: 8px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, #1A5C38 0%, #3aaa6a 100%);
  transition: width 1.1s cubic-bezier(.4,0,.2,1);
}
.score-disclaimer {
  font-size: .68rem;
  color: #bbb;
  line-height: 1.5;
  margin: 16px 0 0;
  text-align: center;
}
@media (max-width: 900px) {
  .compare-layout { grid-template-columns: 1fr; }
  .score-card { position: static; }
}
@media (max-width: 600px) {
  .buy-stats-strip { gap: 0; }
  .buy-stat-num { font-size: .9rem; }
  .buy-stat-label { font-size: .62rem; }
}

/* ── SOCIAL PROOF STATS BANNER ───────────────────────────────────────────────── */
.stats-banner {
  background: #0D3825;
  padding: 40px 0;
}
.stats-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stats-banner-col {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.stats-banner-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.stats-banner-star {
  color: #F59E0B;
  font-size: 2.2rem;
}
.stats-banner-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  letter-spacing: 0;
}
.stats-banner-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stats-banner-div {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-banner-inner { flex-direction: column; gap: 28px; }
  .stats-banner-div { width: 48px; height: 1px; }
  .stats-banner-num { font-size: 2.4rem; }
}

/* ── A+ IMAGE SLIDER ─────────────────────────────────────────────────────────── */
/* ── A+ image slider header ── */
.aplus-slider-section { background: #fff; padding-top: 72px; }
.aplus-slider-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}
.aplus-slider-header h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin: 8px 0 12px;
  line-height: 1.2;
}
.aplus-slider-header p {
  color: var(--text-mid);
  font-size: .97rem;
  line-height: 1.6;
}

/* ── A+ slider — opacity cross-fade ── */
.aplus-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  /* height set via aspect-ratio so images never crop */
  aspect-ratio: 970 / 415;
  overflow: hidden;
  background: #f8f8f8;
}
.aplus-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.aplus-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.aplus-slide.active {
  opacity: 1;
  z-index: 1;
}
.aplus-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.aplus-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  color: #1A5C38;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.14);
  transition: background 0.15s;
  z-index: 3;
}
.aplus-arrow:hover { background: #fff; }
.aplus-prev { left: 14px; }
.aplus-next { right: 14px; }
.aplus-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.aplus-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.aplus-dot.active { background: var(--green); transform: scale(1.3); }
@media (max-width: 640px) {
  .aplus-slider { aspect-ratio: 4 / 3; }
  .aplus-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
  .aplus-slider-section { padding-top: 48px; }
}
