/* ========================================
   Nutrivida — landing comercial mobile-first
   ======================================== */

:root {
  --color-primary: #f4511e;
  --color-primary-dark: #c9360c;
  --color-secondary: #325f5a;
  --color-accent: #f5b51b;
  --color-background: #fffaf4;
  --color-surface: #ffffff;
  --color-text: #21312d;
  --color-muted: #66736f;
  --color-border: #e7dfd5;
  --color-dark: #17332f;
  --border-radius: 1.25rem;
  --shadow-card: 0 1.1rem 3rem rgba(53, 45, 35, 0.1);
  --shadow-soft: 0 0.6rem 1.8rem rgba(53, 45, 35, 0.08);
  --max-width: 1200px;
  --header-height: 4.5rem;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--color-background);
  color: var(--color-text);
  font-family: Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
select,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.6rem, 11vw, 5.8rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 8vw, 3.75rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.25rem, 4vw, 1.6rem);
}

:focus-visible {
  outline: 3px solid #1269d3;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  border-radius: 0.5rem;
  background: var(--color-dark);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 4.5rem 0;
}

.section--surface {
  background: var(--color-surface);
}

.section-heading {
  max-width: 49rem;
  margin-bottom: 2.25rem;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.button-group--left {
  align-items: stretch;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.65rem 1.4rem rgba(30, 38, 35, 0.14);
}

.button--small {
  min-height: 2.8rem;
  padding-inline: 1rem;
  font-size: 0.9rem;
}

.button--primary {
  background: var(--color-primary);
  color: #fff;
}

.button--primary:hover {
  background: var(--color-primary-dark);
}

.button--secondary {
  border-color: var(--color-dark);
  background: transparent;
  color: var(--color-dark);
}

.button--light {
  background: #fff;
  color: var(--color-dark);
}

.button--dark {
  background: var(--color-dark);
  color: #fff;
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-text);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(231, 223, 213, 0.85);
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  padding-block: 0.75rem;
}

.brand img {
  width: 9.6rem;
}

.menu-toggle {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-content: center;
  gap: 0.32rem;
  border: 0;
  border-radius: 50%;
  background: var(--color-dark);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  display: flex;
  max-height: calc(100vh - var(--header-height));
  flex-direction: column;
  gap: 0.2rem;
  overflow-y: auto;
  padding: 1rem;
  transform: translateY(-130%);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-background);
  box-shadow: var(--shadow-card);
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms;
}

.main-nav.is-open {
  transform: translateY(0);
  visibility: visible;
}

