/* ============================================================
   CHEF CALEB — 6 Week Summer Shred
   Blue & White Theme (original palette) + clean structure
   Fonts: Schoolbell (headings) + Inter (body)
   ============================================================ */

/* --- Design Tokens (original palette) --- */
:root {
  --bg:          #eef7ff;
  --panel:       #ffffff;
  --panel-dark:  #0d4f8b;
  --text:        #0e2238;
  --muted:       #57708e;
  --line:        #c8def3;
  --blue:        #1683ff;
  --blue-dark:   #0b63c7;
  --warm:        #77b8ff;
  --warm-2:      #f4faff;
  --white:       #fff;
  --shadow:      0 22px 50px rgba(28, 77, 90, .10);
  --shadow-soft: 0 12px 30px rgba(28, 77, 90, .07);
  --max:         1380px;
  --radius:      18px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 85% 10%, rgba(22,131,255,.14) 0%, rgba(22,131,255,0) 24%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

@supports (-webkit-touch-callout: none) {
  body { -webkit-text-size-adjust: 100%; }
}

a { text-decoration: none; color: inherit; }
a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

img { display: block; max-width: 100%; }

/* --- Typography --- */
.comic,
h1, h2, h3,
.eyebrow,
.mini-tag,
.brand,
.floating-title {
  font-family: 'Schoolbell', cursive;
}

.btn,
.nav-links a,
.price,
.old-price {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Container --- */
.container {
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto;
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.25,.8,.25,1), transform 0.7s cubic-bezier(.25,.8,.25,1);
}
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   PROMO STRIP
   ============================================================ */
.promo-strip {
  background: #111;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 70;
}

.promo-strip-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 12px;
  text-align: center;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: .96rem;
  letter-spacing: .02em;
}

.promo-strip strong { color: #9fe870; }
.promo-strip a { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 40px;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47,143,157,.12);
  box-shadow: 0 8px 24px rgba(28,77,90,.06);
}

.nav-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: 'Schoolbell', cursive;
  font-size: 1.2rem;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--blue);
}

.nav-sale-pill {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 3px solid #000;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff7f7 0%, #ffdede 100%);
  color: #e11d48;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(225,29,72,.22);
  min-width: 270px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: end;
}

.nav-links a {
  color: #5f7881;
  font-size: .92rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 2px solid var(--blue);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  z-index: 101;
}
.hamburger span {
  height: 4px; width: 100%;
  background: #0e2238;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: all 0.18s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px) scale(1.01); }
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.btn-primary {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(47,143,157,.22);
  font-size: 1.02rem;
  font-weight: 800;
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--blue-dark) 0%, #0952b3 100%);
  box-shadow: 0 16px 32px rgba(22,131,255,.35);
  color: #fff;
}

