/** Shopify CDN: Minification failed

Line 3787:0 Expected "}" to go with "{"

**/
:root {
  /* primitives */
  --salt: oklch(0.96 0.012 125);
  --pearl: oklch(0.88 0.01 125);
  --mist: oklch(0.62 0.02 125);
  --basalt: oklch(0.22 0.03 145);
  --lima: oklch(0.78 0.14 122);
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  /* semantic — light */
  --bg: var(--salt);
  --bg-raised: var(--pearl);
  --fg: var(--basalt);
  --fg-muted: var(--mist);
  --border: color-mix(in oklab, var(--basalt) 12%, transparent);
  --btn-primary-bg: var(--basalt);
  --btn-primary-fg: var(--salt);
  --btn-secondary-bg: transparent;
  --btn-secondary-fg: var(--basalt);
  --btn-secondary-border: color-mix(in oklab, var(--basalt) 25%, transparent);
  --accent: var(--lima);
  --focus: var(--basalt);
  --theme-color: #121e12;
}

[data-theme="dark"] {
  --bg: oklch(0.16 0.025 145);
  --bg-raised: oklch(0.22 0.028 145);
  --bg-raised-2: oklch(0.28 0.03 145);
  --fg: oklch(0.94 0.01 125);
  --fg-muted: oklch(0.72 0.02 125);
  --border: color-mix(in oklab, var(--salt) 14%, transparent);
  --btn-primary-bg: var(--salt);
  --btn-primary-fg: var(--basalt);
  --btn-secondary-bg: transparent;
  --btn-secondary-fg: var(--salt);
  --btn-secondary-border: color-mix(in oklab, var(--salt) 28%, transparent);
  --accent: oklch(0.74 0.12 122);
  --focus: var(--salt);
  --theme-color: #0f160f;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: oklch(0.16 0.025 145);
    --bg-raised: oklch(0.22 0.028 145);
    --bg-raised-2: oklch(0.28 0.03 145);
    --fg: oklch(0.94 0.01 125);
    --fg-muted: oklch(0.72 0.02 125);
    --border: color-mix(in oklab, var(--salt) 14%, transparent);
    --btn-primary-bg: var(--salt);
    --btn-primary-fg: var(--basalt);
    --btn-secondary-bg: transparent;
    --btn-secondary-fg: var(--salt);
    --btn-secondary-border: color-mix(in oklab, var(--salt) 28%, transparent);
    --accent: oklch(0.74 0.12 122);
    --focus: var(--salt);
    --theme-color: #0f160f;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light dark; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-underline-offset: 0.18em; }
button, input { font: inherit; color: inherit; }
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.5em;
}
.display { font-size: clamp(2.25rem, 5.5vw, 3.75rem); }
.display--s { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }

.shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus { left: 1rem; background: var(--bg-raised); padding: 0.5rem; z-index: 20; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.sku-line {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  margin: 0 0 1rem;
  color: var(--fg-muted);
}
.lede { max-width: 36ch; color: var(--fg-muted); }
.lede--tight { max-width: none; }
.meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: var(--fg-muted);
  font-size: 0.92rem;
}
.price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}
.featured__price, .product-info__price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.75rem 0 0.15rem;
}
.hint { color: var(--fg-muted); font-size: 0.85rem; margin: 0.4rem 0 0; }
.muted { color: var(--fg-muted); font-size: 0.85rem; }