.main-nav > a:not(.button) {
  padding: 0.8rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.button):hover {
  color: var(--color-primary-dark);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 0 4rem;
  background:
    radial-gradient(circle at 95% 5%, rgba(245, 181, 27, 0.28), transparent 35%),
    linear-gradient(145deg, #fffaf4 45%, #f9eada 100%);
}

.hero::before {
  position: absolute;
  top: 8%;
  right: -8rem;
  width: 18rem;
  height: 18rem;
  border: 3rem solid rgba(244, 81, 30, 0.06);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  gap: 3.2rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 1.7rem;
  color: #4f5c58;
  font-size: clamp(1.08rem, 4.5vw, 1.35rem);
}

.hero-quick-facts {
  display: grid;
  max-width: 39rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.hero-quick-facts > span,
.hero-quick-facts > a {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 0.15rem;
  padding: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.hero-quick-facts > :not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.hero-quick-facts strong,
.hero-quick-facts small {
  display: block;
}

.hero-quick-facts strong {
  color: var(--color-primary-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-quick-facts small {
  color: var(--color-muted);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-quick-facts > a:hover {
  background: #fff4e8;
}

.hero-carousel {
  position: relative;
  min-height: 28rem;
  isolation: isolate;
}

.hero-scene {
  position: absolute;
  inset: 0 0 2.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(1rem) scale(0.985);
  transition: opacity 500ms ease, transform 500ms ease;
}

.hero-scene.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.hero-photo {
  position: absolute;
  inset: 1.5rem 0 1rem 3rem;
  overflow: hidden;
  border: 0.65rem solid rgba(255, 255, 255, 0.85);
  border-radius: 52% 48% 28% 55%;
  background: var(--color-secondary);
  box-shadow: var(--shadow-card);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 51, 47, 0.05), rgba(23, 51, 47, 0.42));
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-pack {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 1.25rem 1.35rem rgba(22, 35, 31, 0.24));
}

.hero-pack img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-pack--soup {
  bottom: -1.2rem;
  left: -1rem;
  width: 38%;
  transform: rotate(-6deg);
}

.hero-pack--drink {
  right: -0.4rem;
  bottom: -0.6rem;
  width: 36%;
  transform: rotate(6deg);
}

.hero-pack--alternate {
  width: 31%;
}

.hero-pack--consome {
  right: 24%;
  bottom: -1.6rem;
  width: 29%;
  transform: rotate(1deg);
}

.hero-note {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0.4rem;
  padding: 0.55rem 0.8rem;
  transform: rotate(3deg);
  border-radius: 0.75rem;
  background: var(--color-accent);
  color: #3b2b00;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-carousel__controls {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.hero-carousel__controls > button {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-weight: 900;
}

.hero-dots {
  display: flex;
  gap: 0.4rem;
}

.hero-dots button {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b8b0a6;
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
}

.hero-dots button.is-active {
  width: 1.8rem;
  background: var(--color-primary);
}

/* Brand differentiation */
.brand-difference {
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(245, 181, 27, 0.18), transparent 18rem),
    #fffaf4;
}

.difference-showcase {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(23, 51, 47, 0.1);
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.difference-visual {
  position: relative;
  display: flex;
  min-height: 35rem;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.7rem, 5vw, 3rem);
  background:
    radial-gradient(circle at 92% 84%, rgba(245, 181, 27, 0.34), transparent 16rem),
    linear-gradient(145deg, #214942, var(--color-dark));
  color: #fff;
}

.difference-visual::after {
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.difference-copy {
  position: relative;
  z-index: 2;
}

.difference-copy .eyebrow {
  color: #ffd467;
}

.difference-copy h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 0.98;
}

.difference-copy > p:last-child {
  max-width: 35rem;
  margin-bottom: 0;
  color: #d7e3df;
}

.difference-packs {
  position: relative;
  z-index: 1;
  width: min(100%, 31rem);
  min-height: 17rem;
  margin: auto auto -2rem;
}

.difference-pack {
  position: absolute;
  bottom: 0;
  width: auto;
  filter: drop-shadow(0 1rem 1.1rem rgba(0, 0, 0, 0.28));
  object-fit: contain;
  transform-origin: bottom center;
}

.difference-pack--soup {
  left: 2%;
  z-index: 1;
  height: 14rem;
  transform: rotate(-8deg);
}

.difference-pack--drink {
  left: 34%;
  z-index: 3;
  height: 16.5rem;
}

.difference-pack--cereal {
  right: 0;
  z-index: 2;
  height: 14.5rem;
  transform: rotate(8deg);
}

.difference-points {
  display: grid;
  align-content: center;
  padding: clamp(0.75rem, 3vw, 2rem) clamp(1.25rem, 5vw, 3rem);
}

.difference-points article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-border);
}

.difference-points article:last-child {
  border-bottom: 0;
}

.difference-points article > span {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 50%;
  background: #fff2cf;
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.difference-points h3 {
  margin-bottom: 0.3rem;
  color: var(--color-dark);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.difference-points p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.section-heading--compact {
  max-width: 52rem;
  margin-bottom: 1.8rem;
}

.section-heading--compact h2 {
  max-width: 17ch;
}

.section-heading--compact > p:last-child {
  max-width: 42rem;
}

.section-heading--compact::after {
  display: block;
  width: 4rem;
  height: 0.3rem;
  margin-top: 1.25rem;
  border-radius: 999px;
  background: var(--color-accent);
  content: "";
}

/* Social impact */
.impact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 15%, rgba(245, 181, 27, 0.13), transparent 28rem),
    #fffaf4;
}

.impact-intro {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.impact-collage {
  position: relative;
  min-height: 32rem;
}

.impact-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 0.55rem solid #fff;
  background: #dfe8e5;
  box-shadow: var(--shadow-card);
}

.impact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-photo--primary {
  top: 0;
  left: 0;
  width: 70%;
  height: 25rem;
  border-radius: 5rem 1.5rem 5rem 1.5rem;
}

.impact-photo--secondary {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 68%;
  height: 14rem;
  border-radius: 1.5rem 4rem 1.5rem 4rem;
}

.impact-certification {
  position: absolute;
  z-index: 3;
  top: 1.2rem;
  right: 0;
  display: flex;
  max-width: 10.5rem;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.8rem;
  transform: rotate(2deg);
  border-radius: 0.75rem;
  background: var(--color-accent);
  box-shadow: var(--shadow-soft);
  color: #332700;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.impact-copy h2 {
  max-width: 11ch;
}

.impact-copy > p:not(.eyebrow) {
  color: var(--color-muted);
}

.impact-lead {
  color: var(--color-text) !important;
  font-size: clamp(1.12rem, 4vw, 1.35rem);
  font-weight: 700;
}

.value-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.value-formula > span:not([aria-hidden]) {
  display: grid;
  min-width: 8rem;
  flex: 1 1 8rem;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  background: #fff;
}

.value-formula > span[aria-hidden] {
  display: none;
  align-self: center;
  color: var(--color-primary);
  font-size: 1.35rem;
  font-weight: 900;
}

.value-formula strong,
.value-formula small {
  display: block;
}

.value-formula strong {
  color: var(--color-primary-dark);
  font-size: 1.05rem;
}

.value-formula small {
  color: var(--color-muted);
}

.impact-copy .button {
  width: 100%;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 3.5rem;
}

.impact-metrics article {
  display: grid;
  min-height: 9rem;
  align-content: center;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--color-dark);
  color: #fff;
  text-align: center;
}

.impact-metrics article:nth-child(even) {
  background: var(--color-primary);
}

.impact-metrics strong,
.impact-metrics span {
  display: block;
}

.impact-metrics strong {
  font-size: clamp(1.55rem, 6vw, 2.35rem);
  line-height: 1;
}

.impact-metrics span {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 700;
}

.social-model {
  margin-top: 5rem;
}

.social-model .section-heading {
  max-width: 44rem;
}

.social-model__grid {
  display: grid;
  gap: 0.8rem;
}

.social-model__grid article {
  padding: 1.4rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.social-model__grid article > span {
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.social-model__grid h3 {
  margin-top: 1rem;
}

.social-model__grid p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.founder-story {
  display: grid;
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--color-secondary);
  box-shadow: var(--shadow-card);
  color: #fff;
}

.founder-story > img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

.founder-story > div {
  padding: 1.5rem;
}

.founder-story .eyebrow {
  color: #ffd37a;
}

.founder-story h2 {
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.founder-story p {
  color: #d9e8e4;
}

.founder-story blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid var(--color-accent);
  font-size: clamp(1.25rem, 5vw, 1.8rem);
  font-weight: 800;
  line-height: 1.35;
}

.impact-source {
  margin: 1.4rem 0 0;
  color: var(--color-muted);
  font-size: 0.78rem;
  text-align: center;
}

.impact-source a {
  color: var(--color-secondary);
  font-weight: 900;
}

/* Need cards */
.need-grid {
  display: grid;
  gap: 1.25rem;
}

.need-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius);
  background: #f9eee4;
  box-shadow: var(--shadow-soft);
}