.btn-primary.cta-glow { animation: ctaGlow 1.5s infinite alternate; }
@keyframes ctaGlow {
  0%   { box-shadow: 0 0 0 4px rgba(22,131,255,.2), 0 12px 24px rgba(22,131,255,.3); }
  100% { box-shadow: 0 0 0 12px rgba(22,131,255,.1), 0 12px 32px rgba(22,131,255,.35); }
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 2px solid #d8e8eb;
}
.btn-secondary:hover { background: #f7fcfc; }

/* Button states */
.btn.loading, .btn.added { pointer-events: none; opacity: 0.85; }
.btn.added {
  background: #8df56f !important;
  color: #0e2238 !important;
  border-color: #8df56f !important;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 3px solid #fff;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   TOP BANNER
   ============================================================ */
.top-banner { padding: 0 0 8px; }

.banner-shell {
  position: relative;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  background: #eaf5ff;
  aspect-ratio: 1200 / 360;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-bottom: 78px;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
}

.banner-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.banner-cta-row .btn {
  min-width: 220px;
  padding: 14px 22px;
  font-size: 1.02rem;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
  border: 2px solid #000;
  font-family: 'Schoolbell', cursive;
}

.banner-note {
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 1.25rem;
  color: #fff;
  background-color: #ff4040;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 8px 16px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Hide unused banner elements */
.banner-overlay, .banner-content, .banner-copy,
.banner-points, .banner-proof { display: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero { padding: 58px 0 28px; }

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(242,249,255,.98) 100%);
  border: 1px solid #d9eaee;
  border-radius: 32px;
  padding: 38px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: auto -60px -120px auto;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(22,131,255,.12) 0%, rgba(22,131,255,0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: .95rem;
  letter-spacing: .5px;
  font-family: 'Schoolbell', cursive;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 14px;
  letter-spacing: -.02em;
  font-family: 'Schoolbell', cursive;
}
h1 .accent { color: var(--blue); }

h2 {
  font-family: 'Schoolbell', cursive;
  color: var(--text);
}

h3 {
  font-family: 'Schoolbell', cursive;
  color: var(--text);
}

.hero-copy {
  font-size: 1.08rem;
  color: #444;
  max-width: 650px;
  margin-bottom: 18px;
  line-height: 1.65;
}

.hero-stat-band {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 0 0 14px;
  padding: 16px 18px;
  background: #f0fbfc;
  border: 1px solid #cde9ed;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  max-width: 470px;
}

.hero-stat-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.1rem, 8vw, 4.8rem);
  line-height: .88;
  font-weight: 800;
  letter-spacing: -.08em;
  color: var(--blue-dark);
}

.hero-stat-copy {
  font-size: .95rem;
  color: #3a5b64;
  font-weight: 700;
  line-height: 1.45;
  max-width: 260px;
}

.social-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d9eaee;
  border-radius: 999px;
  padding: 9px 14px;
  color: #47656c;
  font-size: .88rem;
  font-weight: 700;
  box-shadow: 0 5px 14px rgba(0,0,0,.05);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-burst {
  position: absolute;
  inset: 28px 20px 42px 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,99,71,.08) 0%, rgba(255,99,71,0) 26%),
    radial-gradient(circle at 82% 22%, rgba(47,143,157,.10) 0%, rgba(47,143,157,0) 28%),
    radial-gradient(circle at 50% 75%, rgba(126,214,223,.14) 0%, rgba(126,214,223,0) 30%),
    linear-gradient(180deg, rgba(255,255,255,.45) 0%, rgba(255,255,255,.08) 100%);
  border-radius: 30px;
  opacity: .7;
}

.hero-character {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  filter: drop-shadow(0 18px 25px rgba(0,0,0,.18));
}

/* Stickers */
.hero-sticker {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 2px solid #111;
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  max-width: 220px;
}
.hero-sticker strong {
  display: block;
  font-family: 'Schoolbell', cursive;
  font-size: 1rem;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-sticker span { color: #5b5b5b; font-size: .88rem; }
.sticker-top { top: 36px; right: 8px; transform: rotate(3deg); }
.sticker-bottom { left: 6px; bottom: 38px; transform: rotate(-4deg); }

/* Hidden elements */
.hero-benefits, .mini-proof, .hero-top-pill, .sale-timer { display: none; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 38px 0; }

.section-intro {
  text-align: center;
  margin-bottom: 32px;
  padding-top: 18px;
  padding-bottom: 8px;
}
.section-intro h2 {
  font-size: 2.1rem;
  margin-bottom: 10px;
  color: var(--text);
  font-family: 'Schoolbell', cursive;
}
.section-intro p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
}

.mini-tag {
  background: rgba(255,255,255,.76);
  border: 2px solid #c7c7c7;
  border-radius: 999px;
  padding: 9px 14px;
  color: #444;
  font-size: .92rem;
  font-family: 'Schoolbell', cursive;
  box-shadow: 0 5px 14px rgba(0,0,0,.06);
  display: inline-block;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.product-section { padding-top: 12px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  gap: 28px;
  align-items: start;
  justify-content: center;
}

.product-card {
  background: #fff;
  color: var(--text);
  border: 3px solid #000;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  min-width: 0;
  padding: 18px 16px 16px;
  position: relative;
  min-height: 100%;
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), border-color 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--blue); }
.product-card::before { content: none; }

.product-ribbon {
  position: absolute;
  top: -18px; right: 16px;
  background: #18a8ff;
  color: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 8px 16px;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 1rem;
  transform: rotate(7deg);
  box-shadow: 0 8px 14px rgba(0,0,0,.16);
}