.lima-disc {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 0.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  background: transparent;
  color: var(--fg);
  transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease, opacity 120ms ease;
}
.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
}
.btn--primary:hover { filter: brightness(1.08); }
.btn--primary:active { filter: brightness(0.95); }
.btn--secondary, .btn--ghost {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-fg);
  border: 1px solid var(--btn-secondary-border);
}
.btn--secondary:hover, .btn--ghost:hover {
  border-color: var(--fg);
}
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
}
.btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  padding: 0;
}
.theme-toggle:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.theme-toggle__icon { width: 1.1rem; height: 1.1rem; }
.theme-toggle { position: relative; }
.theme-toggle__icon--moon { display: block; }
.theme-toggle__icon--sun { display: none; }
[data-theme="dark"] .theme-toggle__icon--moon { display: none; }
[data-theme="dark"] .theme-toggle__icon--sun { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle__icon--moon { display: none; }
  :root:not([data-theme="light"]) .theme-toggle__icon--sun { display: block; }
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 80;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
[data-theme="dark"] .site-header {
  background: #121E12;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .site-header {
    background: #121E12;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.site-header__logo { width: auto; max-height: 44px; object-fit: contain; }
.site-header__nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.site-header__nav a { text-decoration: none; }
.site-header__count {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.35rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 0.7rem;
}

.hero, .featured, .product-main, .subscribe, .cart-page, .page-main, .collection-main, .list-collections {
  padding: 2.5rem 0 4rem;
}
.hero__grid, .product-main__grid, .featured__atf {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.featured__atf {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.hero__media, .product-gallery__stage, .card img, .featured__media {
  background: var(--bg-raised);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero__media img, .product-gallery__main, .product-gallery__thumb img, .featured__media img, .card img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 1 / 1;
  background: #f0f3eb;
}

/* PDP gallery — Wave 12 */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}
.product-gallery__stage {
  margin: 0;
  width: 100%;
  position: relative;
}
.product-gallery__main {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain; /* jars: upright, no cover-crop */
  background: #f0f3eb;
}
.product-gallery__thumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}
.product-gallery__thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-raised);
  cursor: pointer;
  scroll-snap-align: start;
  appearance: none;
  -webkit-appearance: none;
}
.product-gallery__thumb img {
  pointer-events: none;
  border-radius: 8px;
}
.product-gallery__thumb.is-active {
  border-color: var(--accent);
  box-shadow: none;
  background: transparent;
}
.product-gallery__thumb:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.product-info__actions .product-info__cart-form {
  display: contents;
}
.featured__form {
  display: contents;
}
.featured__honest {
  max-width: 42ch;
}
.subscribe__panel {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
}
.subscribe-form { display: grid; gap: 1.5rem; margin-top: 1.25rem; }
fieldset { border: 0; padding: 0; margin: 0; }
legend {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 0.65rem;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg);
}
.qty-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.qty-stepper input {
  width: 3rem;
  text-align: center;
  border: 0;
  background: transparent;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { appearance: none; }
.cadence-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill { cursor: pointer; position: relative; flex: 1 1 6rem; }
.pill input { position: absolute; opacity: 0; pointer-events: none; }
.pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pill input:checked + span {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.pill input:focus-visible + span { outline: 2px solid var(--focus); outline-offset: 3px; }
.subscribe-actions, .featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.subscribe-actions .btn, .featured__actions .btn {
  flex: 1 1 12rem;
  min-height: 52px;
}
/* Wave 14 — subscribe honesty */
.subscribe__comparativa {
  margin: 0.5rem 0 0;
  max-width: 52ch;
}
.subscribe__honesty,
.subscribe__note {
  margin: 0.75rem 0 0;
  max-width: 52ch;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.subscribe__cadence-hint {
  margin-top: 0.65rem;
}
.subscribe__change {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.subscribe__change-title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}
.cart-item__pref {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.9rem;
}
.cart-sub-callout {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 1rem 0;
}
.cart-sub-callout .hint { margin: 0.25rem 0; }
.pill span { min-height: 2.75rem; }
.featured__actions--card .btn { min-height: 44px; }
.product-info__actions {
  margin-top: 1.25rem;
}

.featured__catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.product-grid {
  /* legacy base — Wave 23 catalog rules below own layout */
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  padding: 1rem;
}
.card h2, .card h3 { font-size: 1.125rem; margin: 0.75rem 0 0.25rem; }
.card a { text-decoration: none; }
.card .hint, .card p { margin: 0; }

.cart-list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
}
.cart-item img { border-radius: 8px; background: #f0f3eb; }
.cart-item__title { font-family: var(--font-display); margin: 0 0 0.25rem; }

/* Wave 13 — honest email capture */
.email-capture {
  padding: 2rem 0 2.5rem;
}
.email-capture__panel {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: grid;
  gap: 1.25rem;
}
.email-capture__sub {
  margin: 0;
  color: var(--fg-muted);
  max-width: 42ch;
}
.email-capture__row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.email-capture__field { width: 100%; }
.email-capture__input {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--fg);
}
.email-capture__input::placeholder { color: var(--fg-muted); opacity: 0.85; }
.email-capture__input:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
.email-capture__submit {
  width: 100%;
  min-height: 52px;
}
.email-capture__disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 52ch;
}
.email-capture__disclaimer a { text-decoration: underline; }
.email-capture__status {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
}
.email-capture__status--ok { color: var(--fg); }
.email-capture__status--err { color: var(--fg); }

.site-footer__news {
  flex: 1 1 16rem;
  max-width: 28rem;
}
.site-footer__news-line {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.site-footer__news-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__news-input { min-height: 48px; }
.site-footer__news-submit {
  min-height: 48px;
  width: 100%;
}
.site-footer__news-disclaimer {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.site-footer__news-disclaimer a { text-decoration: underline; }

@media (min-width: 960px) {
  .email-capture__panel {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    align-items: start;
    gap: 2rem;
    padding: 1.75rem 2rem;
  }
  .email-capture__row {
    flex-direction: row;
    align-items: stretch;
  }
  .email-capture__field { flex: 1 1 auto; }
  .email-capture__submit {
    width: auto;
    flex: 0 0 auto;
    min-width: 10rem;
  }
  .site-footer__news-row {
    flex-direction: row;
    align-items: stretch;
  }
  .site-footer__news-input { flex: 1 1 auto; }
  .site-footer__news-submit {
    width: auto;
    flex: 0 0 auto;
    min-width: 6.5rem;
  }
}

@media (max-width: 959px) {
  .email-capture { padding: 1.25rem 0 2rem; }
  .email-capture__panel { padding: 1.25rem; }
  .email-capture__submit,
  .site-footer__news-submit {
    width: 100%;
    min-height: 52px;
  }
}

/* Wave 21 — hide idle empty hCaptcha chrome; show only when challenge present */
.email-capture__captcha,
.site-footer__news-captcha {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 100%;
  min-height: 0;
}
.email-capture__captcha.is-idle,
.site-footer__news-captcha.is-idle,
.email-capture__captcha[hidden],
.site-footer__news-captcha[hidden] {
  display: none !important;
}
.email-capture__captcha.is-active,
.site-footer__news-captcha.is-active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.email-capture__captcha a,
.site-footer__news-captcha a {
  color: var(--fg);
  text-decoration: underline;
}
/* Only force-show real challenges — not invisible idle widgets */
.email-capture__captcha.is-active .h-captcha:not([data-size="invisible"]),
.site-footer__news-captcha.is-active .h-captcha:not([data-size="invisible"]),
.email-capture__captcha.is-active .shopify-challenge__container,
.shopify-challenge__container {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: 100%;
  margin-top: 0.5rem;
}
.email-capture__captcha.is-active .h-captcha:not([data-size="invisible"]) iframe {
  max-width: 100%;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
  background: var(--bg-raised);
}
.site-footer__inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.site-footer__name { font-family: var(--font-display); letter-spacing: 0.08em; margin: 0 0 0.4rem; }
.site-footer__wa { text-decoration: none; display: inline-flex; align-items: center; }
.password-page { min-height: 100vh; display: grid; place-items: center; }
.password-page__inner { text-align: center; display: grid; gap: 1rem; justify-items: center; }
.password-form { display: grid; gap: 0.6rem; }


:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
details summary { cursor: pointer; font-weight: 600; }
details[open] summary { margin-bottom: 0.5rem; }
.site-header__nav a:focus-visible { text-decoration: underline; }

/* Desktop ATF: jar large + copy; CTAs same row */
@media (min-width: 960px) {
  .featured__atf {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
  .featured__media { order: 0; }
  .featured__copy { order: 0; }
  .featured__actions {
    flex-wrap: nowrap;
  }
  .featured__actions .btn {
    flex: 1 1 0;
    min-height: 56px;
  }
  .featured__price { font-size: 1.5rem; font-weight: 700; }
  .product-main__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
  .product-gallery__thumbs {
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .product-gallery__thumb {
    width: 80px;
    height: 80px;
  }
}

/* Mobile ~390 — Wave 12 spec first */
@media (max-width: 959px) {
  .featured { padding: 1.25rem 0 2.5rem; }
  .hero__grid, .product-main__grid, .featured__atf {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .featured__media { order: -1; width: 100%; }
  .featured__media img {
    width: 100%;
    aspect-ratio: 1 / 1;
  }
  .featured__copy .display { font-size: clamp(1.75rem, 8vw, 2.25rem); margin-bottom: 0.35em; }
  .featured__honest { margin: 0 0 0.35rem; font-size: 0.98rem; }
  .featured__price { margin: 0.4rem 0 0.1rem; }
  .featured__actions { margin-top: 0.85rem; }
  .featured__links { margin-top: 0.75rem; }
  .product-gallery { order: -1; width: 100%; }
  .product-gallery__stage,
  .product-gallery__main {
    width: 100%;
  }
  /* horizontal thumbs under main — never left vertical column */
  .product-gallery__thumbs {
    flex-direction: row;
    overflow-x: auto;
  }
  .featured__actions {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }
  .featured__actions .btn,
  .featured__form .btn {
    flex: none;
    width: 100%;
    min-height: 52px;
  }
  .featured__form { display: block; width: 100%; }
  .featured__form .btn { width: 100%; }
  .subscribe-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }
  .subscribe-actions .btn {
    flex: none;
    width: 100%;
    min-height: 52px;
  }
  .subscribe__honesty,
  .subscribe__note,
  .subscribe__comparativa,
  .subscribe__cadence-hint {
    width: 100%;
  }
  .product-info__actions {
    flex-direction: column;
  }
  .product-info__actions .btn,
  .product-info__cart-form {
    width: 100%;
    display: block;
  }
  .product-info__cart-form .btn { width: 100%; min-height: 52px; }
  .site-header__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-block: 0.75rem;
  }
  .site-header__nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.7rem;
  }
  .product-info .price, .featured__price { font-size: 1.75rem; }
  .shell { width: min(1120px, calc(100% - 1.25rem)); }
}

@media (max-width: 800px) {
  /* kept for any residual mobile tweaks */
}



/* Wave 15 — sticky mobile ATC (PDP only, <960) w15-deploy-bump */
.sticky-atc {
  display: none;
}
@media (max-width: 959px) {
  .sticky-atc {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    background: color-mix(in oklab, var(--bg-raised) 92%, transparent);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }
  .sticky-atc.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .sticky-atc[hidden] {
    display: none !important;
  }
  .sticky-atc__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 1120px;
    margin: 0 auto;
  }
  .sticky-atc__meta {
    flex: 0 0 auto;
    max-width: 38%;
    min-width: 0;
  }
  .sticky-atc__price {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
    color: var(--fg);
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .sticky-atc__micro {
    margin: 0.15rem 0 0;
    font-size: 0.65rem;
    line-height: 1.2;
    color: var(--fg-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-atc__cta {
    flex: 1 1 0;
    min-height: 48px;
    min-width: 44px;
    padding-inline: 0.85rem;
    text-align: center;
    white-space: nowrap;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }
  @media (max-width: 360px) {
    .sticky-atc__micro { display: none; }
  }
  /* pad page so FAQ/footer/legal stay tappable above the bar */
  body.sticky-atc-active {
    --sticky-atc-pad: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    padding-bottom: var(--sticky-atc-pad);
  }
  body.sticky-atc-active .product-main,
  body.sticky-atc-active .subscribe,
  body.sticky-atc-active .faq-accordion,
  body.sticky-atc-active .site-footer {
    scroll-margin-bottom: var(--sticky-atc-pad);
  }
  #suscripcion {
    scroll-margin-top: 1rem;
    scroll-margin-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 959px) and (prefers-reduced-motion: reduce) {
  .sticky-atc {
    transition: none;
  }
}
@media (min-width: 960px) {
  .sticky-atc {
    display: none !important;
  }
  body.sticky-atc-active {
    padding-bottom: 0;
  }
}

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

/* Wave 16 — Wompi pay honesty */
.cart-pay-trust {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin: 1rem 0 1.1rem;
  display: grid;
  gap: 0.45rem;
}
.cart-pay-trust__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg);
  line-height: 1.25;
}
.cart-pay-trust__methods {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: normal;
  color: var(--fg);
  line-height: 1.45;
}
.cart-pay-trust__honesty,
.cart-pay-trust__near {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--fg-muted);
  max-width: none;
}
.cart-pay-trust__honesty {
  /* always visible pay honesty — not dismissible, not alarm red */
}
.cart-pay-actions {
  margin-top: 0.25rem;
}

@media (max-width: 959px) {
  .cart-pay-trust {
    border-radius: 12px;
    padding: 0.9rem 1rem;
  }
  .cart-pay-trust__title {
    font-size: 1.25rem;
  }
  .cart-pay-trust__methods {
    font-size: 0.92rem;
  }
  .cart-pay-actions {
    display: grid;
    gap: 0.65rem;
  }
  .cart-pay-actions .btn {
    width: 100%;
  }
}

@media (min-width: 960px) {
  .cart-pay-trust {
    padding: 1.15rem 1.25rem;
    max-width: 40rem;
  }
  .cart-pay-trust__title {
    font-size: 1.4rem;
  }
}

/* FAQ answers readable (Wave 16) */
.faq-accordion details .lede,
.faq-accordion details p {
  font-size: 1rem;
  color: var(--fg);
}


/* Wave 23 — catalog product cards (B_catalog catch-up) */
.collection-main__header {
  margin-bottom: 1.5rem;
}
.collection-main__sub {
  max-width: 48ch;
}
.collection-main__empty {
  color: var(--fg-muted);
}

.product-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr; /* mobile ~390 hard: 1-col */
  gap: 1.25rem;
  align-items: stretch;
}
.product-grid__item {
  display: flex;
  min-width: 0;
}
.product-grid__item > .product-card {
  width: 100%;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: none;
  height: 100%;
}
.product-card__media {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
}
.product-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain; /* jars: avoid cover crop skew */
  object-position: center;
  aspect-ratio: 1 / 1;
  background: #f0f3eb;
}
.product-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.2;
  /* calm chip — not lima fill */
}
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0.35rem;
  margin-top: 0.85rem;
  min-height: 0;
}
.product-card__title {
  font-size: 1.2rem; /* ~1.125–1.25rem weight 600 */
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
}
.product-card__title a {
  text-decoration: none;
  color: inherit;
}
.product-card__title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product-card__benefit {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__price {
  margin: 0.35rem 0 0;
  font-size: 1.15rem; /* loud ≥1.1rem */
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.product-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: auto; /* CTAs bottom-aligned across equal-height cards */
  padding-top: 0.85rem;
}
.product-card__cta {
  width: 100%;
  min-height: 48px;
  text-align: center;
  box-sizing: border-box;
}

.featured__catalog {
  margin-top: 2.75rem;
  display: block;
}
.featured__catalog-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}
.featured__catalog-sub {
  margin: 0 0 1.25rem;
  max-width: 48ch;
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* desktop 2-col */
    gap: 1.5rem;
  }
  .featured__catalog-heading {
    font-size: 1.75rem;
  }
}

