/* ============================================
   GUMZ — Bold Pop direction
   Olipop / Recess / Cha Cha Matcha energy.
   Geometric sans, lime blocks, pop shadows.
   Same product story, different visual world
   from Editorial Ritual.
   ============================================ */

:root {
  /* Palette — only 4 colors used heavily */
  --cream: #fff9ed;
  --cream-soft: #f4eddc;
  --lime: #d4e96d;
  --lime-soft: #e7f49d;
  --forest: #173f2e;
  --forest-deep: #0b2a1d;
  --white: #ffffff;
  --error: #ba1a1a;

  /* Type */
  --font-display: "Epilogue", "Inter Tight", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Scale */
  --max-width: 1280px;
  --margin-desktop: 80px;
  --margin-mobile: 24px;
  --gutter: 24px;

  /* Radius */
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 9999px;

  /* Pop shadow — the signature Bold Pop move */
  --pop: 6px 6px 0 0 var(--forest);
  --pop-sm: 3px 3px 0 0 var(--forest);
  --pop-lg: 8px 8px 0 0 var(--forest);
  --border-bold: 2px solid var(--forest);

  color-scheme: light;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--forest); color: var(--cream); }

.shell {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--margin-mobile);
}
@media (min-width: 768px) { .shell { padding-inline: var(--margin-desktop); } }

/* ---- Type ---- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--forest);
}
.headline-xl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.headline-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.headline-md {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--forest);
  margin: 0;
  max-width: 56ch;
}
.label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1, h2, h3, h4 { margin: 0; color: var(--forest); }

/* ---- Pill / chip ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--forest);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: var(--border-bold);
  box-shadow: var(--pop-sm);
}
.pill--cream { background: var(--cream); }
.pill--forest { background: var(--forest); color: var(--cream); }
.pill--white { background: var(--white); }
.pill--ghost { background: transparent; box-shadow: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: var(--border-bold);
  background: var(--forest);
  color: var(--cream);
  box-shadow: var(--pop);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--pop-lg); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 0 var(--forest); }
.btn--lime { background: var(--lime); color: var(--forest); }
.btn--cream { background: var(--cream); color: var(--forest); }
.btn--ghost {
  background: transparent;
  color: var(--forest);
  box-shadow: none;
  border-color: var(--forest);
}
.btn--ghost:hover { background: var(--lime); transform: none; box-shadow: var(--pop-sm); }
.btn--sm { padding: 10px 20px; font-size: 14px; box-shadow: var(--pop-sm); }
.btn--lg { padding: 18px 36px; font-size: 20px; }
.btn--full { width: 100%; }

/* ---- Pop card ---- */
.pop-card {
  background: var(--cream);
  border: var(--border-bold);
  border-radius: var(--r-md);
  box-shadow: var(--pop);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.15s ease;
}
.pop-card:hover { transform: translate(-2px, -2px); box-shadow: var(--pop-lg); }
.pop-card--lime { background: var(--lime); }
.pop-card--forest { background: var(--forest); color: var(--cream); }
.pop-card--forest h2, .pop-card--forest h3 { color: var(--cream); }
.pop-card--white { background: var(--white); }
.pop-card--sm { padding: 18px; border-radius: var(--r-md); box-shadow: var(--pop-sm); }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: var(--border-bold);
}
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 18px;
  gap: 16px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--forest);
}
.brand img { height: 28px; width: auto; }
.nav__links {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  transition: background 0.15s ease;
}
.nav__links a:hover { background: var(--lime); }
.nav__links a.is-active {
  background: var(--forest);
  color: var(--cream);
}

/* ---- Hero ---- */
.hero {
  padding-block: clamp(48px, 7vw, 96px) clamp(64px, 9vw, 128px);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 80px; }
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 580px;
}
.hero__copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero__copy .lead { font-size: 19px; max-width: 460px; }
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
}
.hero__price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__price-block b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--forest);
}
.hero__price-block span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--forest);
  opacity: 0.7;
}