.product-visual {
  width: 100%;
  max-width: 210px;
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, #fff 0%, #f1fbfc 100%);
  border: 3px solid #000;
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  position: relative;
}
.product-card.book-card .product-visual,
.product-card.meal-plan-card .product-visual { max-width: 210px; aspect-ratio: 1/1; }

.product-visual img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(36,26,51,.18));
  transition: transform 0.4s ease;
}
.product-card:hover .product-visual img { transform: scale(1.04); }

.meal-plan-bonus {
  position: absolute;
  right: -14px; bottom: -16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 3px solid #000;
  border-radius: 14px;
  padding: 6px 8px;
  box-shadow: 0 10px 18px rgba(28,77,90,.12);
  font-family: 'Schoolbell', cursive;
  color: var(--text);
  font-size: 1rem;
  z-index: 3;
}
.meal-plan-bonus img { width: 34px; height: 46px; object-fit: contain; }

.product-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 420px;
  flex: 1;
  min-height: 430px;
}
.product-meta .mini-tag {
  margin-bottom: 8px;
  display: inline-flex;
  background: #fff;
  border: 1px solid #d9eaee;
  color: #55737c;
  box-shadow: none;
}

.product-meta h2 {
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 1.75rem;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.05;
}

.product-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px 0;
  font-size: .88rem;
  color: #5b6f82;
  font-weight: 600;
  min-height: 24px;
}
.product-reviews .stars {
  color: #f5b400;
  letter-spacing: 1px;
  font-size: .95rem;
  -webkit-text-stroke: 0.6px #000;
  font-family: Arial, sans-serif;
}

.product-meta p {
  color: var(--muted);
  max-width: 30ch;
  font-size: .94rem;
  min-height: 72px;
  margin-bottom: 8px;
}

.price-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
  flex-wrap: wrap;
}

.price {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem;
  color: var(--text);
  line-height: 1;
  font-weight: 800;
}

.old-price {
  font-size: 1.05rem;
  color: #d55252;
  text-decoration: line-through;
  padding-bottom: 6px;
}

.list { display: none; }

.included-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 8px;
  padding: 8px 14px;
  background: #f6fbff;
  border: 2px solid #000;
  border-radius: 999px;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: .88rem;
  min-width: 190px;
  text-align: center;
}
.included-badge img { width: 24px; height: 24px; object-fit: contain; flex: 0 0 24px; }

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(100%, 260px);
  margin-top: auto;
  padding-top: 10px;
}
.card-actions .btn { width: 100%; min-height: 54px; font-size: 1.08rem; font-weight: 800; }

/* ============================================================
   STORIES CAROUSEL
   ============================================================ */
.stories-section { padding: 14px 0 20px; }

.stories-shell {
  background: #fff;
  border: 1px solid #dce8f3;
  border-radius: 28px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.stories-header { text-align: center; margin-bottom: 22px; }
.stories-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--text);
}
.stories-header p { color: var(--muted); font-size: 1rem; }
.stories-note { font-size: .76rem; color: #95a6b7; margin-top: 8px; display: block; }

.stories-carousel {
  overflow: hidden;
  padding: 6px 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.stories-carousel::-webkit-scrollbar { display: none; }
.stories-carousel.dragging { cursor: grabbing !important; }
.stories-carousel:hover .stories-track { animation-play-state: paused; }

@keyframes storiesMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 9px)); }
}

.stories-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  animation: storiesMarquee 140s linear infinite;
  user-select: none;
  -webkit-user-select: none;
}

.story-card {
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid #e1eaf3;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  scroll-snap-align: start;
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
}
.story-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 12px 28px rgba(0,0,0,.08); }