@media (max-width: 959px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .product-card__cta {
    width: 100%;
  }
}

/* Wave 18 — Envíos page + cart ship strip */
.page-envios {
  padding: 2rem 0 3rem;
}
.page-envios__inner {
  max-width: 40rem;
}
.page-envios__intro {
  margin: 0.75rem 0 1.5rem;
  color: var(--fg-muted);
  max-width: 48ch;
}
.page-envios__table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 1.25rem;
}
.envios-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
}
.envios-table th,
.envios-table td {
  border: 1px solid var(--border);
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
}
.envios-table thead th {
  background: var(--bg-raised);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
}
.envios-table tbody th {
  font-weight: 500;
  color: var(--fg);
}
.envios-table td {
  color: var(--fg);
  white-space: nowrap;
}
.envios-table__free th,
.envios-table__free td {
  font-weight: 600;
}
.page-envios__gratis {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  color: var(--fg);
}
.page-envios__remote {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
}
.page-envios__remote p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--fg);
}
.page-envios__tiempos {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 52ch;
}
.page-envios__cta {
  margin: 0 0 1.25rem;
}
.page-envios__cta-btn {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}
.page-envios__pie {
  margin: 0;
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.page-envios__pie a {
  color: var(--fg);
}

.cart-ship-strip {
  margin: 0.85rem 0 1rem;
  padding: 0.75rem 0.9rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  gap: 0.35rem;
}
.cart-ship-strip__line,
.cart-ship-strip__note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--fg);
  max-width: none;
}
.cart-ship-strip__note {
  color: var(--fg-muted);
}
.cart-ship-strip a {
  color: var(--fg);
  font-weight: 600;
}
.cart-ship-strip--empty {
  margin: 1rem 0 1.25rem;
}

@media (max-width: 959px) {
  .page-envios {
    padding: 1.5rem 0 2.5rem;
  }
  .page-envios__cta-btn {
    width: 100%;
  }
  .envios-table th,
  .envios-table td {
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
  }
  .envios-table td {
    white-space: normal;
  }
  .cart-ship-strip {
    padding: 0.75rem 0.85rem;
  }
  .cart-ship-strip__line,
  .cart-ship-strip__note {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }
}

@media (min-width: 960px) {
  .page-envios__inner {
    max-width: 44rem;
  }
  .cart-ship-strip {
    max-width: 40rem;
  }
}

/* Wave 19 — Devoluciones page + help strip (account-free) */
.page-devoluciones {
  padding: 2rem 0 3rem;
}
.page-devoluciones__inner {
  max-width: 40rem;
}
.page-devoluciones__intro {
  margin: 0.75rem 0 1.25rem;
  color: var(--fg-muted);
  max-width: 48ch;
}
.page-devoluciones__plazo {
  margin: 0 0 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  color: var(--fg);
  max-width: 52ch;
}
.page-devoluciones__no {
  margin: 0 0 1.5rem;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.5;
}
.page-devoluciones__how-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: 0;
  text-transform: none;
}
.page-devoluciones__steps {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  max-width: 48ch;
  display: grid;
  gap: 0.55rem;
  color: var(--fg);
  font-size: 1rem;
  line-height: 1.45;
}
.page-devoluciones__steps a {
  color: var(--fg);
  font-weight: 600;
}
.page-devoluciones__honesty {
  margin: 0 0 1.5rem;
  max-width: 52ch;
  font-size: 0.9rem;
  line-height: 1.45;
}
.page-devoluciones__cta {
  margin: 0;
}
.page-devoluciones__cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  min-height: 48px;
}

.site-footer__help-strip {
  flex: 1 1 100%;
  margin: 0;
  padding: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--fg-muted);
  order: 10;
}
.site-footer__help-strip a {
  color: var(--fg);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 959px) {
  .page-devoluciones {
    padding: 1.5rem 0 2.5rem;
  }
  .page-devoluciones__cta-btn {
    width: 100%;
  }
}

@media (min-width: 960px) {
  .page-devoluciones__inner {
    max-width: 44rem;
  }
}

/* Wave 20 FINAL — qty shortcuts (lima hairline only, no fill) + arma tu pedido */
.qty-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}
.qty-shortcut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.qty-shortcut__badge {
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.85;
}
.qty-shortcut.is-selected {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
  background: var(--bg);
}
.qty-shortcut:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
.subscribe__atajos-micro {
  margin: 0;
  max-width: 52ch;
}
.subscribe__total {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.subscribe__total-note {
  margin: -0.75rem 0 0;
}
.subscribe__mix {
  margin: 1rem 0 0;
  max-width: 52ch;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.subscribe-form__fields {
  display: grid;
  gap: 1.25rem;
}
.cart-subtotal-honesty {
  margin: 0.35rem 0 0.85rem;
  max-width: 42ch;
}
@media (min-width: 960px) {
  .subscribe-form__fields {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  .subscribe__honesty,
  .subscribe__atajos-micro,
  .subscribe__mix,
  .subscribe__total-note {
    /* honesty always visible — never hover-only */
    opacity: 1;
  }
}


/* ========== Wave 21 — Landing polish ========== */
.hero {
  padding: 1.5rem 0 2rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}
.hero__media {
  position: relative;
  margin: 0;
  order: -1; /* jar first on mobile */
}
.hero__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain; /* jars: upright, full jar visible */
  object-position: center;
  display: block;
  background: #f0f3eb;
}
.hero__badge,
.chooser__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  /* calm chip — not WIP tone */
}
.hero__title {
  margin-bottom: 0.4rem;
}
.hero__sub {
  max-width: 38ch;
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}
.hero__actions .btn {
  width: 100%;
  min-height: 52px;
  justify-content: center;
  text-align: center;
}
@media (min-width: 960px) {
  .hero {
    padding: 2.5rem 0 3rem;
  }
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
  .hero__media { order: 0; }
  .hero__copy { order: 0; }
  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
  }
  .hero__actions .btn {
    width: auto;
    flex: 1 1 0;
    min-width: 10rem;
    min-height: 56px;
  }
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin: 0 0 0.5rem;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  min-width: 0;
}
.trust-strip__item:hover .trust-strip__label {
  text-decoration: underline;
}
.trust-strip__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.trust-strip__text {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.35;
}
@media (min-width: 960px) {
  .trust-strip__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .trust-strip__item {
    text-align: left;
  }
}
@media (max-width: 419px) {
  .trust-strip__grid {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }
  .trust-strip__item {
    flex: 0 0 70%;
    scroll-snap-align: start;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    background: var(--bg-raised);
  }
}