/* Hero product visual — pouch on lime arch */
.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 4% 8% 4%;
  background: var(--lime);
  border: var(--border-bold);
  box-shadow: var(--pop-lg);
  border-radius: 50%;
  transform: rotate(3deg);
  z-index: 1;
}
.hero__visual img {
  position: relative;
  z-index: 2;
  width: 78%;
  height: auto;
  transform: rotate(-4deg);
  filter: drop-shadow(0 20px 30px rgba(11, 42, 29, 0.25));
}
.hero__benefit-card {
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: 3;
  background: var(--cream);
  border: var(--border-bold);
  box-shadow: var(--pop);
  border-radius: var(--r-md);
  padding: 16px 18px;
  max-width: 240px;
  transform: rotate(3deg);
}
.hero__benefit-card p { margin: 0; font-size: 14px; font-weight: 600; line-height: 1.4; }
.hero__benefit-card .label { display: block; margin-bottom: 6px; opacity: 0.7; }

/* Trust icons row */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 460px;
  margin-top: 8px;
}
.trust {
  background: var(--lime);
  border: var(--border-bold);
  box-shadow: var(--pop-sm);
  border-radius: var(--r-md);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s ease;
}
.trust:hover { transform: translate(-1px, -1px); }
.trust__icon {
  width: 28px;
  height: 28px;
  color: var(--forest);
}
.trust__icon svg { width: 100%; height: 100%; }
.trust__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--forest);
}

/* ---- Lime banner section ---- */
.lime-band {
  background: var(--lime);
  border-block: var(--border-bold);
  padding-block: clamp(64px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}
.lime-band--soft { background: var(--lime-soft); }

/* ---- Forest band ---- */
.forest-band {
  background: var(--forest);
  color: var(--cream);
  border-block: var(--border-bold);
  padding-block: clamp(56px, 7vw, 96px);
}
.forest-band h2, .forest-band h3 { color: var(--cream); }
.forest-band .label { color: var(--lime); }
.forest-band .lead { color: rgba(255, 249, 237, 0.85); }
.forest-band .pill { background: var(--lime); }
/* Cards inside the dark band keep their own text color unless they're the forest variant.
   Without this, lime/white cards inherit the section's cream text and become unreadable. */
.forest-band .bento-cell:not(.bento-cell--forest),
.forest-band .bento-cell:not(.bento-cell--forest) h3,
.forest-band .bento-cell:not(.bento-cell--forest) p {
  color: var(--forest);
}
.forest-band .bento-cell--forest h3,
.forest-band .bento-cell--forest p { color: var(--cream); }

/* ---- Generic section ---- */
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }

.section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 720px;
  margin-inline: auto;
}

/* ---- Bento ---- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .bento--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .bento--12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .bento--12 > .bento-cell--8 { grid-column: span 8; }
  .bento--12 > .bento-cell--4 { grid-column: span 4; }
  .bento--12 > .bento-cell--6 { grid-column: span 6; }
  .bento--12 > .bento-cell--12 { grid-column: span 12; }
}

.bento-cell {
  background: var(--cream);
  border: var(--border-bold);
  box-shadow: var(--pop);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease;
}
.bento-cell:hover { transform: translate(-2px, -2px); box-shadow: var(--pop-lg); }
.bento-cell__photo {
  aspect-ratio: 4 / 3;
  margin: -32px -32px 8px;
  border-bottom: var(--border-bold);
  overflow: hidden;
  background: var(--lime);
}
.bento-cell__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bento-cell:hover .bento-cell__photo img { transform: scale(1.04); }
.bento-cell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.bento-cell p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
.bento-cell--lime { background: var(--lime); }
.bento-cell--forest { background: var(--forest); color: var(--cream); }
.bento-cell--forest h3 { color: var(--cream); }
.bento-cell--white { background: var(--white); }
.bento-cell--media { padding: 0; overflow: hidden; aspect-ratio: 1; }
.bento-cell--media img { width: 100%; height: 100%; object-fit: cover; }

.bento-cell__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  background: var(--cream);
  border: var(--border-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.bento-cell--lime .bento-cell__icon { background: var(--cream); }
.bento-cell--forest .bento-cell__icon { background: var(--lime); color: var(--forest); border-color: var(--lime); }
.bento-cell__icon svg { width: 24px; height: 24px; }

/* Big floating badge (for highlights like "100% plant-based") */
.pop-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--forest);
  border: var(--border-bold);
  box-shadow: var(--pop-sm);
  border-radius: var(--r-pill);
  padding: 14px 22px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  transform: rotate(-3deg);
}