.story-photo { height: 380px; border-radius: 16px; background: #eef6ff; margin-bottom: 12px; overflow: hidden; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-stars { color: #f5b400; letter-spacing: 1px; font-size: 1rem; margin-bottom: 8px; -webkit-text-stroke: 0.6px #000; font-family: Arial, sans-serif; }
.story-copy { font-size: .92rem; color: #4f6379; line-height: 1.58; min-height: 142px; }
.story-meta { display: flex; justify-content: space-between; gap: 8px; margin-top: 14px; font-size: .78rem; color: #6f8195; }
.story-meta strong { color: var(--text); }
.story-product { color: #2f4f73; font-weight: 700; font-size: .8rem; margin-top: 6px; }

/* ============================================================
   TRANSFORMATION GALLERY
   ============================================================ */
.gallery-section { padding: 58px 0 22px; }

.masonry-gallery {
  column-count: 4;
  column-gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry-gallery img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 3px solid #000;
  display: block;
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), border-color 0.3s ease;
}

.masonry-gallery img:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: 58px 0 22px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.step {
  background: #fff;
  border: 3px solid #000;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.step:hover { transform: translateY(-4px); border-color: var(--blue); }

.step-number {
  display: inline-flex;
  width: 42px; height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: #e7fbfd;
  color: var(--blue-dark);
  font-family: 'Schoolbell', cursive;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text); font-family: 'Schoolbell', cursive; }
.step p { color: var(--muted); font-size: .95rem; }

/* Decorative character in step cards */
.step-char {
  position: absolute;
  bottom: 0; right: -8px;
  width: 90px;
  opacity: 0.14;
  pointer-events: none;
  transition: opacity 0.3s;
}
.step:hover .step-char { opacity: 0.25; }

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */
.included { padding: 58px 0 22px; }

.included-wrap { display: grid; gap: 22px; }

.included-subsection {
  background: rgba(255,255,255,.55);
  border: 1px solid #d9e7f3;
  border-radius: 24px;
  padding: 22px 18px 18px;
}

.included-subtitle {
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 14px;
  color: var(--text);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.included-card {
  background: #fff;
  border: 3px solid #000;
  border-radius: 18px;
  padding: 22px 82px 22px 22px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), border-color 0.3s ease;
}
.included-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.included-card h3 {
  font-size: 1.16rem;
  margin-bottom: 8px;
  color: var(--text);
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
}
.included-card p { color: var(--muted); font-size: .95rem; }

.included-icon-badge {
  position: absolute;
  right: 14px; bottom: 12px;
  width: 52px; height: 52px;
  border-radius: 12px;
  border: 2px solid #000;
  background: #fff;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.included-icon-badge img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ============================================================
   OFFER BAND
   ============================================================ */
.offer-band { padding: 62px 0 26px; }

.offer-shell {
  background: linear-gradient(180deg, #17313a 0%, #12262d 100%);
  border-radius: 30px;
  padding: 34px 28px;
  box-shadow: var(--shadow);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-char {
  position: absolute;
  right: 24px; bottom: 0;
  height: 240px;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.35));
  pointer-events: none;
}

.offer-shell h2 {
  font-family: 'Schoolbell', cursive;
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #fff;
}
.offer-shell p { color: #d2e5e8; max-width: 720px; margin: 0 auto 20px; }
.offer-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.offer-shell .btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.offer-shell .btn-secondary:hover { background: rgba(255,255,255,.22); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 58px 0 70px; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 3px solid #000;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), border-color 0.3s ease;
}
.faq-item:hover { transform: translateY(-2px); border-color: var(--blue); }
.faq-item h3 { font-size: 1.12rem; margin-bottom: 8px; color: var(--text); font-family: 'Schoolbell', cursive; }
.faq-item p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   NEWSLETTER SUBSCRIBE
   ============================================================ */
.newsletter-section { padding: 40px 0 60px; }

.newsletter-shell {
  background: linear-gradient(135deg, #1683ff 0%, #0b63c7 100%);
  border-radius: 24px;
  padding: 42px 32px;
  box-shadow: var(--shadow);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 3px solid #000;
}

.newsletter-content { flex: 1; }
.newsletter-content h2 {
  font-family: 'Schoolbell', cursive;
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,.15);
}
.newsletter-content p {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  max-width: 500px;
}
.newsletter-content strong { color: #8df56f; }

.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 480px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid #000;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
}
.newsletter-form input:focus { border-color: #8df56f; box-shadow: 0 0 0 4px rgba(141,245,111,.3); }
.newsletter-form .btn { white-space: nowrap; border: 2px solid #000; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 30px 0 44px;
  color: #688088;
  font-size: .9rem;
  text-align: center;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
@keyframes slowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-plan-cta {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 85;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 3px solid #000;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  color: #0e2238;
  transition: transform 0.2s ease;
}
.floating-plan-cta:hover { transform: translateY(-2px); }
.floating-plan-cta strong { font-size: 1.18rem; line-height: 1; white-space: nowrap; }
.floating-plan-cta .bang {
  color: #67d84b;
  font-size: 2rem;
  line-height: 1;
  animation: slowBounce 1.9s ease-in-out infinite;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.floating-plan-cta small { display: block; font-size: .78rem; color: #42607e; }

/* ============================================================
   WELCOME POPUP
   ============================================================ */
.welcome-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(14,34,56,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.welcome-popup-overlay.active {
  opacity: 1; pointer-events: auto;
}

.welcome-popup-content {
  background: #fff;
  border: 3px solid #000;
  border-radius: 24px;
  width: min(90vw, 480px);
  padding: 32px;
  position: relative;
  box-shadow: 0 24px 48px rgba(0,0,0,.25);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(.25,.8,.25,1);
  text-align: center;
}
.welcome-popup-overlay.active .welcome-popup-content {
  transform: none;
}

.welcome-close-btn {
  position: absolute; top: 12px; right: 12px;
  background: transparent; border: none;
  font-size: 1.8rem; line-height: 1;
  color: #57708e; cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.welcome-close-btn:hover { background: #f0fbfc; color: #000; }

.welcome-popup-header h2 {
  font-family: 'Schoolbell', cursive;
  font-size: 2.2rem;
  color: #1683ff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.welcome-popup-body p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.5;
}

.welcome-popup-offer {
  background: #eaf5ff;
  border: 2px dashed #1683ff;
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
}
.welcome-offer-title {
  display: block;
  font-family: 'Schoolbell', cursive;
  font-size: 1.3rem;
  color: #0b63c7;
  margin-bottom: 4px;
}
.welcome-offer-desc {
  font-weight: 700; color: #0e2238; font-size: 1.1rem;
}

.welcome-popup-actions {
  display: flex; flex-direction: column; gap: 10px; margin-top: 24px;
}
.welcome-popup-actions .btn { width: 100%; min-height: 52px; font-size: 1.1rem; border: 2px solid #000; }
.welcome-popup-actions .btn-secondary { background: #f7fbff; color: #57708e; border-color: transparent; }
.welcome-popup-actions .btn-secondary:hover { background: #eaf5ff; color: #0e2238; text-decoration: underline; }

/* ============================================================
   MEAL PLAN MODAL
   ============================================================ */
.mealplan-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 120; }
.mealplan-modal.active { display: flex; }
.mealplan-backdrop { position: absolute; inset: 0; background: rgba(10,20,30,.36); backdrop-filter: blur(10px); }

.mealplan-panel {
  position: relative; z-index: 2;
  width: min(1120px, 92vw);
  height: min(84vh, 820px);
  background: #fff;
  border: 3px solid #000;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}
.mealplan-panel iframe { width: 100%; height: 100%; border: 0; background: #fff; }

.mealplan-close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 2px solid #000;
  background: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.mealplan-close:hover { background: #f5f5f5; }

/* ============================================================
   TOAST
   ============================================================ */
.toast-error {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  background: #ff4040; color: #fff;
  padding: 16px 32px; border-radius: 8px;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  z-index: 9999; opacity: 0; pointer-events: none;
  transition: opacity 0.4s, bottom 0.4s;
}
.toast-error.visible { opacity: 1; bottom: 56px; pointer-events: auto; }

/* ============================================================
   HAMBURGER
   ============================================================ */
@media (max-width: 900px) {
  .hamburger { display: flex; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1180px */
@media (max-width: 1180px) {
  .hero-grid, .product-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-gallery { column-count: 3; }
}

/* 900px */
@media (max-width: 900px) {
  .nav-inner { grid-template-columns: 1fr auto; gap: 12px; }
  .nav-links { display: none; }
  .nav-links.mobile-active {
    display: flex; flex-direction: column; gap: 8px;
    background: #fff;
    position: absolute; top: 60px; left: 0;
    width: 100vw; z-index: 100;
    box-shadow: 0 8px 24px rgba(28,77,90,.12);
    padding: 12px 0;
  }
  .steps-grid, .included-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .offer-char { display: none; }
  section { padding-top: 24px; padding-bottom: 24px; }
}

/* 700px */
@media (max-width: 700px) {
  .nav-inner { grid-template-columns: 1fr auto auto; padding: 8px 0 10px; gap: 8px; justify-items: center; }
  .nav-sale-pill { min-width: auto; padding: 8px 14px; font-size: .82rem; white-space: nowrap; }
  .brand { font-size: 1.02rem; }
  .brand img { width: 38px; height: 38px; }
  .promo-strip { position: relative; top: auto; }
  .nav { top: 0; }
  .promo-strip-inner { min-height: 34px; padding: 6px 10px; font-size: .82rem; }

  /* Override font to Inter on small screens */
  .promo-strip-inner, .promo-strip strong,
  .brand, h1, h2, h3,
  .section-intro h2, .product-meta h2,
  .included-subtitle, .included-card h3,
  .step h3, .faq-item h3,
  .mini-tag, .product-ribbon,
  .banner-note, .nav-sale-pill,
  .floating-plan-cta, .floating-plan-cta strong,
  .included-badge, .eyebrow, .btn, .old-price, .price {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-style: normal !important;
    letter-spacing: 0 !important;
  }

  .hero { padding: 28px 0 16px; }
  .hero-card { padding: 18px 14px; }
  .hero-stat-band { max-width: none; }
  .hero-visual { min-height: 360px; }

  .banner-shell { aspect-ratio: auto; padding-bottom: 72px; }
  .banner-bg { position: relative; height: auto; object-fit: contain; }
  .banner-cta-row {
    left: 50%; top: 50%; bottom: auto;
    transform: translate(-50%, -50%);
    flex-direction: column; gap: 8px;
    width: calc(100% - 24px); max-width: 340px;
  }
  .banner-cta-row .btn { min-width: 0; width: 100%; padding: 12px 14px; font-size: .92rem; }
  .banner-note { font-size: 1rem; padding: 6px 12px; }

  .steps-grid, .included-grid, .faq-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-card { padding: 18px 14px 16px; }
  .product-meta { min-height: 0; max-width: 100%; }
  .product-meta p { min-height: auto; }
  .price { font-size: 2.2rem; }
  .card-actions { width: 100%; }

  .stories-shell { border-radius: 20px; padding: 18px 14px; width: 100%; margin-left: 0; margin-right: 0; overflow: hidden; }
  .story-card { flex: 0 0 82vw; min-width: 82vw; }
  .story-photo { height: 220px; }
  .story-copy { min-height: auto; font-size: .88rem; }

  .masonry-gallery { column-count: 1; }

  .step, .included-card, .faq-item { padding: 18px 16px; }
  .included-card { padding: 18px 68px 18px 16px; }
  .included-icon-badge { width: 46px; height: 46px; right: 10px; bottom: 10px; }
  .included-subsection { padding: 18px 12px 14px; }
  .included-subtitle { font-size: 1.25rem; }

  .how-it-works, .included, .faq, .offer-band { padding-top: 34px; padding-bottom: 16px; }
  .section-intro h2 { font-size: 1.55rem; }
  .offer-shell { padding: 24px 16px; border-radius: 20px; }
  .offer-shell h2 { font-size: 1.6rem; }
  .offer-actions { flex-direction: column; }

  .newsletter-shell { flex-direction: column; text-align: center; padding: 24px 16px; }
  .newsletter-form { flex-direction: column; width: 100%; max-width: 100%; }
  .newsletter-content h2 { font-size: 1.8rem; }

  .floating-plan-cta { right: 10px; left: 10px; bottom: 10px; justify-content: center; padding: 10px 12px; }
  .floating-plan-cta strong { font-size: 1rem; white-space: normal; text-align: center; }
  .mealplan-panel { width: 94vw; height: 82vh; border-radius: 18px; }
}