.chooser {
  padding: 2rem 0 2.5rem;
}
.chooser__title {
  margin-bottom: 1.25rem;
}
.chooser__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.chooser__card {
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}
.chooser__media {
  position: relative;
  margin: 0 0 0.85rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  background: #f0f3eb;
}
.chooser__img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* jars: upright, no cover-crop */
  object-position: center;
  display: block;
}
.chooser__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}
.chooser__line {
  margin: 0 0 0.5rem;
  color: var(--fg-muted);
  font-size: 0.98rem;
}
.chooser__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}
.chooser__cta {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  text-align: center;
}
@media (min-width: 960px) {
  .chooser__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.how-to {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.how-to__inner {
  max-width: 40rem;
}
.how-to__steps {
  margin: 0.85rem 0 0.75rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.55rem;
  color: var(--fg);
}
.how-to__steps li {
  padding-left: 0.15rem;
}
.how-to__note {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.95rem;
  max-width: 46ch;
}

.ingredients {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.ingredients__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.ingredients__card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
}
.ingredients__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
}
.ingredients__body {
  margin: 0 0 0.75rem;
  color: var(--fg-muted);
  font-size: 0.98rem;
}
.ingredients__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
  font-size: 0.92rem;
  color: var(--fg);
}
@media (min-width: 960px) {
  .ingredients__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.honesty {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.honesty__inner {
  max-width: 44rem;
}
.honesty__body {
  margin: 0.65rem 0 0;
  color: var(--fg-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}
.honesty__body a {
  color: var(--fg);
  text-decoration: underline;
}

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

.promo-banner {
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
}
.promo-banner__inner {
  text-align: center;
}
.promo-banner__text {
  margin: 0;
  font-size: 0.92rem;
}
.promo-banner__code {
  font-weight: 600;
  margin-left: 0.35rem;
}

/* Ensure lima is NEVER button fill (already basalt/salt — assert) */
.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
}


/* Wave 21 — never show invisible hCaptcha idle chrome */
.email-capture__form .h-captcha[data-size="invisible"],
.site-footer__news-form .h-captcha[data-size="invisible"],
.email-capture__form iframe[src*="checkbox-invisible"],
.site-footer__news-form iframe[src*="checkbox-invisible"],
.email-capture__captcha.is-idle .h-captcha,
.email-capture__captcha[hidden] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Real challenge / visible widget still shown when wrap is active */
.email-capture__captcha.is-active .shopify-challenge__container,
.email-capture__captcha.is-active iframe[src*="frame=challenge"],
.email-capture__captcha.is-active .h-captcha:not([data-size="invisible"]) {
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  overflow: visible !important;
  margin-top: 0.5rem !important;
}

/* Wave 22 — PDP align to landing (calm badge + ATF honesty + CTA hierarchy) */
.product-gallery__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: none;
  pointer-events: none;
  /* calm chip — not WIP / placeholder tone */
}
.product-info__title {
  margin-bottom: 0.35rem;
}
.product-info__benefit {
  margin: 0 0 0.55rem;
  max-width: 40ch;
  color: var(--fg-muted);
  font-size: 1.02rem;
  line-height: 1.45;
}
.product-info__honesty {
  margin: 0.35rem 0 1rem;
  max-width: 48ch;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.product-info__meta {
  margin-bottom: 1rem;
}
.product-info__meta li {
  margin: 0.2rem 0;
}
.product-info__facts {
  margin: 0 0 1.15rem;
  max-width: 48ch;
}
.product-info__ingredients,
.product-info__allergen {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.45;
}
.product-info__disclaimer {
  margin-top: 0.35rem;
}
.product-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}
.product-info__actions .btn {
  flex: 1 1 12rem;
  min-height: 52px;
  justify-content: center;
  text-align: center;
}
.product-info__sub-note {
  margin: 0.65rem 0 0;
  max-width: 48ch;
}
.product-info__links {
  margin-top: 1rem;
}
@media (max-width: 959px) {
  .product-info__honesty {
    /* always visible — never hover-only */
    width: 100%;
  }
  .product-info__actions {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .product-info__actions .btn,
  .product-info__cart-form {
    width: 100%;
    display: block;
    flex: none;
  }
  .product-info__cart-form .btn {
    width: 100%;
    min-height: 52px;
  }
}


/* Wave 24 — cart trust panel + handoff + empty + FAQ */
.cart-pay-trust {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin: 1rem 0 1.1rem;
  display: grid;
  gap: 0.5rem;
  max-width: 100%;
}
.cart-pay-trust__pagos {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.45;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.cart-pay-trust__methods {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: normal;
  color: var(--fg);
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.cart-pay-trust__cadencia {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--fg-muted);
}
.cart-pay-trust__title { display: none; }
.cart-handoff-note,
.cart-pre-pay,
.cart-stop-before-pay,
.cart-pay-fail {
  margin: 0.35rem 0 0;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--fg-muted);
}
.cart-empty {
  display: grid;
  gap: 0.65rem;
  margin: 0.5rem 0 1.25rem;
  max-width: 36rem;
}
.cart-empty__title {
  margin: 0;
  font-size: 1.15rem;
  color: var(--fg);
}
.cart-empty__body { margin: 0; }
.cart-empty__cta {
  justify-self: start;
  min-height: 48px;
}
.cart-faq {
  margin: 2rem 0 1rem;
  max-width: 40rem;
  display: grid;
  gap: 0.5rem;
}
.cart-faq__heading {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}
.cart-faq__item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  background: var(--bg-raised);
}
.cart-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--fg);
}
.cart-faq__item p { margin: 0.55rem 0 0; }
.cart-item__pref { margin: 0.25rem 0; }
.cart-subtotal-honesty { margin: 0.15rem 0 0.75rem; }

@media (max-width: 959px) {
  .cart-pay-trust {
    border-radius: 12px;
    padding: 0.9rem 1rem;
  }
  .cart-pay-trust__pagos { font-size: 0.95rem; }
  .cart-pay-trust__methods { font-size: 0.88rem; }
  .cart-pay-actions {
    display: grid;
    gap: 0.55rem;
  }
  .cart-pay-actions .btn {
    width: 100%;
    min-height: 48px;
  }
  .cart-empty__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 960px) {
  .cart-pay-trust {
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    max-width: 42rem;
  }
  .cart-pay-actions { max-width: 42rem; }
}

@media (min-width: 1280px) {
  .cart-pay-trust,
  .cart-pay-actions,
  .cart-faq { max-width: 44rem; }
}


/* ========== Wave 25 — FULL buildable pack ========== */

/* A2 — larger display + tighter tracking + band rhythm */
.display {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.035em;
}
.display--s {
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  letter-spacing: -0.025em;
}
.band { padding: 2.15rem 0; }
.band--salt { background: var(--bg); }
.band--pearl { background: var(--bg-raised); }
.hero, .featured, .product-main, .subscribe, .cart-page, .page-main, .collection-main, .list-collections {
  padding: 2.15rem 0 2.5rem;
}
.chooser, .how-to, .ingredients, .honesty, .ritual, .how-prep {
  padding: 2.15rem 0;
}