/* ---- Split layout (variant for system/comparison sections) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split--media-right .split__media { order: 2; }
}
.split__copy { display: flex; flex-direction: column; gap: 20px; }
.split__media {
  border: var(--border-bold);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-soft);
  box-shadow: var(--pop);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--lime { background: var(--lime); }

/* ---- Stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
@media (max-width: 600px) { .stats { grid-template-columns: 1fr; } }
.stat {
  background: var(--cream);
  border: var(--border-bold);
  box-shadow: var(--pop-sm);
  border-radius: var(--r-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.stat span {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  opacity: 0.75;
  line-height: 1.35;
}
.stat--lime { background: var(--lime); }
.stat--forest { background: var(--forest); color: var(--cream); }
.stat--forest b, .stat--forest span { color: var(--cream); }
.stat--forest span { opacity: 0.78; }

/* ---- Comparison rows ---- */
.versus {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.versus__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--cream);
  border: var(--border-bold);
  box-shadow: var(--pop-sm);
  border-radius: var(--r-md);
  padding: 20px 24px;
  transition: transform 0.12s ease;
}
.versus__row:hover { transform: translate(-2px, -2px); box-shadow: var(--pop); }
.versus__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border-bold);
  background: var(--cream-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.versus__icon svg { width: 20px; height: 20px; color: var(--forest); }
.versus__body { display: flex; flex-direction: column; gap: 4px; }
.versus__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.62;
}
.versus__body p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
}
.versus__row.is-self {
  background: var(--lime);
}
.versus__row.is-self .versus__icon { background: var(--cream); }
.versus__row.is-self .versus__body p {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---- PDP ---- */
.pdp { padding-block: clamp(40px, 6vw, 80px); }
.pdp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .pdp__grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
}
.pdp__main-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--lime);
  border: var(--border-bold);
  box-shadow: var(--pop-lg);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
}
.pdp__main-visual img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transform: rotate(-3deg);
  filter: drop-shadow(0 18px 28px rgba(11, 42, 29, 0.25));
  transition: transform 0.4s ease;
}
.pdp__main-visual:hover img { transform: rotate(-2deg) scale(1.02); }
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.pdp__thumb {
  aspect-ratio: 1;
  background: var(--cream-soft);
  border: var(--border-bold);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  box-shadow: var(--pop-sm);
  transition: transform 0.12s ease;
}
.pdp__thumb:hover { transform: translate(-1px, -1px); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb.is-active { background: var(--lime); }
.pdp__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 96px;
}
.pdp__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.pdp__price b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.pdp__price small {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.7;
}
.pdp__qty-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  display: block;
  margin-bottom: 8px;
}
.pdp__qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--cream);
  border: var(--border-bold);
  box-shadow: var(--pop-sm);
  border-radius: var(--r-pill);
  padding: 4px;
  width: fit-content;
}
.pdp__qty-controls button {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  border: none;
  background: transparent;
  color: var(--forest);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.12s ease;
}
.pdp__qty-controls button:hover { background: var(--lime); }
.pdp__qty-controls span {
  min-width: 40px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.pdp__includes {
  border-top: var(--border-bold);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.pdp__includes h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}
.pdp__includes ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pdp__includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.pdp__includes li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--lime);
  border: 2px solid var(--forest);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ---- Waitlist / forms ---- */
