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

:root {
  --warm-white: #FFFCF5;
  --gold-light: #FFF3D6;
  --gold: #E8A817;
  --gold-deep: #C98B0F;
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --sage: #95D5B2;
  --sage-pale: #D8F3DC;
  --brown: #2C1810;
  --brown-mid: #5C4033;
  --brown-muted: #9C8577;
  --sand: #F4E8D1;
  --cream: #FFF8ED;

  --display: 'Young Serif', Georgia, serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--brown);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}

nav.scrolled {
  background: rgba(255, 252, 245, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(44, 24, 16, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--brown);
}

.nav-logo img {
  height: 52px;
  border-radius: 50%;
}

.nav-logo span {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-mid);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--forest); }

.nav-cart,
.nav-links a.nav-cart {
  background: var(--forest);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s;
}

.nav-cart:hover,
.nav-links a.nav-cart:hover { background: var(--forest-light); color: #ffffff; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 8rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-text { padding-right: 2rem; }

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.hero h1 .gold { color: var(--gold-deep); }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--brown-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: white;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(232, 168, 23, 0.3);
}

.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232, 168, 23, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--brown);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid rgba(44, 24, 16, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.hero-proof {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
}

.hero-proof-item strong {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--forest);
}

.hero-proof-item span {
  font-size: 0.78rem;
  color: var(--brown-muted);
  font-weight: 500;
}

/* Hero image */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.hero-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.hero-img-float {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(44, 24, 16, 0.15);
  border: 4px solid var(--warm-white);
}

.hero-img-float.top {
  top: -20px;
  right: -30px;
  border-radius: 50%;
  width: 160px;
  height: 160px;
}

.hero-img-float.bottom {
  bottom: 40px;
  left: -40px;
}

.hero-ing-tag {
  position: absolute;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown);
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  white-space: nowrap;
}

.hero-ing-tag.t1 { top: 12%; right: -20px; }
.hero-ing-tag.t2 { bottom: 25%; left: -50px; }
.hero-ing-tag.t3 { bottom: 8%; right: 10%; }

.hero-ing-tag::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.hero-ing-tag.t1::before { background: var(--gold); }
.hero-ing-tag.t2::before { background: var(--forest); }
.hero-ing-tag.t3::before { background: #D4713A; }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--forest);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.marquee {
  display: flex;
  gap: 3rem;
  animation: scroll-marquee 25s linear infinite;
  width: max-content;
}

.marquee span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.marquee span::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── WHY SECTION ── */
.why {
  padding: 7rem 2.5rem;
  background: var(--cream);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 2.25rem;
  border: 1px solid rgba(44, 24, 16, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 24, 16, 0.06);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.why-icon.dates { background: var(--gold-light); }
.why-icon.organic { background: var(--sage-pale); }
.why-icon.handmade { background: #FDE8D8; }

.why-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--brown-muted);
  line-height: 1.75;
}

/* ── PRODUCT SHOWCASE ── */
.showcase {
  padding: 7rem 2.5rem;
  background: var(--warm-white);
}

.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1rem;
}

.product-card {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(44, 24, 16, 0.05);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s, box-shadow 0.4s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 24, 16, 0.1);
}

.product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--forest);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.product-card-body {
  padding: 1.75rem;
}

.product-card-body h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.product-card-body .size {
  font-size: 0.82rem;
  color: var(--brown-muted);
  margin-bottom: 1.25rem;
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--brown);
}

.product-price .per {
  font-family: var(--body);
  font-size: 0.75rem;
  color: var(--brown-muted);
  font-weight: 400;
}

.product-cart-btn {
  background: var(--gold);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.product-cart-btn:hover {
  background: var(--gold-deep);
  transform: scale(1.1);
}

/* ── INGREDIENTS CLOUD ── */
.ingredients {
  padding: 6rem 2.5rem;
  background: var(--gold-light);
  text-align: center;
  overflow: hidden;
}

.ingredients-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ingredients .section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ing-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.ing-pill {
  background: var(--warm-white);
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brown);
  border: 1px solid rgba(44, 24, 16, 0.06);
  transition: all 0.3s;
  cursor: default;
}

.ing-pill:hover {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
  transform: translateY(-2px);
}