/* A1 — flush Logo A + compact header ~390 */
.site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}
.site-header__logo {
  width: auto;
  max-height: 36px;
  height: 36px;
  object-fit: contain;
  background: transparent;
}
.site-header__logo--dark { display: none; }
.site-header__logo--light { display: block; }
[data-theme="dark"] .site-header__logo--light { display: none; }
[data-theme="dark"] .site-header__logo--dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .site-header__logo--light { display: none; }
  :root:not([data-theme="light"]) .site-header__logo--dark { display: block; }
}
.site-header__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  position: relative;
  color: var(--fg);
  text-decoration: none;
}
.site-header__cart-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
}
.site-header__cart .site-header__count {
  margin-left: 0;
}
.site-header__link {
  text-decoration: none;
  color: var(--fg);
  transition: color 160ms ease, opacity 160ms ease;
}
.site-header__link.is-active {
  color: var(--fg);
  box-shadow: inset 0 -2px 0 var(--accent);
  font-weight: 600;
}
.site-header__more { display: none; position: relative; }
.site-header__more-sum {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.site-header__more-sum::-webkit-details-marker { display: none; }
.site-header__more-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  min-width: 10rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  display: grid;
  gap: 0.35rem;
  z-index: 90;
  box-shadow: 0 8px 24px color-mix(in oklab, var(--basalt) 12%, transparent);
}
.site-header__more-panel a {
  text-decoration: none;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0.02em;
}
.site-header__more-panel a:hover { background: var(--bg); }

@media (max-width: 959px) {
  .site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding-block: 0.55rem;
  }
  .site-header__logo { max-height: 32px; height: 32px; }
  .site-header__nav {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.55rem;
    font-size: 0.68rem;
  }
  .site-header__link--desktop { display: none; }
  .site-header__more { display: none !important; }
  .site-header__nav { text-transform: none; letter-spacing: 0.04em; }
  .site-header__link {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.68rem;
  }
}
@media (min-width: 960px) {
  .site-header__logo { max-height: 42px; height: 42px; }
  .site-header__nav {
    text-transform: none;
    letter-spacing: 0.03em;
    font-size: 0.9rem;
    gap: 1.25rem;
  }
  .site-header__link { text-transform: none; }
  .site-header__link.is-active {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
  }
}

/* A3/A5 — lima craft ≠ fill + motion */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn {
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease, filter 160ms ease;
  min-height: 48px;
}
.product-gallery__main {
  transition: opacity 180ms ease;
}
.product-gallery__main.is-fading { opacity: 0.35; }
.theme-toggle {
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

/* A4 — continuity 1:1 + pill CTA */
.product-card__media,
.chooser__media,
.product-gallery__stage,
.hero__media,
.ritual__still {
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-card__cta,
.chooser__cta,
.product-info__actions .btn {
  min-height: 52px;
}

/* Quick-add actions */
.product-card__actions,
.chooser__actions {
  display: grid;
  gap: 0.5rem;
  width: 100%;
}
.product-card__quick-add,
.chooser__quick-add,
.product-card__cta-sec,
.chooser__cta-sec {
  width: 100%;
}
.product-card__cta,
.product-card__cta-sec,
.chooser__cta,
.chooser__cta-sec {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.product-card__hint,
.chooser__hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
}
.chooser__tertiary {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: center;
}
.product-card__price,
.chooser__price {
  font-size: 1.35rem;
  font-weight: 700;
}
.product-card {
  padding: 0.85rem;
}
.product-card__body { gap: 0.35rem; }

/* Ritual */
.ritual__title { margin-bottom: 0.35rem; }
.ritual__sub {
  margin: 0 0 1.25rem;
  color: var(--fg-muted);
  max-width: 40ch;
}
.ritual__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ritual__step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0.2rem 0.65rem;
  align-items: start;
}
.ritual__dot {
  grid-row: 1 / span 2;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}
.ritual__kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.ritual__label {
  color: var(--fg-muted);
  font-size: 0.98rem;
}
.ritual__still {
  grid-column: 1 / -1;
  margin-top: 0.55rem;
  border: 1px solid var(--border);
  background: #f0f3eb;
}
.ritual__still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  opacity: 0.92;
}
@media (min-width: 960px) {
  .ritual__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* Cómo pedir assist */
.how-to__assist {
  list-style: none;
  margin: 1rem 0 0.85rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.how-to__assist-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-raised);
}
.how-to__icon { color: var(--fg); flex: 0 0 auto; }
.how-to__assist-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.how-to__assist-text {
  margin: 0.15rem 0 0;
  color: var(--fg-muted);
  font-size: 0.92rem;
}
@media (min-width: 960px) {
  .how-to__assist {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* Cómo prepararlo */
.how-prep__inner { max-width: 40rem; }
.how-prep__steps {
  margin: 0.85rem 0 0.65rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
}
.how-prep__note { max-width: 48ch; }

/* Trust icons */
.trust-strip__icon {
  display: inline-flex;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.trust-strip__icon svg { display: block; }

/* Ingredients por confirmar chips */
.ingredients__chip {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  margin-right: 0.35rem;
  vertical-align: middle;
}
.ingredients__card--pending {
  border-style: dashed;
}

/* Gallery honesty */
.product-gallery__honesty {
  margin: 0.35rem 0 0;
  max-width: 42ch;
}

/* PDP hierarchy */
.product-info__meta--muted {
  opacity: 0.85;
  font-size: 0.85rem;
}
.product-info__actions .btn--primary {
  min-height: 56px;
}

/* FAQ density groups */
.faq-accordion {
  padding: 2.15rem 0;
  border-top: 1px solid var(--border);
}
.faq-accordion__inner { max-width: 48rem; }
.faq-accordion__groups {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}
.faq-group {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-raised);
  padding: 0.15rem 0.25rem;
}
.faq-group__sum {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.75rem 0.85rem;
  list-style: none;
}
.faq-group__sum::-webkit-details-marker { display: none; }
.faq-group__body {
  display: grid;
  gap: 0.4rem;
  padding: 0 0.55rem 0.75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  background: var(--bg);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--fg);
}
.faq-item p { margin: 0.5rem 0 0; }

/* Cart cross-sell + empty secondary + one handoff */
.cart-cross-sell {
  margin: 1.1rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-raised);
  max-width: 42rem;
  display: grid;
  gap: 0.45rem;
}
.cart-cross-sell__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.cart-cross-sell__line {
  margin: 0;
  color: var(--fg-muted);
}
.cart-empty__actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
}
.cart-empty__cta-sec {
  justify-self: start;
  min-height: 48px;
}
.cart-handoff-more { margin: 0.15rem 0 0.5rem; }
.cart-pre-pay,
.cart-stop-before-pay { display: none !important; }

@media (max-width: 959px) {
  .cart-empty__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* D12 — picker craft 44px + lima hairline */
.qty-shortcut,
.qty-btn,
.cadence-pills .pill span {
  min-height: 44px;
  min-width: 44px;
}
.qty-shortcut.is-selected,
.cadence-pills .pill:has(input:checked) span {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
  background: var(--bg);
}

/* Home sticky Ver productos */
.home-sticky {
  display: none;
}
@media (max-width: 959px) {
  .home-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 28;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: color-mix(in oklab, var(--bg-raised) 92%, transparent);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(8px);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }
  .home-sticky.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .home-sticky[hidden] { display: none !important; }
  .home-sticky__cta {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  body.home-sticky-active {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }
}
@media (min-width: 960px) {
  .home-sticky { display: none !important; }
}

/* A6 — dark pass panels */
[data-theme="dark"] .chooser__card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .cart-pay-trust,
[data-theme="dark"] .cart-cross-sell,
[data-theme="dark"] .subscribe__panel,
[data-theme="dark"] .how-to__assist-item,
[data-theme="dark"] .ingredients__card,
[data-theme="dark"] .faq-group,
[data-theme="dark"] .sticky-atc,
[data-theme="dark"] .home-sticky {
  border-color: color-mix(in oklab, var(--salt) 18%, transparent);
}
[data-theme="dark"] .hero__media,
[data-theme="dark"] .product-gallery__stage,
[data-theme="dark"] .chooser__media,
[data-theme="dark"] .product-card__media,
[data-theme="dark"] .ritual__still {
  background: oklch(0.24 0.025 145);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .chooser__card,
  :root:not([data-theme="light"]) .product-card,
  :root:not([data-theme="light"]) .cart-pay-trust,
  :root:not([data-theme="light"]) .cart-cross-sell,
  :root:not([data-theme="light"]) .subscribe__panel,
  :root:not([data-theme="light"]) .how-to__assist-item,
  :root:not([data-theme="light"]) .ingredients__card,
  :root:not([data-theme="light"]) .faq-group {
    border-color: color-mix(in oklab, var(--salt) 18%, transparent);
  }
}

/* Sticky ATC chip visibility when subscribe mode */
.sticky-atc__micro:not([hidden]) {
  display: block;
}

/* ========== Wave 26 — TASTE / anti-slop CONDITIONAL (Hero Option A) ========== */

/* Morning world: soft gradient salt→pearl + optional grain */
body {
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--salt) 100%, var(--pearl) 0%) 0%,
      color-mix(in oklab, var(--salt) 92%, var(--pearl) 8%) 42%,
      color-mix(in oklab, var(--salt) 88%, var(--pearl) 12%) 100%);
  background-attachment: fixed;
}
[data-theme="dark"] body {
  background: var(--bg);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) body {
    background: var(--bg);
  }
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
#MainContent, .site-footer, .home-sticky, .sticky-atc {
  position: relative;
  z-index: 1;
}
/* W37 — header stays sticky above hero (do not demote to z-index 1) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  overflow: visible;
}

/* Lima hairline rules between major bands — not lima fill bars */
.chooser,
.ritual,
.how-to,
.honesty,
.ingredients,
.faq-accordion,
.email-capture {
  border-top: 1px solid color-mix(in oklab, var(--accent) 55%, var(--border));
}
.ritual.band--pearl {
  border-top-color: color-mix(in oklab, var(--accent) 55%, var(--border));
}