.need-card--green { background: #e7f0e8; }
.need-card--yellow { background: #fff4cf; }
.need-card--blue { background: #e5f1f7; }

.need-media {
  position: relative;
  height: 15rem;
  overflow: hidden;
}

.need-result {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.need-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(19, 33, 29, 0.35));
  content: "";
}

.need-pack {
  position: absolute;
  z-index: 2;
  right: 0.7rem;
  bottom: -1rem;
  width: 7.5rem;
  height: 11rem;
  object-fit: contain;
  filter: drop-shadow(0 0.8rem 0.65rem rgba(16, 30, 26, 0.22));
}

.need-body {
  padding: 1.4rem;
}

.card-number {
  margin-bottom: 0.55rem;
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.need-body p:not(.card-number) {
  color: #4e5c57;
}

/* Catalog */
.catalog-section {
  background: var(--color-background);
}

.anchor-target {
  position: absolute;
  top: 0;
}

.filter-bar {
  display: flex;
  gap: 0.55rem;
  margin-inline: -1rem;
  padding: 0 1rem 0.55rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-button {
  min-height: 2.9rem;
  flex: 0 0 auto;
  padding: 0.65rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: #fff;
}

.results-count {
  min-height: 1.5rem;
  margin: 0.8rem 0 1.25rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: var(--color-surface);
  box-shadow: 0 0.4rem 1.1rem rgba(53, 45, 35, 0.045);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #dbcbbb;
  box-shadow: var(--shadow-card);
}

.product-card__media {
  position: relative;
  display: grid;
  min-height: 13rem;
  place-items: center;
  padding: 1.2rem 0.75rem 0.6rem;
  background:
    radial-gradient(circle at 50% 45%, #fff 0 33%, transparent 34%),
    #f6f0e8;
}

.product-card__media img {
  width: 84%;
  height: 11.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0.7rem 0.55rem rgba(28, 35, 31, 0.16));
  transition: transform var(--transition);
}

.product-card:hover .product-card__media img {
  transform: scale(1.03) rotate(-1deg);
}

.product-card__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-secondary);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.product-card__body h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.product-card__description {
  display: -webkit-box;
  margin-bottom: 0.7rem;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 0.84rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card__benefit {
  margin-bottom: 0.8rem;
  color: #485652;
  font-size: 0.78rem;
  line-height: 1.45;
}

.product-card__benefit strong {
  color: var(--color-text);
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: auto 0 0.8rem;
}

.product-card__meta span {
  padding: 0.25rem 0.45rem;
  border-radius: 0.4rem;
  background: #f4f1ec;
  color: #56625f;
  font-size: 0.7rem;
  font-weight: 700;
}

.product-card__actions {
  display: grid;
  gap: 0.45rem;
  margin-top: auto;
}

.product-card__actions .button {
  min-height: 2.7rem;
  padding: 0.65rem 0.6rem;
  font-size: 0.78rem;
}

.product-card[hidden] {
  display: none;
}

/* Preparation */
.preparation-section {
  overflow: hidden;
  background: var(--color-dark);
  color: #fff;
}

.preparation-section::after {
  position: absolute;
  right: -8rem;
  bottom: -9rem;
  width: 24rem;
  height: 24rem;
  border: 4rem solid rgba(245, 181, 27, 0.12);
  border-radius: 50%;
  content: "";
}

.preparation-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
}

.section-heading--light > p:last-child,
.preparation-section .eyebrow {
  color: #fbd67f;
}

.preparation-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.5rem 0 1.35rem;
}

.preparation-tabs button {
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.preparation-tabs button:hover {
  transform: translateY(-0.1rem);
  border-color: rgba(255, 255, 255, 0.55);
}

.preparation-tabs button.is-active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #302500;
}

.preparation-tabs button:focus-visible {
  outline: 0.2rem solid #fff;
  outline-offset: 0.18rem;
}

.preparation-methods {
  min-height: 27rem;
}

.preparation-method[hidden] {
  display: none;
}

.preparation-method > h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.steps-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.055);
}

