/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 80px; }
body {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: #1a3a3a;
  background-color: #b8d9f0;
  min-height: 100dvh;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* ===== LAYOUT ===== */
.content-wrap { max-width: 1120px; margin: 0 auto; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(184, 217, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #c0ddf0;
  transition: box-shadow 200ms ease;
}
.nav.scrolled { box-shadow: 0 2px 8px rgba(26,58,58,0.08); }
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 44px; width: 44px;
  object-fit: cover; border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(26,58,58,0.08);
  transition: transform 200ms ease;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.nav-links { display: flex; gap: 1.5rem; margin-left: auto; }
.nav-links a {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  font-weight: 500; color: #4a7070;
  transition: color 200ms ease;
}
.nav-links a:hover { color: #E8420A; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: 1rem; }
.cart-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 9999px;
  background: #E8420A; color: white;
  transition: background 200ms ease, transform 200ms ease;
}
.cart-btn:hover { background: #c93808; transform: scale(1.05); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: #f5b400; color: #1a3a3a;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #b8d9f0; line-height: 1;
}
.cart-count.hidden { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  font-weight: 600; transition: all 200ms ease; cursor: pointer;
  white-space: nowrap; border: 2px solid transparent;
}
.btn-primary { background: #E8420A; color: white; border-color: #E8420A; }
.btn-primary:hover { background: #c93808; border-color: #c93808; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,66,10,0.35); }
.btn-ghost { background: transparent; color: #1a3a3a; border-color: #1a3a3a; }
.btn-ghost:hover { background: #1a3a3a; color: white; }
.btn-add { background: #1a3a3a; color: white; border-color: #1a3a3a; padding: 0.5rem 1.25rem; font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); }
.btn-add:hover { background: #E8420A; border-color: #E8420A; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,66,10,0.3); }
.btn-insta { background: #1a3a3a; color: white; border-color: #1a3a3a; padding: 1rem 2rem; font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); }
.btn-insta:hover { background: #E8420A; border-color: #E8420A; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,66,10,0.35); }
.btn-full { width: 100%; }
.btn-sm { padding: 0.5rem 1rem; font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); }

/* ===== SECTION SHARED ===== */
.section-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #b8d9f0; color: #1a3a3a;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 1rem; border-radius: 9999px;
  border: 1.5px solid #c0ddf0; margin-bottom: 1rem;
}
.star { color: #f5b400; }
.section-header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  font-weight: 700; color: #1a3a3a; line-height: 1.15; margin-bottom: 1rem;
}
.section-sub { color: #4a7070; font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); }

/* ===== HERO ===== */
.hero {
  background-color: #b8d9f0;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content visual";
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero-bg-blob {
  position: absolute; border-radius: 9999px;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,180,0,0.12) 0%, transparent 70%);
  bottom: 50px; left: -50px;
}
.hero-content {
  grid-area: content;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 2rem 5rem max(2rem, calc((100vw - 1120px) / 2 + 2rem));
  z-index: 1;
}
.hero-visual {
  grid-area: visual;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem max(2rem, calc((100vw - 1120px) / 2 + 2rem)) 4rem 2rem;
  z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.55); color: #1a3a3a;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1rem; border-radius: 9999px;
  border: 1.5px solid rgba(255,255,255,0.7); margin-bottom: 1.5rem; width: fit-content;
}
.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.5rem, 1rem + 4vw, 5rem);
  font-weight: 600; line-height: 1.1; color: #1a3a3a;
  margin-bottom: 1.5rem; letter-spacing: 0.01em;
}
.hero-title em {
  display: block;
  font-family: 'Sacramento', cursive;
  font-style: normal; color: #E8420A;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.15; font-weight: 400;
}
.hero-sub {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: #2c5c5c; line-height: 1.65; margin-bottom: 2rem; max-width: 48ch;
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badges-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.badge-pill {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); font-weight: 500;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.9);
  color: #2c5c5c;
}
.hero-jar-wrap { position: relative; width: min(420px, 90%); aspect-ratio: 1; }
.hero-jar-img {
  width: 100%; height: 100%;
  object-fit: contain; border-radius: 1.25rem;
  box-shadow: 0 20px 48px rgba(26,58,58,0.2);
  background: #b8d9f0;
  animation: float 5s ease-in-out infinite;
}
.hero-sparkle {
  position: absolute; color: #f5b400; font-size: 1.8rem;
  animation: sparkle 3s ease-in-out infinite;
}
.sparkle-a { top: 5%; right: 5%; animation-delay: 0s; }
.sparkle-b { bottom: 10%; left: 5%; animation-delay: 1s; }
.sparkle-c { top: 40%; right: -5%; animation-delay: 2s; font-size: 1.2rem; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }
@keyframes sparkle { 0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); } 50% { opacity: 0.5; transform: scale(0.8) rotate(20deg); } }

/* ===== TRUST BAR ===== */
.trust-bar { background: #1a3a3a; color: white; padding: 1rem 1.5rem; }
.trust-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem); font-weight: 500; opacity: 0.9; }
.trust-sep { color: #f5b400; font-size: 0.8rem; opacity: 0.7; }

/* ===== PRODUCTS ===== */
.products-section { background-color: #eef7fd; padding: clamp(4rem, 8vw, 6rem) 1.5rem; }
.products-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: #ffffff; border-radius: 1.25rem;
  border: 1.5px solid #c0ddf0; overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(26,58,58,0.16); border-color: #8bc3e8; }
.product-card--bundle { border-color: #f5b400; background: linear-gradient(160deg, #fffdf2 0%, #fffff8 100%); }
.product-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 0.75rem 0.75rem 0 0; background: #b8d9f0; }
.product-img-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.3s ease; }
.product-card:hover .product-photo { transform: scale(1.04); }
.product-badge-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: #E8420A; color: white;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 9999px; letter-spacing: 0.05em;
}
.product-emoji-wrap {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; height: 100%; width: 100%; padding: 1.5rem;
}
.product-emoji { font-size: 5rem; line-height: 1; }
.product-emoji-multi { gap: 0.75rem; }
.emoji-mini-row { display: flex; gap: 1rem; font-size: 2rem; }
.product-info { padding: 1.25rem 1.25rem 1rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.product-name { font-family: 'Fredoka', sans-serif; font-size: clamp(1.125rem, 1rem + 0.75vw, 1.5rem); font-weight: 600; color: #1a3a3a; }
.product-desc { font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem); color: #4a7070; line-height: 1.55; }
.product-macros {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  padding: 0.5rem 0.75rem; background: #d8ecf8; border-radius: 0.75rem;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); color: #2c5c5c;
}
.macro strong { color: #1a3a3a; }
.macro-sep { color: #8aadad; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 0.75rem; border-top: 1px solid #c0ddf0;
}
.product-price { font-family: 'Fredoka', sans-serif; font-size: clamp(1.125rem, 1rem + 0.75vw, 1.5rem); font-weight: 700; color: #E8420A; }
.product-price-old { font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem); color: #8aadad; text-decoration: line-through; margin-left: 0.5rem; }
.bundle-perks { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin: 0.5rem 0; }
.perk { font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); font-weight: 600; color: #1a3a3a; }

/* ===== ABOUT ===== */
.about-section { background: #1a3a3a; padding: clamp(4rem, 8vw, 6rem) 1.5rem; color: white; position: relative; overflow: hidden; }
.about-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,217,240,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-visual { display: flex; justify-content: center; }
.about-label-wrap { position: relative; width: min(360px, 100%); aspect-ratio: 1; }
.about-label-img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  background: #b8d9f0;
}
.about-sparkle { position: absolute; color: #f5b400; font-size: 1.5rem; animation: sparkle 3s ease-in-out infinite; }
.sp-1 { top: 5%; right: 0%; animation-delay: 0.5s; }
.sp-2 { bottom: 10%; left: 0%; animation-delay: 1.5s; }
.about-title { font-family: 'Fredoka', sans-serif; font-size: clamp(2rem, 1.2rem + 2.5vw, 3.5rem); font-weight: 700; line-height: 1.15; color: white; margin-bottom: 1.5rem; }
.about-text p { font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 1rem; max-width: 52ch; }
.about-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num { font-family: 'Fredoka', sans-serif; font-size: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem); font-weight: 700; color: #f5b400; line-height: 1; }
.stat-label { font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }

/* ===== FAQ ===== */
.faq-section { background: #eef7fd; padding: clamp(4rem, 8vw, 6rem) 1.5rem; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: white; border: 1.5px solid #c0ddf0; border-radius: 1.25rem; overflow: hidden; transition: border-color 200ms ease; }
.faq-item[open] { border-color: #E8420A; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; font-weight: 600;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  cursor: pointer; list-style: none; gap: 1rem; color: #1a3a3a;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: #E8420A; flex-shrink: 0; }
details[open] .faq-q::after { content: '−'; }
.faq-a { padding: 0 1.5rem 1.25rem; font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem); color: #4a7070; line-height: 1.65; border-top: 1px solid #c0ddf0; }

/* ===== INSTAGRAM ===== */
/* ── Instagram Feed Section ── */
.insta-section {
  background: linear-gradient(160deg, #1a3a3a 0%, #0f2222 100%);
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
  text-align: center;
}
.insta-inner { max-width: 1120px; margin: 0 auto; }
.insta-header { margin-bottom: 3rem; }
.insta-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,66,10,0.15); border: 1.5px solid #E8420A;
  color: #E8420A; border-radius: 999px;
  padding: 0.4rem 1.1rem; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 1.25rem;
  font-family: 'Montserrat', sans-serif;
}
.insta-badge svg { flex-shrink: 0; }
.insta-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 1.4rem + 2.5vw, 3.75rem);
  font-weight: 700; color: #ffffff; margin-bottom: 0.75rem; line-height: 1.1;
}
.insta-sub {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
  color: rgba(184,217,240,0.85); max-width: 52ch;
  margin: 0 auto; line-height: 1.65;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 2.5rem;
}
@media (max-width: 640px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }
.insta-cell {
  position: relative; aspect-ratio: 1/1; border-radius: 16px;
  overflow: hidden; display: block; cursor: pointer;
  background: #0f2222; text-decoration: none;
}
.insta-cell img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform 0.4s ease;
}
.insta-cell:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(232,66,10,0.75);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.4rem; opacity: 0; transition: opacity 0.3s ease;
  color: white; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700;
}
.insta-cell:hover .insta-overlay { opacity: 1; }
.insta-cell--cta {
  background: #b8d9f0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.insta-cell--cta:hover { background: #E8420A; }
.insta-cta-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem; padding: 1.5rem;
}
.insta-cta-text {
  font-family: 'Fredoka', sans-serif; font-size: clamp(1rem, 0.8rem + 0.8vw, 1.4rem);
  font-weight: 700; color: #1a3a3a; line-height: 1.2; text-align: center;
}
.insta-cell--cta:hover .insta-cta-text { color: white; }
.insta-cta-handle {
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: #E8420A; letter-spacing: 0.05em;
}
.insta-cell--cta:hover .insta-cta-handle { color: rgba(255,255,255,0.85); }
.insta-cell--feature {
  background: linear-gradient(135deg, #E8420A 0%, #c73208 100%);
  display: flex; align-items: center; justify-content: center;
}
.insta-feature-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; padding: 1.5rem; text-align: center;
}
.insta-sparkle { font-size: 2rem; color: #f5b400; }
.insta-feature-text {
  font-family: 'Sacramento', cursive; font-size: clamp(1.3rem, 1rem + 1vw, 2rem);
  color: white; line-height: 1.2;
}
.insta-feature-sub {
  font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.insta-follow-btn {
  background: #E8420A; border-color: #E8420A;
  padding: 1rem 2.5rem; font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.insta-follow-btn:hover {
  background: #b8d9f0; border-color: #b8d9f0; color: #1a3a3a;
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,217,240,0.35);
}

/* ===== FOOTER ===== */
.footer { background: #1a3a3a; color: rgba(255,255,255,0.6); padding: 3rem 1.5rem 2rem; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.footer-logo-img { width: 72px; height: 72px; object-fit: cover; border-radius: 9999px; border: 3px solid rgba(255,255,255,0.15); margin-bottom: 0.5rem; }
.footer-tagline { font-family: 'Sacramento', cursive; font-size: clamp(1.6rem, 3vw, 2.2rem); color: white; line-height: 1.2; }
.footer-sub { font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); margin-top: 0.25rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem); font-weight: 500; color: rgba(255,255,255,0.6); transition: color 200ms ease; }
.footer-links a:hover { color: #E8420A; }
.footer-copy { font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; width: 100%; text-align: center; }

/* ===== CART DRAWER ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(26,58,58,0.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 200ms ease; backdrop-filter: blur(4px); }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100dvh; width: min(400px, 100vw); background: white; z-index: 201; display: flex; flex-direction: column; box-shadow: 0 20px 48px rgba(26,58,58,0.16); transform: translateX(100%); transition: transform 200ms ease; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid #c0ddf0; }
.cart-title { font-family: 'Fredoka', sans-serif; font-size: clamp(1.125rem, 1rem + 0.75vw, 1.5rem); font-weight: 700; }
.cart-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 9999px; color: #4a7070; transition: background 200ms ease; }
.cart-close:hover { background: #eef7fd; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 1rem; color: #4a7070; text-align: center; padding: 3rem 1.5rem; }
.cart-empty p { font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem); }
.cart-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: 0.75rem; border: 1px solid #c0ddf0; margin-bottom: 0.75rem; background: #eef7fd; }
.cart-item-name { font-weight: 600; font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem); flex: 1; }
.cart-item-price { font-weight: 700; color: #E8420A; font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem); }
.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; }
.cart-qty-btn { width: 28px; height: 28px; border-radius: 9999px; border: 1.5px solid #c0ddf0; display: flex; align-items: center; justify-content: center; font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); font-weight: 700; color: #1a3a3a; transition: all 200ms ease; line-height: 1; }
.cart-qty-btn:hover { background: #E8420A; border-color: #E8420A; color: white; }
.cart-qty-val { font-weight: 700; font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem); min-width: 24px; text-align: center; }
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid #c0ddf0; display: flex; flex-direction: column; gap: 0.75rem; }
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 700; font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); }
.cart-note { font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); color: #4a7070; text-align: center; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120%); background: #1a3a3a; color: white; padding: 0.75rem 1.5rem; border-radius: 9999px; font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem); font-weight: 600; z-index: 300; box-shadow: 0 20px 48px rgba(26,58,58,0.16); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); white-space: nowrap; pointer-events: none; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; grid-template-areas: "visual" "content"; padding-top: 64px; min-height: auto; }
  .hero-content { padding: 2rem 1.25rem 2.5rem; order: 2; }
  .hero-visual { padding: 2.5rem 1.25rem 1rem; order: 1; }
  .hero-jar-wrap { width: min(280px, 70vw); }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { order: -1; }
  .about-label-wrap { width: min(280px, 80vw); margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .trust-inner { gap: 0.75rem; }
  .trust-sep { display: none; }
  .hero-cta-row .btn-ghost { display: none; }
}

/* ============================================================
   PRE-ORDER SECTION  (v7)
   ============================================================ */
.nav-preorder-link {
  color: #E8420A !important;
  font-weight: 700 !important;
}

.preorder-section {
  background: #1a3a3a;
  padding: 80px 24px 96px;
}

.preorder-inner {
  max-width: 720px;
  margin: 0 auto;
}

.preorder-section .section-badge {
  background: rgba(184,217,240,0.15);
  color: #b8d9f0;
  border: 1px solid rgba(184,217,240,0.3);
}

.preorder-section .section-title {
  color: #ffffff;
}

.preorder-section .section-sub {
  color: #b8d9f0;
}

/* Form card */
.preorder-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  margin-top: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.preorder-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .preorder-fields {
    grid-template-columns: 1fr;
  }
  .preorder-form {
    padding: 24px 20px;
  }
}

.preorder-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.preorder-field-full {
  grid-column: 1 / -1;
}

.preorder-field-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a3a3a;
}

.preorder-field-group input,
.preorder-field-group textarea {
  border: 2px solid #d0eaf9;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #1a3a3a;
  background: #f4fbff;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.preorder-field-group input:focus,
.preorder-field-group textarea:focus {
  border-color: #E8420A;
  background: #fff;
}

/* Flavor checkboxes */
.preorder-flavor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 480px) {
  .preorder-flavor-grid {
    grid-template-columns: 1fr;
  }
}

.flavor-check {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4fbff;
  border: 2px solid #d0eaf9;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a3a3a;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.flavor-check:hover {
  border-color: #E8420A;
  background: #fff5f2;
}

.flavor-check input[type="checkbox"] {
  accent-color: #E8420A;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: none;
  background: none;
  padding: 0;
}

.flavor-check--bundle {
  grid-column: 1 / -1;
  background: #fff8e6;
  border-color: #f5b400;
}

.flavor-check--bundle:hover {
  border-color: #E8420A;
}

.flavor-price {
  margin-left: auto;
  font-weight: 700;
  color: #E8420A;
  font-size: 13px;
}

/* Submit */
.preorder-submit-btn {
  margin-top: 24px;
  font-size: 16px;
  padding: 16px;
  letter-spacing: 0.03em;
}

.preorder-disclaimer {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #4a7a7a;
  margin-top: 12px;
}

/* Success state */
.preorder-success {
  background: #ffffff;
  border-radius: 20px;
  padding: 56px 32px;
  margin-top: 32px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.preorder-success-icon {
  font-size: 48px;
  color: #f5b400;
  line-height: 1;
}

.preorder-success h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 28px;
  color: #1a3a3a;
  margin: 0;
}

.preorder-success p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #1a3a3a;
  max-width: 420px;
  margin: 0;
  line-height: 1.6;
}

.preorder-success-sub a {
  color: #E8420A;
  font-weight: 700;
  text-decoration: none;
}

/* ===== ORDER NOW BUTTON (Stripe direct) ===== */
.btn-order { display:inline-flex; align-items:center; justify-content:center; text-decoration:none; background:#E8420A; color:white !important; border:2px solid #E8420A; padding:0.5rem 1.25rem; font-size:clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); font-weight:700; font-family:inherit; letter-spacing:0.03em; border-radius:999px; transition:all 0.2s; cursor:pointer; }
.btn-order:hover { background:#c93608; border-color:#c93608; transform:translateY(-1px); box-shadow:0 4px 16px rgba(232,66,10,0.35); text-decoration:none; }

/* ===== LAUNCH COUNTDOWN ===== */
.launch-countdown {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.6rem; margin: 1.5rem 0 0.5rem;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase; color: #E8420A;
}
.countdown-clock {
  display: flex; align-items: center; gap: 0.3rem;
}
.countdown-unit {
  display: flex; flex-direction: column; align-items: center;
  background: #1a3a3a; color: white; border-radius: 10px;
  padding: 0.5rem 0.75rem; min-width: 56px;
}
.countdown-unit span {
  font-family: 'Fredoka', sans-serif; font-size: clamp(1.4rem, 1.2rem + 0.8vw, 2rem);
  font-weight: 700; line-height: 1; color: #f5b400;
}
.countdown-unit small {
  font-family: 'Montserrat', sans-serif; font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.countdown-sep {
  font-family: 'Fredoka', sans-serif; font-size: 1.8rem; font-weight: 700;
  color: #1a3a3a; line-height: 1; padding-bottom: 0.8rem;
}
.countdown-date {
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; color: #1a3a3a; opacity: 0.7;
}

/* ===== WAITLIST CTA BUTTON (on product cards) ===== */
.btn-waitlist-cta {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; background: #1a3a3a; color: white !important;
  border: 2px solid #1a3a3a; padding: 0.5rem 1.25rem;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); font-weight: 700;
  font-family: inherit; border-radius: 999px; transition: all 0.2s;
}
.btn-waitlist-cta:hover {
  background: #E8420A; border-color: #E8420A; color: white !important;
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,66,10,0.3);
  text-decoration: none;
}