/* Type attitude §6 */
.display,
.hero__title {
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  letter-spacing: -0.035em;
  font-weight: 700;
}
.hero__title {
  max-width: 12ch;
}
.display--s {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  letter-spacing: -0.02em;
  font-weight: 600;
}

/* Uneven rhythm */
.section-hero { margin-bottom: 0; }
.hero--bleed { padding: 0; }
.chooser { padding: 1.35rem 0 1.75rem; }
.ritual--bleed,
.ritual.band--pearl {
  padding: 3rem 0;
}
.how-to { padding: 1.35rem 0 1.5rem; }
.honesty { padding: 1.75rem 0 2rem; }
.ingredients { padding: 1.5rem 0; }
.faq-accordion { padding: 1.5rem 0 2rem; }
.email-capture { padding: 1.25rem 0 2rem; }

/* Demote theme toggle vs Cart */
.theme-toggle {
  width: 2rem;
  height: 2rem;
  border: none;
  opacity: 0.55;
  color: var(--fg-muted);
}
.theme-toggle:hover { opacity: 0.85; }
.site-header__cart {
  font-weight: 600;
}

/* ---- Hero Option A: full-bleed, NO nested card ---- */
.hero--bleed {
  padding: 0;
  margin: 0;
}
/* W40 — mobile restack: media is an in-flow block above copy, not an absolute overlay under it.
   Desktop (>=960px) still switches .hero__stage to a grid + .hero__media to a relative panel below. */
.hero__stage {
  position: relative;
  display: block;
}
.hero__media {
  position: relative;
  margin: 0;
  border-radius: 0 !important;
  aspect-ratio: auto !important;
  overflow: hidden;
  background: #1a2218;
  border: none;
}
.hero__img {
  display: block;
  width: 100%;
  height: auto !important; /* own height from the image; no forced full-bleed crop on mobile — beats the generic .hero__media img 1:1 rule (Wave 21) */
  object-fit: contain; /* jars: upright, full jar visible */
  object-position: center;
  aspect-ratio: auto !important;
  filter: contrast(1.06) saturate(0.92) brightness(0.88);
}
.hero__scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in oklab, var(--salt) 55%, transparent) 45%,
    var(--salt) 100%
  );
  pointer-events: none;
}
[data-theme="dark"] .hero__scrim {
  height: 72%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in oklab, #121E12 55%, transparent) 22%,
    color-mix(in oklab, #121E12 88%, transparent) 48%,
    #121E12 72%,
    #121E12 100%
  );
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero__scrim {
    height: 72%;
    background: linear-gradient(
      180deg,
      transparent 0%,
      color-mix(in oklab, #121E12 55%, transparent) 22%,
      color-mix(in oklab, #121E12 88%, transparent) 48%,
      #121E12 72%,
      #121E12 100%
    );
  }
}
/* W40 — mobile restack: kill the scrim entirely. It existed only to fog type onto the jar;
   with copy now below the jar in its own band, there is no overlap left to hide. */
@media (max-width: 959px) {
  .hero__scrim {
    display: none;
  }
}
.hero__copy {
  position: relative;
  padding: 1.75rem 0 2rem;
  background: var(--salt);
}
[data-theme="dark"] .hero__copy {
  background: var(--bg);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero__copy {
    background: var(--bg);
  }
}
.hero__copy-inner {
  width: 100%;
  padding-bottom: 0.25rem;
}
.hero__sub {
  max-width: 34ch;
  margin: 0 0 1rem;
  color: var(--fg-muted);
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
  max-width: 22rem;
}
.hero__actions .btn {
  width: 100%;
  min-height: 52px;
}
.hero__text-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-align: center;
  padding: 0.25rem 0;
  letter-spacing: 0.01em;
  text-transform: none;
}
.hero__text-link:hover { color: var(--fg); opacity: 0.8; }
.hero__trust {
  margin: 0.85rem 0 0;
  color: var(--fg-muted);
  font-size: 0.88rem;
  max-width: 36ch;
  line-height: 1.4;
}
/* Kill old twin-pill row + card chrome */
.hero--bleed .hero__badge { display: none !important; }
.hero--bleed .btn--secondary.hero__cta { display: none !important; }

/* W37 — hero title contrast on jar/scrim; ban white-on-light */
.hero--bleed .hero__title {
  color: var(--basalt);
}
[data-theme="dark"] .hero--bleed .hero__title {
  color: var(--salt);
  text-shadow: 0 1px 2px color-mix(in oklab, var(--basalt) 35%, transparent);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero--bleed .hero__title {
    color: var(--salt);
    text-shadow: 0 1px 2px color-mix(in oklab, var(--basalt) 35%, transparent);
  }
}


@media (min-width: 960px) {
  /* Desktop keeps the side-by-side split: media is a relative left panel, copy a centered right band. */
  .hero__stage {
    display: grid;
    grid-template-columns: minmax(55vw, 1.35fr) minmax(0, 1fr);
    min-height: 78vh;
    align-items: stretch;
    width: 100%;
  }
  .hero__media {
    position: relative;
    min-height: 78vh;
    width: 100%;
    border-radius: 0 !important;
    background: #1a2218 !important;
    box-shadow: none !important;
    border: 0 !important;
  }
  .hero__scrim {
    display: block;
    height: 100%;
    width: 28%;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, color-mix(in oklab, var(--salt) 70%, transparent) 55%, var(--salt) 100%);
  }
  [data-theme="dark"] .hero__scrim {
    background: linear-gradient(90deg, transparent 0%, color-mix(in oklab, var(--bg) 70%, transparent) 55%, var(--bg) 100%);
  }
  .hero__copy {
    display: flex;
    min-height: 78vh;
    align-items: center;
    padding: 2.5rem 0;
    background: var(--salt);
  }
  [data-theme="dark"] .hero__copy { background: var(--bg); }
  .hero__copy-inner {
    max-width: 28rem;
    margin-left: clamp(1rem, 4vw, 3rem);
    margin-right: clamp(1rem, 5vw, 4rem);
  }
  .hero__actions {
    align-items: flex-start;
  }
  .hero__actions .btn { width: auto; min-width: 12rem; }
  .hero__text-link { text-align: left; }
  .hero__img {
    height: 100% !important; /* desktop panel fill; must beat the mobile-first height:auto !important above */
    object-position: center 28%;
    filter: contrast(1.08) saturate(0.9) brightness(0.86);
  }
}