.waitlist {
  background: var(--forest);
  color: var(--cream);
  padding-block: clamp(64px, 8vw, 112px);
  border-block: var(--border-bold);
  position: relative;
  overflow: hidden;
}
.waitlist h2, .waitlist h3 { color: var(--cream); }
.waitlist .label, .waitlist .pill { color: var(--forest); }
.waitlist__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .waitlist__grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
}
.waitlist__form {
  background: var(--cream);
  color: var(--forest);
  border: var(--border-bold);
  border-radius: var(--r-lg);
  box-shadow: var(--pop-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.waitlist__form input {
  width: 100%;
  background: var(--white);
  border: var(--border-bold);
  border-radius: var(--r-pill);
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  outline: none;
}
.waitlist__form input::placeholder { color: var(--forest); opacity: 0.45; }
.waitlist__form input:focus { background: var(--lime); }
.waitlist__note { margin: 0; font-size: 12px; font-weight: 600; opacity: 0.65; }
.waitlist__offer {
  background: var(--lime);
  border: var(--border-bold);
  box-shadow: var(--pop-sm);
  border-radius: var(--r-md);
  padding: 20px 22px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
  transform: rotate(-2deg);
}
.waitlist__offer b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.waitlist__offer span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}

/* ---- FAQ ---- */
.faq { display: flex; flex-direction: column; gap: 32px; }
.faq__group { display: flex; flex-direction: column; gap: 14px; }
.faq__group-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 4px;
  display: inline-block;
  background: var(--lime);
  border: var(--border-bold);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  align-self: flex-start;
  box-shadow: var(--pop-sm);
}
.faq__item {
  background: var(--cream);
  border: var(--border-bold);
  border-radius: var(--r-md);
  box-shadow: var(--pop-sm);
  overflow: hidden;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.faq__item[open] { box-shadow: var(--pop); }
.faq__item:hover { transform: translate(-1px, -1px); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.25;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: var(--r-pill);
  background: var(--lime);
  border: var(--border-bold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a {
  padding: 0 24px 22px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--forest);
  max-width: 64ch;
}
.faq__a p { margin: 0 0 10px; }
.faq__a p:last-child { margin: 0; }

/* ---- Notas cards ---- */
.notas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 720px) { .notas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .notas-grid { grid-template-columns: repeat(3, 1fr); } }
.nota-card {
  background: var(--cream);
  border: var(--border-bold);
  border-radius: var(--r-lg);
  box-shadow: var(--pop);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.15s ease;
}
.nota-card:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lg); }
.nota-card__media {
  aspect-ratio: 4 / 5;
  border-bottom: var(--border-bold);
  background: var(--lime);
  overflow: hidden;
}
.nota-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.nota-card:hover .nota-card__media img { transform: scale(1.04); }
.nota-card__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 12px; }
.nota-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
}
.nota-card__tag {
  background: var(--lime);
  border: 2px solid var(--forest);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-weight: 800;
}
.nota-card__tag--cream { background: var(--cream); }
.nota-card__tag--forest { background: var(--forest); color: var(--cream); }
.nota-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.nota-card p { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.5; }

.nota-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (min-width: 900px) { .nota-feature { grid-template-columns: 1.1fr 0.9fr; gap: 56px; } }
.nota-feature__media {
  aspect-ratio: 4 / 3;
  background: var(--lime);
  border: var(--border-bold);
  border-radius: var(--r-lg);
  box-shadow: var(--pop-lg);
  overflow: hidden;
}
.nota-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.nota-feature__copy { display: flex; flex-direction: column; gap: 16px; }
.nota-feature__copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

/* ---- Article ---- */
.article { padding-block: clamp(40px, 5vw, 64px); }
.article__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 40px;
}
.article__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.article__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.article__byline { font-size: 14px; font-weight: 600; opacity: 0.7; }
.article__hero {
  border: var(--border-bold);
  border-radius: var(--r-lg);
  box-shadow: var(--pop-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--lime);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__body { max-width: 680px; margin-inline: auto; display: flex; flex-direction: column; gap: 22px; }
.article__body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}
.article__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
}
.article__body blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  background: var(--lime);
  border: var(--border-bold);
  box-shadow: var(--pop);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.article__body blockquote p { font: inherit; }
.article__body figure {
  margin: 28px 0;
  border: var(--border-bold);
  border-radius: var(--r-lg);
  box-shadow: var(--pop);
  overflow: hidden;
  background: var(--lime);
}
.article__body figure img { width: 100%; display: block; }
.article__body figure figcaption {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 14px;
  background: var(--lime);
  border-top: var(--border-bold);
}