.steps-list h4 {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  margin: 0;
  font-size: 1rem;
}

.steps-list p {
  margin: 0.3rem 0 0;
  color: #bdcfca;
  font-size: 0.93rem;
}

.steps-list li > div {
  min-width: 0;
}

.step-number {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #302500;
  font-weight: 900;
}

.preparation-carousel {
  position: relative;
  width: min(100%, 23rem);
  min-height: 34rem;
  justify-self: center;
}

.preparation-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: 0.7rem solid #fff;
  border-radius: 2rem;
  background: #0f211e;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateX(1rem) scale(0.98);
  transition:
    opacity 500ms ease,
    transform 500ms ease,
    visibility 500ms ease;
}

.preparation-visual.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.preparation-visual img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
}

.preparation-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78));
  content: "";
}

.preparation-visual__caption {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.5rem;
  left: 1.4rem;
  display: grid;
  text-align: center;
}

.preparation-mark {
  display: grid;
  width: max-content;
  min-height: 2.6rem;
  margin: 0 auto 1rem;
  place-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 900;
}

.preparation-visual__caption strong {
  font-size: 1.25rem;
}

.preparation-visual__caption small {
  color: #c7d4d1;
}

/* Recipes */
.recipe-section-heading {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.recipe-section-heading .section-heading {
  margin-bottom: 0;
}

.recipe-carousel-controls {
  display: flex;
  gap: 0.6rem;
}

.recipe-carousel-controls button {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-dark);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.recipe-carousel-controls button:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  background: #fff3eb;
}

.recipe-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: max(1rem, calc((100vw - var(--max-width)) / 2));
  overflow: hidden;
}

.recipe-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.2rem 0 1.2rem;
  scroll-behavior: smooth;
  scroll-padding-inline: 1rem;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--color-primary) #eadfd3;
  scrollbar-width: thin;
}