@media (max-width: 959px) {
  .hero__title {
    font-size: clamp(2.4rem, 9vw, 3.1rem);
    max-width: 11ch;
  }

/* Fallback trust line (if section mounted) */
.trust-line {
  padding: 0.65rem 0 0.35rem;
  border: none;
}
.trust-line__text {
  margin: 0;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.88rem;
}
/* Ensure old 4-icon styles never resurrect visually if HTML stale */
.trust-strip__grid,
.trust-strip__icon { display: none !important; }

/* ---- Media shell matrix §5 ---- */
.chooser__media {
  aspect-ratio: 4 / 5 !important;
  border-radius: 8px !important;
}
.chooser__card {
  border-radius: 10px;
  padding: 0.75rem;
}
.product-card__media {
  aspect-ratio: 1 / 1;
  border-radius: 8px !important;
}
.product-card {
  border-radius: 10px;
}
.product-card__media { flex: 1 1 auto; }
.product-card__body { flex: 0 0 auto; }
/* denser collection: image ~70% visual weight via padding/type shrink */
.product-card__benefit { font-size: 0.9rem; }
.product-card__body { padding-top: 0.35rem; }

.product-gallery__stage,
.product-gallery__stage--portrait {
  aspect-ratio: 4 / 5 !important;
  border-radius: 10px !important;
}
.product-gallery__main {
  width: 100%;
  height: 100%;
  object-fit: contain; /* jars: upright, no cover-crop */
  object-position: center;
  aspect-ratio: 4 / 5;
}

.cart-item__thumb,
.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: #f0f3eb;
}
.cart-item {
  border: none;
  background: transparent;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}

/* Ritual non-square abstract stills */
.ritual__still,
.ritual__still--abstract {
  aspect-ratio: 3 / 2 !important;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--salt) 70%, var(--pearl) 30%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.ritual__still img { display: none; }
.ritual__abstract-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 18%, transparent);
}
.ritual__abstract-mark {
  position: absolute;
  bottom: 0.55rem;
  left: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
}
@media (max-width: 959px) {
  .ritual__steps {
    display: flex;
    overflow-x: auto;
    gap: 0.85rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
  }
  .ritual__step {
    flex: 0 0 78%;
    scroll-snap-align: start;
    display: grid;
  }
}
@media (min-width: 960px) {
  .ritual__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ritual__kicker {
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 1.05rem;
}

/* PDP desire-first */
.product-info__price {
  font-size: clamp(1.55rem, 3vw, 1.85rem);
  margin: 0.35rem 0 0.85rem;
}
.product-info__actions {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}
.product-info__text-link {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-align: center;
  color: var(--fg);
  padding: 0.35rem 0;
}
.product-info__honesty {
  margin: 0.85rem 0 0.75rem;
  font-size: 0.85rem;
}
.product-info__sub-note {
  margin: 0.15rem 0 0.5rem;
}
.product-gallery__honesty {
  color: var(--fg-muted);
  font-size: 0.8rem;
  margin-top: 0.45rem;
}
.product-info__dev-hint { white-space: nowrap; }

/* Cart single surface — kill stacked equal boxes */
.cart-page--single .cart-pay-trust,
.cart-page--single .cart-ship-strip,
.cart-page--single .cart-sub-callout {
  display: none !important;
}
.cart-page__surface {
  max-width: 40rem;
}
.cart-cross-sell--row {
  margin: 0.85rem 0 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px dashed var(--border);
  border-radius: 10px;
  background: transparent;
  max-width: none;
}
.cart-cross-sell__mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cart-cross-sell__thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #f0f3eb;
  flex: 0 0 auto;
}
.cart-cross-sell__copy { flex: 1 1 10rem; min-width: 0; }
.cart-cross-sell__title {
  margin: 0;
  font-size: 1rem;
}
.cart-cross-sell__line {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
}
.cart-cross-sell__add {
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  font-size: 0.72rem;
}
.cart-totals {
  margin: 0.85rem 0 0.5rem;
}
.cart-totals__sub { margin: 0 0 0.25rem; }
.cart-totals__ship { margin: 0; }
.cart-pay-quiet {
  margin: 0.35rem 0 0.85rem;
  padding: 0;
  border: none;
  background: none;
}
.cart-empty__text-link {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: var(--fg);
  padding: 0.25rem 0;
}
.cart-empty__actions {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
  margin: 0.75rem 0 0.5rem;
}
.cart-empty__ship { margin-top: 0.75rem; }
.cart-sub-line { margin: 0.5rem 0 0.75rem; }

/* Lima craft lock — assert primary never lima */
.btn--primary {
  background: var(--btn-primary-bg) !important;
  color: var(--btn-primary-fg) !important;
}
.product-gallery__thumb.is-active {
  box-shadow: inset 0 0 0 1px var(--accent);
  border-color: var(--accent);
}

/* Dark second pass */
[data-theme="dark"] .hero__media {
  background: oklch(0.14 0.02 145);
}
[data-theme="dark"] .ritual__still--abstract {
  background: oklch(0.2 0.025 145);
}
[data-theme="dark"] .chooser,
[data-theme="dark"] .ritual,
[data-theme="dark"] .how-to,
[data-theme="dark"] .honesty,
[data-theme="dark"] .ingredients,
[data-theme="dark"] .faq-accordion {
  border-top-color: color-mix(in oklab, var(--accent) 40%, var(--border));
}

/* Continuity overrides from W25 square lock — keep shells varied */
.hero--bleed .hero__media {
  aspect-ratio: auto !important;
  border-radius: 0 !important;
}


/* ========== Wave 27 — free-ship ATF + landing continuity + FAQ lean ========== */

/* Shared morning canvas continuity — bands transparent over body gradient (no flat white resets) */
.chooser,
.how-to,
.honesty,
.ingredients,
.faq-accordion,
.email-capture,
.page-envios {
  background: transparent;
}
.ritual.band--pearl {
  /* intentional interrupt — keep pearl full-bleed */
  background: var(--bg-raised);
}

/* Type ladder lock — one H2 scale across home bands */
.chooser__title,
.ritual .display--s,
.how-to .display--s,
.honesty .display--s,
.ingredients .display--s,
.faq-accordion .display--s,
.page-envios__h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  letter-spacing: -0.02em;
  font-weight: 600;
}

/* Hero ATF trust — quiet + optional muted 2nd line */
.hero__trust {
  margin: 0.85rem 0 0;
  color: var(--fg-muted);
  font-size: 0.88rem;
  max-width: 36ch;
  line-height: 1.4;
}
.hero__trust--muted {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  opacity: 0.78;
}

/* FAQ lean — same shell tokens as honesty; zero nested group chrome */
.faq-accordion--lean,
.faq-accordion {
  padding: 1.35rem 0 1.75rem;
  border-top: 1px solid color-mix(in oklab, var(--accent) 55%, var(--border));
}
.faq-accordion__inner {
  max-width: 40rem;
}
.faq-accordion__list {
  margin-top: 0.85rem;
  display: grid;
  gap: 0;
}
.faq-accordion--lean .faq-item,
.faq-accordion .faq-item {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.faq-accordion--lean .faq-item summary,
.faq-accordion .faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--fg);
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
  width: 100%;
}
.faq-accordion--lean .faq-item summary::-webkit-details-marker,
.faq-accordion .faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-accordion--lean .faq-item .lede,
.faq-accordion--lean .faq-item p,
.faq-accordion .faq-item .lede,
.faq-accordion .faq-item p {
  margin: 0 0 0.9rem;
  max-width: 42ch;
}
/* Kill legacy group chrome if stale HTML */
.faq-group { display: none !important; }

/* Quieter honesty + FAQ pairing */
.honesty {
  padding: 1.5rem 0 1.25rem;
}
.faq-accordion--lean .display--s {
  color: var(--fg);
  opacity: 0.92;
}

/* Envíos page — same tokens as home */
.page-envios {
  padding: 2rem 0 2.5rem;
  border-top: none;
}
.page-envios__block {
  margin: 1.5rem 0;
  padding-top: 1.15rem;
  border-top: 1px solid color-mix(in oklab, var(--accent) 55%, var(--border));
}
.page-envios__h2 {
  margin: 0 0 0.55rem;
}
.page-envios__body {
  margin: 0;
  max-width: 48ch;
  color: var(--fg-muted);
}
.page-envios__intro {
  margin: 0.65rem 0 0;
  max-width: 42ch;
}
.page-envios__gratis { display: none; } /* rates live in table for única */

/* Stack rate table rows on ~390 */
@media (max-width: 480px) {
  .envios-table,
  .envios-table thead,
  .envios-table tbody,
  .envios-table tr,
  .envios-table th,
  .envios-table td {
    display: block;
    width: 100%;
  }
  .envios-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .envios-table tr {
    border-bottom: 1px solid var(--border);
    padding: 0.65rem 0;
  }
  .envios-table th[scope="row"] {
    font-weight: 600;
    padding: 0;
  }
  .envios-table td {
    padding: 0.15rem 0 0;
    color: var(--fg-muted);
  }
}