/* ---- Checkout ---- */
.preview-banner {
  background: var(--forest);
  color: var(--cream);
  border-bottom: var(--border-bold);
  padding-block: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.preview-banner b { color: var(--lime); font-weight: 800; }
.checkout { padding-block: clamp(40px, 5vw, 72px) clamp(64px, 8vw, 96px); }
.checkout__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(32px, 4vw, 48px); }
.checkout__head h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.checkout__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) {
  .checkout__grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 56px; align-items: start; }
}
.checkout__steps { display: flex; flex-direction: column; gap: 28px; }
.step-card {
  background: var(--cream);
  border: var(--border-bold);
  border-radius: var(--r-lg);
  box-shadow: var(--pop);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step-card__head { display: flex; align-items: center; gap: 14px; }
.step-card__num {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  background: var(--lime);
  border: var(--border-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}
.step-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 26px);
  letter-spacing: -0.02em;
}
.field-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.field-grid--2 { grid-template-columns: 1fr; }
@media (min-width: 600px) { .field-grid--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field input, .field select {
  width: 100%;
  background: var(--white);
  border: var(--border-bold);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  outline: none;
  transition: background 0.15s ease;
}
.field input:focus, .field select:focus { background: var(--lime); }
.field input::placeholder { color: var(--forest); opacity: 0.4; }

.summary {
  background: var(--lime);
  border: var(--border-bold);
  border-radius: var(--r-lg);
  box-shadow: var(--pop-lg);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 96px;
}
.summary__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.summary__line-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-block: 12px;
  border-bottom: 2px solid var(--forest);
}
.summary__line-item:last-of-type { border-bottom: none; }
.summary__thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  border: var(--border-bold);
  overflow: hidden;
  background: var(--cream);
}
.summary__thumb img { width: 100%; height: 100%; object-fit: cover; }
.summary__name { display: flex; flex-direction: column; gap: 2px; }
.summary__name b { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.summary__name span { font-size: 12px; font-weight: 600; opacity: 0.75; }
.summary__price { font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.summary__promo { display: flex; gap: 8px; }
.summary__promo input {
  flex: 1;
  background: var(--cream);
  border: var(--border-bold);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  outline: none;
}
.summary__totals { display: flex; flex-direction: column; gap: 6px; padding-top: 8px; }
.summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}
.summary__row.is-total {
  border-top: 2px solid var(--forest);
  padding-top: 12px;
  margin-top: 4px;
}
.summary__row.is-total b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(11, 42, 29, 0.94);
  display: none;
  flex-direction: column;
  padding: clamp(20px, 4vw, 48px);
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  background: var(--lime);
  border: var(--border-bold);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--pop-sm);
}
.lightbox__close:hover, .lightbox__nav:hover { transform: translate(-1px, -1px); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav svg, .lightbox__close svg { width: 22px; height: 22px; }
.lightbox__stage { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 0; }
.lightbox__img {
  max-width: min(960px, 90vw);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-md);
  border: var(--border-bold);
  box-shadow: var(--pop-lg);
}
.lightbox__thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-top: 18px;
  flex-wrap: wrap;
}
.lightbox__thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: var(--border-bold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  opacity: 0.5;
}
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox__thumb.is-active { opacity: 1; background: var(--lime); }

/* ---- Footer ---- */
.footer { margin-top: auto; background: var(--cream); border-top: var(--border-bold); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-block: 56px;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 24px; } }
.footer__brand { display: flex; flex-direction: column; gap: 14px; max-width: 360px; }
.footer__brand img { height: 28px; width: auto; }
.footer__brand p { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.55; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  padding: 4px 0;
}
.footer__col a:hover { color: var(--forest); text-decoration: underline; text-underline-offset: 4px; }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-block: 18px;
  border-top: var(--border-bold);
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
}

/* ---- Sticker row (Gruns-style fruit+gummy cutouts) ---- */
.sticker-band {
  background: var(--cream);
  padding-block: clamp(48px, 6vw, 80px);
  border-bottom: var(--border-bold);
  overflow: hidden;
}
.sticker-band__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 48px);
  max-width: 640px;
  margin-inline: auto;
}
.sticker-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1080px;
  margin-inline: auto;
}
@media (min-width: 720px) {
  .sticker-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.sticker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease;
}
.sticker:hover { transform: translateY(-4px); }
.sticker__img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
}
.sticker:nth-child(1) .sticker__img { transform: rotate(-3deg); }
.sticker:nth-child(2) .sticker__img { transform: rotate(2deg); }
.sticker:nth-child(3) .sticker__img { transform: rotate(-2deg); }
.sticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--forest);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: var(--border-bold);
  box-shadow: var(--pop-sm);
}

/* ---- Strip ---- */
.strip {
  background: var(--lime);
  border-block: var(--border-bold);
}
.strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  padding-block: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Helpers ---- */
.text-center { text-align: center; }
.tilt-l { transform: rotate(-2deg); }
.tilt-r { transform: rotate(2deg); }