.recipe-card {
  display: flex;
  min-width: 0;
  flex: 0 0 min(82vw, 21rem);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.recipe-card__media {
  position: relative;
  height: 14rem;
  overflow: hidden;
  background: #ebe5dc;
}

.recipe-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.recipe-card:hover .recipe-card__media img {
  transform: scale(1.035);
}

.recipe-card__label {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recipe-product {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0.55rem 1.5rem rgba(22, 36, 31, 0.18);
  color: var(--color-dark);
  backdrop-filter: blur(8px);
}

.recipe-product > img {
  width: 3.4rem;
  height: 3.8rem;
  object-fit: contain;
  filter: drop-shadow(0 0.25rem 0.25rem rgba(31, 42, 37, 0.16));
}

.recipe-product span,
.recipe-detail__product span {
  display: grid;
  min-width: 0;
}

.recipe-product small,
.recipe-detail__product small {
  color: var(--color-muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recipe-product strong {
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.recipe-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.recipe-card__body > p {
  color: var(--color-muted);
}

.recipe-card__body .button {
  width: fit-content;
  margin-top: auto;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}

.recipe-meta span {
  padding: 0.35rem 0.55rem;
  border-radius: 0.5rem;
  background: #f6f1ea;
  font-size: 0.75rem;
  font-weight: 700;
}

.recipe-detail__product {
  display: grid;
  width: fit-content;
  max-width: 100%;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  margin: 0.9rem 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.9rem;
  background: #fbf7f1;
}

.recipe-detail__product img {
  width: 3.2rem;
  height: 3.7rem;
  object-fit: contain;
}

.recipe-detail__product strong {
  font-size: 0.85rem;
}

/* Store finder */
.walmart-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(245, 181, 27, 0.16), transparent 24rem),
    linear-gradient(135deg, #2f6b5c 0%, #24584c 54%, #1d463d 100%);
  color: #fff;
}

.walmart-section .eyebrow {
  color: #ffe078;
}

.walmart-grid {
  display: grid;
  gap: 3rem;
}

.walmart-copy > p:not(.eyebrow, .availability-note) {
  max-width: 41rem;
  color: #e2f0e8;
  font-size: 1.05rem;
}

.store-search {
  margin: 1.7rem 0 1rem;
}

.store-search label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.retailer-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.retailer-selector legend {
  width: 100%;
  margin-bottom: 0.45rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.retailer-selector label {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.retailer-selector input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.retailer-selector span {
  display: grid;
  min-height: 3rem;
  padding: 0.65rem 1rem;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.retailer-selector input:checked + span {
  border-color: #ffc220;
  background: #fff;
  color: #244c43;
  transform: translateY(-2px);
}

.retailer-selector input:focus-visible + span {
  outline: 3px solid #ffe078;
  outline-offset: 3px;
}

.select-row {
  display: grid;
  gap: 0.65rem;
}

.select-row select {
  min-height: 3.25rem;
  width: 100%;
  padding: 0.65rem 2.7rem 0.65rem 1rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
  font-weight: 700;
}

.select-row .button--primary {
  background: #ffc220;
  color: #2a260d;
}

.availability-note {
  margin: 1.1rem 0 0;
  color: #d6e9df;
  font-size: 0.82rem;
}

.walmart-products {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22), transparent 48%);
}

.walmart-products::after {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  left: 1rem;
  height: 0.6rem;
  border-radius: 999px;
  background: #d7e8de;
  box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.25);
  content: "";
}

.shelf-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.7rem;
  border-radius: 0.6rem;
  background: #ffc220;
  color: #28240d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-product-carousel {
  position: absolute;
  z-index: 2;
  inset: 4rem 0.65rem 1.35rem;
  min-width: 0;
}

.store-product-viewport {
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

.store-product-track {
  display: flex;
  height: 100%;
  transform: translate3d(var(--store-offset, 0%), 0, 0);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.store-product-track.is-resetting {
  transition: none;
}

.store-product-slide {
  display: grid;
  min-width: 0;
  flex: 0 0 50%;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  padding: 0 0.35rem 0.6rem;
  text-align: center;
}

.store-product-slide img {
  width: 100%;
  max-width: 13rem;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 1.2rem 1.1rem rgba(0, 0, 0, 0.22));
}

.store-product-slide:nth-child(3n + 1) img { transform: rotate(-2deg); }
.store-product-slide:nth-child(3n + 3) img { transform: rotate(2deg); }

.store-product-slide span {
  display: grid;
  gap: 0.08rem;
  color: #fff;
  line-height: 1.15;
}

.store-product-slide strong {
  font-size: 0.76rem;
}

.store-product-slide small {
  color: #d6e9df;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-results-wrap {
  margin-top: 2rem;
}

.store-results {
  display: grid;
  gap: 0.8rem;
}

.store-empty,
.store-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  background: rgba(18, 69, 59, 0.68);
}

.store-empty p,
.store-card p {
  margin-bottom: 0.8rem;
}

.store-empty .button {
  width: fit-content;
}

.store-card a {
  font-weight: 800;
}

/* Social proof */
.social-grid {
  display: grid;
  gap: 1rem;
}

.social-card {
  min-height: 18rem;
  padding: 1.4rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-background);
}

.social-card--verified {
  background: var(--color-dark);
  color: #fff;
}

.content-label {
  display: inline-flex;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(244, 81, 30, 0.12);
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card--verified .content-label {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd083;
}

.stars {
  margin: 1.3rem 0 0.7rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.social-card blockquote {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.45;
}

.social-card--verified p:last-child {
  color: #bed0cb;
}

.social-card--verified strong {
  color: #fff;
}

.social-card--visual {
  overflow: hidden;
  padding: 0;
}

.social-card--visual img {
  width: 100%;
  height: 10.5rem;
  object-fit: cover;
}

.social-card--visual > :not(img) {
  margin-right: 1.4rem;
  margin-left: 1.4rem;
}

.social-card--visual .content-label {
  margin-top: 1.25rem;
}

.social-card--visual > p:last-child {
  margin-bottom: 1.4rem;
  color: var(--color-muted);
}

/* Fortification */
.fortification-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(245, 181, 27, 0.16), transparent 26rem),
    linear-gradient(145deg, #132f2b 0%, var(--color-dark) 58%, #21433d 100%);
  color: #fff;
}

.fortification-section::before {
  position: absolute;
  top: -7rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  border: 4rem solid rgba(244, 81, 30, 0.1);
  border-radius: 50%;
  content: "";
}

.fortification-section .container {
  position: relative;
  z-index: 1;
}

.fortification-section .eyebrow {
  color: var(--color-accent);
}

.fortification-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.fortification-intro h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.fortification-copy {
  max-width: 42rem;
}

.fortification-copy p {
  margin-bottom: 0.65rem;
  color: #d3e0dd;
  font-size: 1.05rem;
}

.nutrient-benefit-grid {
  display: grid;
  gap: 0.9rem;
}

.nutrient-benefit-card {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: start;
  gap: 0.9rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

.nutrient-check {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.nutrient-benefit-card h3 {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.45rem;
  color: var(--color-accent);
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  letter-spacing: -0.02em;
}

.nutrient-benefit-card p {
  margin-bottom: 0;
  color: #d3e0dd;
  font-size: 0.95rem;
}

/* FAQ */
.faq-section {
  background: var(--color-background);
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.faq-list {
  border-top: 1px solid var(--color-border);
}

.faq-list details {
  border-bottom: 1px solid var(--color-border);
}

.faq-list summary {
  position: relative;
  padding: 1.15rem 2.7rem 1.15rem 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-sources {
  padding: 0.8rem;
  border-left: 3px solid var(--color-secondary);
  border-radius: 0.45rem;
  background: #edf3f0;
  font-size: 0.8rem;
}

.faq-sources a {
  color: var(--color-secondary);
  font-weight: 800;
  text-underline-offset: 0.18rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #f3e9dc;
  content: "+";
  font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: #ffd7ca;
}

.faq-list details p {
  padding-right: 2rem;
  color: var(--color-muted);
}

.faq-list details p strong {
  color: var(--color-primary-dark);
}

/* Final CTA and footer */
.final-cta {
  padding: 4rem 0;
  background: var(--color-primary);
  color: #fff;
}

.final-cta .eyebrow {
  color: #ffe6dd;
}

.final-cta h2 {
  max-width: 12ch;
}

.final-cta-inner {
  display: grid;
  gap: 1.5rem;
}

.site-footer {
  padding: 3.5rem 0 6.3rem;
  background: #102723;
  color: #c4d3cf;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand img {
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 29rem;
}

.site-footer h2 {
  margin-bottom: 0.9rem;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 0.55rem;
  text-underline-offset: 0.2rem;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.mobile-walmart-bar {
  position: fixed;
  z-index: 900;
  right: 0.75rem;
  bottom: 0.7rem;
  left: 0.75rem;
}

.mobile-walmart-bar a {
  display: flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0.9rem 2.4rem rgba(26, 32, 29, 0.26);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

/* Dialogs */
.modal {
  width: min(calc(100% - 1rem), 88rem);
  max-height: calc(100dvh - 1rem);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1.25rem;
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.32);
}

.modal::backdrop {
  background: rgba(11, 26, 23, 0.75);
  backdrop-filter: blur(5px);
}

.modal-shell {
  position: relative;
  max-height: calc(100dvh - 1rem);
  overflow-y: auto;
}

.modal-close {
  position: sticky;
  z-index: 5;
  top: 0.65rem;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  margin: 0 0.65rem -2.9rem auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--color-dark);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.product-detail {
  display: grid;
}

.product-detail__media {
  display: grid;
  min-height: 26rem;
  place-items: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(circle, #fff 0 30%, transparent 31%),
    #f3ece3;
}

.product-detail__media img {
  display: block;
  width: min(82%, 21rem);
  height: 24rem;
  margin: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 1rem 0.8rem rgba(26, 34, 30, 0.2));
}

.product-detail__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}

.product-detail__highlights span {
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: #e8f1e9;
  color: #264f42;
  font-size: 0.75rem;
  font-weight: 900;
}

.product-detail__body {
  padding: 1.5rem;
}

.product-detail__body h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.product-detail__category {
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-detail__lead {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.product-registration {
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  gap: 0.25rem 0.65rem;
  align-items: center;
  margin: 1.5rem 0 0;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 0.65rem;
  background: #fbf7f1;
  font-size: 0.78rem;
}

.product-registration span {
  color: var(--color-muted);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-registration strong {
  color: var(--color-dark);
}

.detail-section {
  padding: 1.1rem 0;
  border-top: 1px solid var(--color-border);
}

.detail-section--properties {
  margin-top: 1rem;
}

.recipe-disclaimer {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.detail-section h3 {
  font-size: 1.1rem;
}

.detail-section p,
.detail-section li {
  color: var(--color-muted);
  font-size: 0.93rem;
}

.product-ingredients-line {
  margin-bottom: 0.65rem;
  line-height: 1.65;
}

.product-allergens {
  margin-bottom: 0;
  color: var(--color-dark) !important;
}

.product-allergens strong {
  font-weight: 900;
}

.detail-section ul,
.detail-section ol {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.product-nutrition {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.product-nutrition__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
}

.product-nutrition__heading h3 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
}

.product-nutrition__layout {
  margin-top: 1rem;
}

.nutrition-facts {
  width: 100%;
  max-width: 43rem;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #ded3c5;
  border-radius: 1.2rem;
  background: #fffdf9;
  box-shadow: 0 1rem 2.5rem rgba(19, 55, 49, 0.08);
  color: var(--color-dark);
  line-height: 1.35;
}

.nutrition-facts__header {
  display: grid;
  gap: 0.2rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 0.35rem solid var(--color-primary);
  background: var(--color-dark);
  color: #fff;
}

.nutrition-facts__header strong {
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.nutrition-facts__header span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 650;
}

.nutrition-facts__header .nutrition-facts__eyebrow {
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nutrition-facts__serving {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.15rem 1rem;
  align-items: baseline;
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid #ded3c5;
  background: #fff8ef;
  font-size: 0.84rem;
}

.nutrition-facts__serving > span {
  color: var(--color-muted);
  font-weight: 700;
}

.nutrition-facts__serving > strong {
  color: var(--color-primary-dark);
  text-align: right;
}

.nutrition-facts__serving > small {
  grid-column: 1 / -1;
  color: var(--color-muted);
  font-size: 0.72rem;
}

.nutrition-facts table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.72rem, 2.6vw, 0.86rem);
}

.nutrition-facts thead {
  background: #f7eee4;
  color: #43544f;
  font-size: 0.65rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.nutrition-facts tr:not(:last-child) {
  border-bottom: 1px solid #e6ddd2;
}

.nutrition-facts th,
.nutrition-facts td {
  padding: 0.68rem 0.7rem;
  vertical-align: middle;
}

.nutrition-facts th {
  width: 46%;
  font-weight: 650;
  text-align: left;
}

.nutrition-facts th.is-indented {
  padding-left: 1.65rem;
  color: var(--color-muted);
}

.nutrition-facts td {
  text-align: right;
  white-space: nowrap;
}

.nutrition-facts td:last-child {
  width: 18%;
  color: var(--color-primary-dark);
  font-weight: 850;
}

.nutrition-facts--without-dv th {
  width: 58%;
}

.nutrition-facts--without-dv td:last-child {
  width: 42%;
  color: var(--color-dark);
  font-weight: 750;
}

.nutrition-facts__calorie-row {
  background: #fffaf4;
}

.nutrition-facts__calorie-row th {
  color: var(--color-dark);
  font-size: 1rem;
  font-weight: 900;
}

.nutrition-facts__calorie-row td strong {
  color: var(--color-primary-dark);
  font-size: 1rem;
}

.nutrition-facts__calorie-row td small {
  display: block;
  margin-top: 0.1rem;
  color: var(--color-muted);
  font-size: 0.66rem;
}

.nutrition-facts__section-row th {
  width: auto;
  padding: 0.7rem;
  border-top: 0.25rem solid var(--color-dark);
  background: #e8f1e9;
  color: #264f42;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nutrition-facts__footnote {
  margin: 0;
  padding: 0.85rem 1.25rem 1rem;
  border-top: 1px solid #ded3c5;
  background: #fff8ef;
  color: var(--color-muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.detail-actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.button-link {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.recipe-detail__hero {
  position: relative;
  height: 17rem;
}

.recipe-detail__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-detail__body {
  padding: 1.5rem;
}

.recipe-detail__body h2 {
  font-size: clamp(2rem, 8vw, 3rem);
}

.recipe-columns {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.recipe-columns li {
  margin-bottom: 0.45rem;
}

.toast {
  position: fixed;
  z-index: 3000;
  right: 1rem;
  bottom: 5rem;
  left: 1rem;
  max-width: 28rem;
  margin-inline: auto;
  padding: 0.85rem 1rem;
  transform: translateY(1rem);
  border-radius: 0.75rem;
  background: var(--color-dark);
  box-shadow: var(--shadow-card);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transition: opacity var(--transition), transform var(--transition);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Legal pages */
.legal-page {
  background: #fffaf4;
}

.legal-header {
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.legal-header .container {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-header img {
  width: 10.4rem;
}

.legal-content {
  max-width: 52rem;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.legal-content h1 {
  max-width: none;
  font-size: clamp(2.6rem, 8vw, 4.5rem);
}

.legal-content h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
}

.legal-content p {
  color: var(--color-muted);
}

/* Tablet */
@media (min-width: 42rem) {
  .recipe-section-heading {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .recipe-card {
    flex-basis: min(44vw, 23rem);
  }

  .store-product-slide {
    flex-basis: 33.3333%;
  }

  .container {
    width: min(calc(100% - 3rem), var(--max-width));
  }

  .section {
    padding: 6rem 0;
  }

  .button-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero {
    padding: 5rem 0;
  }

  .hero-carousel {
    min-height: 34rem;
  }

  .hero-pack--soup { width: 31%; }
  .hero-pack--drink { width: 30%; }
  .hero-pack--consome { width: 24%; }

  .need-grid,
  .recipe-grid,
  .social-grid,
  .nutrient-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recipe-card:last-child,
  .social-card:last-child {
    grid-column: span 2;
  }

  .difference-packs {
    min-height: 19rem;
  }

  .difference-pack--soup {
    height: 16rem;
  }

  .difference-pack--drink {
    height: 18.5rem;
  }

  .difference-pack--cereal {
    height: 16.5rem;
  }

  .impact-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .founder-story {
    grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  }

  .founder-story > img {
    height: 100%;
    min-height: 31rem;
  }

  .founder-story > div {
    align-self: center;
    padding: 2.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .product-card__media {
    min-height: 17rem;
  }

  .product-card__media img {
    height: 15rem;
  }

  .product-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .select-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .button-group--left {
    align-items: center;
  }

  .store-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  #product-dialog .modal-shell {
    overflow: hidden;
  }

  .product-dialog-content {
    height: calc(100dvh - 1rem);
  }

  .product-detail {
    height: 100%;
    min-height: 0;
    grid-template-columns: minmax(16rem, 0.65fr) 1.35fr;
  }

  .product-detail__media {
    position: relative;
    height: 100%;
    min-height: 0;
    align-self: stretch;
    place-items: center;
    overflow: hidden;
    padding: 2rem 1.25rem;
  }

  .product-detail__media img {
    width: min(86%, 25rem);
    height: min(72dvh, 36rem);
    max-height: calc(100dvh - 5rem);
    object-position: center;
  }

  .product-detail__body {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    padding: 2.2rem;
  }

  .recipe-detail__body {
    padding: 2.2rem;
  }

  .recipe-columns {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

/* Desktop */
@media (min-width: 60rem) {
  :root {
    --header-height: 5rem;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    max-height: none;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    overflow: visible;
    padding: 0;
    transform: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    visibility: visible;
  }

  .main-nav > a:not(.button) {
    padding: 0.55rem 0.6rem;
    font-size: 0.86rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(30rem, 1.05fr);
    align-items: center;
    gap: 2rem;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(3.6rem, 5.2vw, 5rem);
  }

  .hero-carousel {
    min-height: 36rem;
  }

  .hero-photo {
    inset: 2rem 1.5rem 1.8rem 4rem;
  }

  .difference-showcase {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .difference-visual {
    min-height: 41rem;
  }

  .difference-points {
    padding: 2rem 3rem;
  }

  .difference-points article {
    grid-template-columns: 3.4rem minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.55rem 0;
  }

  .impact-intro {
    grid-template-columns: minmax(24rem, 0.95fr) minmax(0, 1.05fr);
    gap: 5rem;
  }

  .impact-collage {
    min-height: 40rem;
  }

  .impact-photo--primary {
    width: 72%;
    height: 33rem;
  }

  .impact-photo--secondary {
    width: 66%;
    height: 18rem;
  }

  .impact-certification {
    top: 2rem;
    max-width: 12rem;
  }

  .value-formula {
    flex-wrap: nowrap;
  }

  .value-formula > span[aria-hidden] {
    display: block;
  }

  .impact-copy .button {
    width: fit-content;
  }

  .social-model__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .need-grid,
  .recipe-grid,
  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .need-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .recipe-card:last-child,
  .social-card:last-child {
    grid-column: auto;
  }

  .recipe-card {
    flex-basis: min(31vw, 23.5rem);
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .preparation-grid,
  .walmart-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 5rem;
  }

  .fortification-intro {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: end;
    gap: 4rem;
    margin-bottom: 3rem;
  }

  .nutrient-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .walmart-products {
    min-height: 34rem;
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .mobile-walmart-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (min-width: 80rem) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .main-nav > a:not(.button) {
    padding-inline: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