/* Cart ship lines — quiet near subtotal */
.cart-totals__ship {
  margin: 0.15rem 0 0;
  color: var(--fg-muted);
}
.cart-totals__ship-safe {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  opacity: 0.82;
  max-width: 42ch;
}
.cart-faq.faq-accordion--lean {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.cart-faq__heading {
  margin: 0 0 0.35rem;
}

/* Chooser / PDP / subscribe muted free-ship micro */
.chooser__ship,
.product-info__ship,
.subscribe__onetime-ship {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.85;
  max-width: 36ch;
}
.subscribe__total-note {
  margin-top: 0.35rem;
}

/* Continuity: avoid heavy pearl plates stacking on how-to / ingredients cards if present */
.how-to,
.ingredients {
  background: transparent;
}

[data-theme="dark"] .faq-accordion--lean .faq-item,
[data-theme="dark"] .faq-accordion .faq-item {
  background: transparent;
  border-bottom-color: color-mix(in oklab, var(--salt) 14%, transparent);
}

/* === WAVE 28 FUNNEL CUT === */
/* Cards: primary ATC only; Ver producto = text-link (not ghost pill) */
.product-card__text-link,
.chooser__text-link {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: var(--fg);
  padding: 0.35rem 0;
  background: none;
  border: 0;
}
.chooser__tertiary,
.product-card__cta-sec.btn--secondary,
.chooser__cta-sec.btn--secondary {
  display: none !important;
}
.product-card__actions,
.chooser__actions {
  display: grid;
  gap: 0.35rem;
  width: 100%;
}
.product-card__quick-add,
.chooser__quick-add {
  width: 100%;
}
.product-card__cta,
.chooser__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  min-height: 52px;
}
.chooser__honesty {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.85rem;
}
.chooser__honesty a {
  color: var(--fg-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* PDP ATF buy block — whisper one line; below-fold meta */
.product-info__atf {
  display: grid;
  gap: 0.35rem;
}
.product-info__tipo {
  margin: 0;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.product-info__whisper {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.product-info__below {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--lima, #b8d46a) 28%, transparent);
}
.product-info__sub-jump {
  margin: 0.15rem 0 0;
  text-align: center;
}
.product-info__actions {
  margin-bottom: 0;
}
/* Wave 29 — ATF text link is not a second filled buy */
.product-info__atf .product-info__text-link {
  font-size: 0.92rem;
  font-weight: 600;
}
.product-info__price {
  margin: 0.25rem 0 0.15rem;
}

/* Footer newsletter title */
.site-footer__news-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.site-footer__news-status {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}
.site-footer__news-status--err {
  color: var(--fg);
}

/* Wave 29 — FAQ off home; keep lean FAQ styles for PDP/pages only */
.template-product .faq-accordion--lean,
.template-page .faq-accordion--lean {
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}

/* === WAVE 28 PDP MOBILE ATF === */
/* ~390: compress media so buy (whisper+ATC) lands in first screen */
@media (max-width: 749px) {
  .product-gallery__stage,
  .product-gallery__stage--portrait {
    aspect-ratio: 1 / 1 !important;
    max-height: min(58vw, 280px);
  }
  .product-gallery__honesty {
    display: none;
  }
  .product-info__atf {
    gap: 0.2rem;
  }
  .product-info__price {
    margin: 0.15rem 0 0.05rem;
  }
  .product-info__whisper {
    margin: 0 0 0.4rem;
  }
  .product-info__benefit {
    margin: 0;
  }
  .product-info__tipo {
    margin: 0;
  }
}


/* === WAVE 29 BUY-PATH CLARITY === */
.template-index .faq-accordion { display: none !important; }
.site-footer__links a + a::before {
  content: none;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

/* === WAVE 30 CHOOSER SELL CLARITY === */
.sell-fork {
  display: grid;
  gap: 0.1rem;
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.35;
}
.sell-fork__line {
  margin: 0;
  color: inherit;
  font-size: inherit;
}
.chooser__body .sell-fork,
.product-card__body .sell-fork {
  margin: 0 0 0.55rem;
}
.product-info__whisper.sell-fork {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
}
.product-card__price {
  margin: 0 0 0.35rem;
}
/* old one-line hint killed — keep class inert if residual */
.product-card__hint,
.chooser__hint {
  display: none;
}
@media (max-width: 749px) {
  .product-info__whisper.sell-fork {
    margin: 0 0 0.35rem;
    font-size: 0.8rem;
  }
  .sell-fork {
    font-size: 0.78rem;
  }
}


/* === WAVE 31 CART STRIP + COLLECTION D1280 CROP === */
/* FAQ accordion removed from cart — hide residual if any */
.cart-page .cart-faq,
#cart-faq { display: none !important; }

/* ≥1280: full card in frame — jar + price + fork + ATC + Ver unclipped */
@media (min-width: 1280px) {
  .product-card {
    height: auto;
    overflow: visible;
  }
  .product-grid__item > .product-card {
    height: auto;
  }
  .product-card__media {
    aspect-ratio: 1 / 1;
    max-height: 320px;
    overflow: hidden;
  }
  .product-card__img {
    object-fit: contain;
    object-position: center;
    max-height: 320px;
  }
  .product-card__body {
    flex-shrink: 0;
    overflow: visible;
  }
  .product-card__body .sell-fork {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }
}


/* Wave 32 — Arma preferencia cut */
.subscribe-form--preferencia {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.subscribe-form--preferencia .cadence-field {
  margin: 0;
  border: 0;
  padding: 0;
}
.subscribe-form--preferencia .cadence-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.subscribe__honesty {
  margin: 0;
  max-width: 42ch;
}
.subscribe__whisper {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.88rem;
}
.subscribe-form--preferencia .subscribe-actions {
  margin-top: 0.15rem;
}
.subscribe-form--preferencia .subscribe-actions .btn {
  width: 100%;
  max-width: 22rem;
}
.how-prep__details {
  border: 0;
}
.how-prep__summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.how-prep__summary::-webkit-details-marker { display: none; }
.how-prep__summary::after {
  content: '+';
  font-weight: 500;
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1;
}
.how-prep__details[open] .how-prep__summary::after { content: '−'; }
.how-prep__details .how-prep__steps { margin-top: 0.85rem; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}


/* Wave 33 — checkout-first cart + ingredients details */
.cart-cross-sell--below {
  margin-top: 1.25rem;
  opacity: 0.92;
}
.product-info__reg-details {
  margin-top: 0.85rem;
  border-top: 1px solid color-mix(in oklab, var(--ink) 12%, transparent);
  padding-top: 0.65rem;
}
.product-info__reg-summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product-info__reg-summary::-webkit-details-marker { display: none; }
.product-info__reg-summary::after {
  content: '+';
  font-weight: 500;
  opacity: 0.7;
}
.product-info__reg-details[open] .product-info__reg-summary::after { content: '−'; }
.product-info__reg-details .product-info__meta,
.product-info__reg-details .product-info__facts {
  margin-top: 0.65rem;
}

/* Wave 35 — quiet Registro sanitario seal (salt/pearl, no lima fill) */
.reg-seal {
  margin: 0.85rem 0 0.75rem;
  padding: 0.65rem 0.85rem;
  max-width: 22rem;
  background: color-mix(in oklab, var(--pearl) 70%, var(--salt) 30%);
  border: 1px solid color-mix(in oklab, var(--basalt) 14%, transparent);
  border-radius: 0.35rem;
}
.reg-seal__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--basalt);
}
.reg-seal__sub {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  color: var(--fg-muted, color-mix(in oklab, var(--basalt) 62%, transparent));
}
@media (prefers-color-scheme: dark) {
  .reg-seal {
    background: color-mix(in oklab, var(--basalt) 55%, transparent);
    border-color: color-mix(in oklab, var(--salt) 16%, transparent);
  }
  .reg-seal__label { color: var(--salt); }
}

/* Wave 36 — cart qty stepper row (reuse .qty-stepper / .qty-btn) */
.cart-item__qty-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin: 0.35rem 0 0.45rem;
}
.cart-item__qty-row .qty-stepper {
  flex: 0 0 auto;
}
.cart-item__line-price {
  margin: 0;
}
.cart-form.is-updating {
  opacity: 0.72;
  pointer-events: none;
}