.ing-pill.highlight {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  font-weight: 600;
}

.ing-note {
  font-size: 0.85rem;
  color: var(--brown-mid);
  font-weight: 500;
}

.ing-note strong { color: var(--forest); }

/* ── NUTRITION HIGHLIGHTS ── */
.nutrition {
  padding: 6rem 2.5rem;
  background: var(--warm-white);
}

.nutrition-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.nutrition .section-title {
  margin-bottom: 3rem;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.nut-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(44, 24, 16, 0.04);
}

.nut-card-stat {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.nut-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.nut-card p {
  font-size: 0.82rem;
  color: var(--brown-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .nutrition-grid { grid-template-columns: 1fr; }
}

/* ── STORY ── */
.story {
  padding: 7rem 2.5rem;
  background: var(--warm-white);
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-img-area { position: relative; }

.story-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
}

.story-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-radius: 20px;
  object-fit: cover;
  border: 5px solid var(--warm-white);
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.1);
}

.story-text { padding-left: 1rem; }

.story-text .section-title {
  margin-bottom: 1.75rem;
}

.story-text p {
  font-size: 0.95rem;
  color: var(--brown-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.story-text p:first-of-type {
  font-size: 1.05rem;
  color: var(--brown);
  font-weight: 400;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
  text-decoration: none;
  transition: gap 0.3s;
}

.story-link:hover { gap: 0.75rem; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 7rem 2.5rem;
  background: var(--forest);
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: var(--display);
  font-size: 30rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials .section-label { color: var(--sage); }

.testimonials .section-title {
  color: white;
  margin-bottom: 3rem;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.test-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.test-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.test-card blockquote {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.test-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
}

/* ── COMMUNITY CTA ── */
.cta-section {
  padding: 6rem 2.5rem;
  background: var(--gold-light);
  text-align: center;
}

.cta-inner {
  max-width: 650px;
  margin: 0 auto;
}

.cta-inner .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.cta-inner p {
  font-size: 0.95rem;
  color: var(--brown-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── GRANOLA TEXTURE BAND ── */
.texture-band {
  height: 300px;
  background: url('https://assets.bigcartel.com/theme_images/160150206/Untitled+design+_3_.png?auto=format&fit=max&w=1600') center/cover no-repeat;
  position: relative;
}

.texture-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, transparent 15%, transparent 85%, var(--warm-white) 100%);
}

/* ── FOOTER ── */
footer {
  background: var(--warm-white);
  padding: 4rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--brown-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--brown-muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--forest); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--brown-muted);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.footer-social a:hover { background: var(--sage-pale); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    min-height: auto;
  }
  .hero-visual { order: -1; }
  .hero-text { padding-right: 0; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-img-float, .hero-ing-tag { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
  .story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .story-img-accent { display: none; }
  .story-text { padding-left: 0; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

/* ── DESIGN LABEL ── */
.design-label {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--brown);
  color: var(--sand);
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem 0;
  font-size: 0.8rem;
  color: var(--brown-muted);
}
.breadcrumb a { color: var(--brown-muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.4; }

/* ── PRODUCT PAGE LAYOUT ── */
.product-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-gallery { position: sticky; top: 100px; }
.product-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  background: var(--cream);
  display: block;
}
.product-thumbs { display: flex; gap: 0.75rem; margin-top: 1rem; }
.product-thumb {
  width: 80px; height: 80px;
  object-fit: cover; border-radius: 12px;
  border: 2px solid transparent; cursor: pointer; transition: border-color 0.3s; background: var(--cream);
}
.product-thumb:hover, .product-thumb.active { border-color: var(--gold); }
.product-details { padding-top: 0.5rem; }
.product-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.badge { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; padding: 0.35rem 0.85rem; border-radius: 100px; }
.badge-green { background: var(--sage-pale); color: var(--forest); }
.badge-gold { background: var(--gold-light); color: var(--gold-deep); }
.product-details h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15; margin-bottom: 0.5rem;
}
.product-subtitle { font-size: 0.95rem; color: var(--brown-muted); margin-bottom: 1.5rem; }
.product-price-row {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(44,24,16,0.08);
}
.product-price-main { font-family: var(--display); font-size: 2rem; color: var(--brown); }
.product-price-compare { font-size: 1rem; color: var(--brown-muted); text-decoration: line-through; }
.add-to-cart-row { display: flex; gap: 0.75rem; margin-bottom: 2rem; }
.qty-selector {
  display: flex; align-items: center;
  border: 1.5px solid rgba(44,24,16,0.12); border-radius: 12px; overflow: hidden;
}
.qty-btn {
  width: 44px; height: 48px; border: none; background: transparent;
  font-size: 1.2rem; color: var(--brown); cursor: pointer; transition: background 0.2s;
}
.qty-btn:hover { background: var(--cream); }
.qty-val {
  width: 40px; text-align: center; font-size: 0.95rem; font-weight: 600;
  border: none; background: transparent; font-family: var(--body);
}
.atc-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--gold); color: white; font-family: var(--body);
  font-size: 0.95rem; font-weight: 600; padding: 0 2rem; height: 52px;
  border-radius: 12px; border: none; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(232,168,23,0.25);
}
.atc-btn:hover { background: var(--gold-deep); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(232,168,23,0.35); }
.sold-out-msg {
  font-size: 1rem; font-weight: 600; color: var(--brown-muted);
  padding: 1rem 0; margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.three-pack-upsell {
  background: var(--sage-pale); border-radius: 12px; padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem;
}
.upsell-text { font-size: 0.85rem; color: var(--forest); }
.upsell-text strong { font-weight: 700; }
.upsell-link {
  font-size: 0.8rem; font-weight: 600; color: var(--forest); text-decoration: none;
  background: white; padding: 0.5rem 1rem; border-radius: 100px; transition: background 0.3s;
}
.upsell-link:hover { background: var(--warm-white); }
.benefit-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(44,24,16,0.08); }
.benefit-item { text-align: center; padding: 1rem 0.5rem; background: var(--cream); border-radius: 12px; }
.benefit-item .icon { font-size: 1.3rem; margin-bottom: 0.4rem; }
.benefit-item .label { font-size: 0.75rem; font-weight: 600; color: var(--brown); line-height: 1.3; }
.benefit-item .sub { font-size: 0.68rem; color: var(--brown-muted); margin-top: 0.15rem; }
.product-section-title { font-family: var(--display); font-size: 1.2rem; margin-bottom: 0.75rem; }
.product-desc { font-size: 0.9rem; color: var(--brown-mid); line-height: 1.8; margin-bottom: 2rem; }
.product-desc p { margin-bottom: 0.75rem; }
.ing-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.ing-pill { background: var(--cream); padding: 0.4rem 0.9rem; border-radius: 100px; font-size: 0.78rem; font-weight: 500; color: var(--brown); border: 1px solid rgba(44,24,16,0.05); transition: all 0.3s; }
.ing-pill:hover { background: var(--forest); color: white; border-color: var(--forest); }
.ing-pill.star { background: var(--gold); color: white; border-color: var(--gold); font-weight: 600; }
.allergen-note { font-size: 0.78rem; color: var(--brown-muted); margin-top: 0.75rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(44,24,16,0.08); }
.nutrition-callouts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(44,24,16,0.08); }
.nc { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.9rem; background: var(--cream); border-radius: 10px; }
.nc-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.nc-icon.gold { background: var(--gold-light); }
.nc-icon.green { background: var(--sage-pale); }
.nc-text strong { display: block; font-size: 0.78rem; font-weight: 600; color: var(--brown); line-height: 1.3; }
.nc-text span { font-size: 0.72rem; color: var(--brown-muted); line-height: 1.4; }
.product-testimonial { background: var(--cream); border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; }
.product-testimonial .stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.product-testimonial blockquote { font-size: 0.9rem; font-style: italic; color: var(--brown-mid); line-height: 1.7; margin-bottom: 0.75rem; }
.product-testimonial cite { font-style: normal; font-size: 0.78rem; font-weight: 600; color: var(--brown-muted); }

/* ── CART PAGE ── */
.cart-page { padding: 3rem 2.5rem 5rem; }
.cart-inner { max-width: 800px; margin: 0 auto; }
.cart-items { margin-bottom: 2rem; }
.cart-item {
  display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem 0;
  border-bottom: 1px solid rgba(44,24,16,0.08);
}
.cart-item-img { width: 80px; height: 80px; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.cart-item-details { flex: 1; }
.cart-item-details h3 { font-family: var(--display); font-size: 1.1rem; }
.cart-item-details h3 a { color: var(--brown); text-decoration: none; }
.cart-item-option { font-size: 0.8rem; color: var(--brown-muted); }
.cart-item-price { font-size: 0.85rem; color: var(--brown-muted); margin-top: 0.25rem; }
.cart-item-qty input { width: 50px; text-align: center; border: 1px solid rgba(44,24,16,0.1); border-radius: 8px; padding: 0.4rem; font-family: var(--body); font-size: 0.85rem; }
.qty-update-btn { font-size: 0.72rem; color: var(--forest); background: none; border: none; cursor: pointer; text-decoration: underline; margin-left: 0.5rem; }
.cart-item-total { font-family: var(--display); font-size: 1.1rem; min-width: 60px; text-align: right; }
.cart-item-remove { font-size: 1.5rem; color: var(--brown-muted); text-decoration: none; margin-left: 0.5rem; transition: color 0.3s; }
.cart-item-remove:hover { color: var(--brown); }
.cart-summary { padding-top: 1.5rem; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--brown-muted); margin-bottom: 0.5rem; }
.cart-total { font-family: var(--display); font-size: 1.3rem; color: var(--brown); font-weight: 400; padding-top: 1rem; border-top: 1px solid rgba(44,24,16,0.08); margin-bottom: 1.5rem; }
.cart-checkout-btn { width: 100%; text-align: center; display: block; margin-bottom: 0.75rem; }
.cart-continue-btn { width: 100%; text-align: center; display: block; }
.cart-empty { text-align: center; padding: 4rem 0; }
.cart-empty p { font-size: 1.1rem; color: var(--brown-muted); margin-bottom: 1.5rem; }

/* ── CONTACT PAGE ── */
.contact-page { padding: 3rem 2.5rem 5rem; }
.contact-inner { max-width: 600px; margin: 0 auto; }
.contact-intro { font-size: 0.95rem; color: var(--brown-muted); line-height: 1.7; margin-bottom: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--brown); margin-bottom: 0.35rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid rgba(44,24,16,0.1);
  border-radius: 10px; font-family: var(--body); font-size: 0.9rem;
  background: var(--cream); transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── CUSTOM PAGES ── */
.page-content-area { max-width: 700px; margin: 0 auto; padding: 3rem 2.5rem 5rem; }
.page-content-area h1 { font-family: var(--display); font-size: 2.2rem; margin-bottom: 1.5rem; }
.page-content-area p { font-size: 0.95rem; color: var(--brown-mid); line-height: 1.85; margin-bottom: 1rem; }

/* ── MOBILE NAV ── */
.nav-mobile-cart {
  display: none;
  font-size: 0.8rem; font-weight: 600; color: #ffffff;
  background: var(--forest); padding: 0.55rem 1.1rem;
  border-radius: 100px; text-decoration: none;
}

@media (max-width: 900px) {
  .product-page { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; }
  .product-gallery { position: static; }
  .nutrition-callouts { grid-template-columns: 1fr; }
  .nav-mobile-cart { display: block; }
  .cart-item { flex-wrap: wrap; }
}

/* ── INTERACTIVE INGREDIENT PILLS ── */
.ing-pill { cursor: pointer; }
.ing-pill.active-pill { background: var(--forest); color: white; border-color: var(--forest); }
.ing-pill.star.active-pill, .ing-pill.highlight.active-pill { background: var(--forest); border-color: var(--forest); }
.ing-benefit {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.3s ease;
  opacity: 0; background: var(--forest); color: white; border-radius: 14px;
  font-size: 0.88rem; line-height: 1.7; margin-top: 0.75rem; padding: 0 1.25rem;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.ing-benefit.open { max-height: 160px; padding: 1.1rem 1.4rem; opacity: 1; }
.ing-benefit-name { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.04em; margin-bottom: 0.3rem; color: #95D5B2; }