/* Forest theme */
@font-face {
  font-family: "Forest Display";
  src: url("./fonts/bricolage-grotesque-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

/* Homepage best-sellers destination and transparent legal footer. */
.forest-home .forest-section-head {
  position: static;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
}
.forest-home .forest-section-head::after {
  content: "";
  position: absolute;
  inset: 0;
}
.forest-home .forest-products .forest-product-grid {
  position: relative;
  z-index: 2;
}
.forest-home .forest-section-arrow {
  display: grid;
  place-items: center;
  align-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--forest-button);
  font-size: 18px;
  transition: transform .2s ease;
}
.forest-home .forest-section-head:hover .forest-section-arrow {
  transform: translateX(4px);
}
.forest-home .forest-section-head:focus-visible {
  outline: none;
}
.forest-home .forest-section-head:focus-visible::after {
  outline: 3px solid var(--forest-button);
  outline-offset: -3px;
  border-radius: 11px;
}
.forest-home .forest-bento-footer {
  color: var(--forest-text);
  background: transparent;
}
.forest-home .forest-bento-footer a {
  color: var(--forest-link);
  text-decoration-color: rgba(0, 101, 75, .4);
}
:root {
  --forest-bg: #f5f1e6;
  --forest-surface: #fff;
  --forest-primary: #004735;
  --forest-header: #00513d;
  --forest-header-text: #fff;
  --forest-topbar: #00251d;
  --forest-nav: #003f30;
  --forest-nav-text: #fff;
  --forest-heading: #073e32;
  --forest-text: #385d54;
  --forest-link: #006f52;
  --forest-button: #ffc321;
  --forest-button-text: #073e32;
  --forest-footer: #003f30;
  --forest-footer-text: #fff;
  --forest-max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--forest-bg);
  color: var(--forest-text);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}
a {
  color: var(--forest-link);
  text-decoration: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
h1,
h2,
h3 {
  color: var(--forest-heading);
  text-wrap: balance;
}
.forest-topline {
  background: var(--forest-topbar);
  color: var(--forest-header-text);
  font-size: 12px;
  font-weight: 700;
}
.forest-topline > div {
  width: 100%;
  max-width: none;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 clamp(20px, 3vw, 56px);
}
.forest-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--forest-header);
  color: var(--forest-header-text);
}
.forest-header-main {
  width: 100%;
  max-width: none;
  height: 76px;
  display: grid;
  grid-template-columns: 190px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: auto;
  padding: 0 clamp(20px, 3vw, 56px);
}
.forest-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-header-text);
  font-size: 19px;
}
.forest-brand-mark {
  color: var(--forest-button);
  font-size: 25px;
}
.forest-brand-logo {
  display: block;
  width: auto;
  max-width: 180px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}
.forest-brand-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}
.forest-brand.has-custom-logo .forest-brand-fallback,
.forest-brand.has-custom-logo > .forest-brand-mark,
.forest-brand.has-custom-logo > strong {
  display: none;
}
.forest-search {
  position: relative;
  height: 42px;
  display: flex;
  border-radius: 7px;
  background: #fff;
  z-index: 20;
}
.forest-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 7px 0 0 7px;
  padding: 0 16px;
  color: #253f38;
  font: inherit;
}
.forest-search button {
  width: 52px;
  border: 0;
  background: var(--forest-button);
  color: var(--forest-button-text);
  font-size: 24px;
  cursor: pointer;
  border-radius: 0 7px 7px 0;
}
.forest-search:focus-within {
  outline: 3px solid color-mix(in srgb, var(--forest-button) 70%, #fff);
  outline-offset: 2px;
}
.forest-search input:focus,
.forest-search button:focus {
  outline: 0;
}
.forest-search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  max-height: min(520px, calc(100vh - 140px));
  overflow: hidden auto;
  border-radius: 14px;
  background: #f4fbf7;
  color: #123f33;
  box-shadow: 0 18px 45px rgba(1, 38, 29, .28);
  text-align: left;
  overscroll-behavior: contain;
}
.forest-search-list {
  padding: 8px;
}
.forest-search-result {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 7px 10px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  transition: background-color 150ms ease-out, transform 150ms ease-out;
}
.forest-search-result:hover,
.forest-search-result.is-active {
  background: #fff1b8;
  color: #123f33;
  transform: translateX(2px);
}
.forest-search-result:focus-visible,
.forest-search-all:focus-visible {
  outline: 3px solid var(--forest-button);
  outline-offset: -3px;
}
.forest-search-result-image {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  color: #5f8c80;
  font-weight: 800;
}
.forest-search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.forest-search-result-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.forest-search-result-copy strong {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.forest-search-result-copy small {
  overflow: hidden;
  color: #527268;
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.forest-search-result-copy mark {
  padding: 0;
  background: transparent;
  color: #8a6200;
}
.forest-search-result-price {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: #0b5a46;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.forest-search-result-price small {
  color: #527268;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.forest-search-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--forest-button);
  color: var(--forest-button-text);
  font-size: 14px;
  text-decoration: none;
}
.forest-search-all:hover {
  color: var(--forest-button-text);
  filter: brightness(.96);
}
.forest-search-message {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 16px 18px;
}
.forest-search-message > i {
  width: 34px;
  color: #0b6b52;
  font-size: 22px;
  text-align: center;
}
.forest-search-message span {
  display: grid;
  gap: 3px;
}
.forest-search-message strong {
  font-size: 14px;
}
.forest-search-message small {
  color: #527268;
  font-size: 12px;
}
.forest-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.forest-actions > a {
  padding: 10px 16px;
  border-radius: 7px;
  background: var(--forest-button);
  color: var(--forest-button-text);
  font-weight: 800;
}
.forest-actions > .forest-icon-action {
  width: 44px;
  height: 44px;
  display: inline-grid;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  border-radius: 12px;
  font-size: 18px;
  transition: transform .18s ease, filter .18s ease;
}
.forest-actions > .forest-icon-action:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.forest-actions > .forest-icon-action:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--forest-button) 65%, #fff);
  outline-offset: 3px;
}
.forest-actions .sf-favorites-link {
  position: relative;
}
.forest-actions .sf-favorites-link > b {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 19px;
  height: 19px;
  display: grid;
  padding: 0 5px;
  place-items: center;
  border-radius: 999px;
  background: var(--forest-button);
  color: var(--forest-button-text);
  font-size: 10px;
}
.forest-actions .sf-cart-trigger {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  border-radius: 12px;
  border-color: transparent;
  background: rgba(255, 255, 255, .12);
  color: var(--forest-header-text);
  font-size: 18px;
}
.forest-actions .sf-cart-trigger .forest-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  background: var(--forest-button);
  color: var(--forest-button-text);
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 0 0 3px var(--forest-header);
}
.forest-nav {
  min-height: 44px;
  display: flex;
  align-items: stretch;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--forest-nav);
  overflow: auto;
}
.forest-nav a {
  display: flex;
  align-items: center;
  padding: 0 17px;
  color: var(--forest-nav-text);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.forest-nav .is-category {
  background: var(--forest-button);
  color: var(--forest-button-text);
}
.forest-hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--forest-primary);
  color: var(--forest-header-text);
}
.forest-hero-copy {
  width: min(590px, 100%);
  justify-self: end;
  padding: 70px 48px 70px 24px;
}
.forest-kicker,
.forest-section-head > span,
.forest-benefit-intro > span {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--forest-button) 18%, transparent);
  color: var(--forest-button);
  font-size: 11px;
  font-weight: 800;
}
.forest-hero h1 {
  max-width: 620px;
  margin: 18px 0;
  font-size: var(--forest-title-size);
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--forest-header-text);
}
.forest-hero p {
  max-width: 60ch;
  color: color-mix(in srgb, var(--forest-header-text) 82%, transparent);
  font-size: 17px;
}
.forest-hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.forest-button,
.forest-link-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}
.forest-button {
  background: var(--forest-button);
  color: var(--forest-button-text);
}
.sf-cart-checkout {
  width: 100%;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.forest-link-button {
  border: 1px solid
    color-mix(in srgb, var(--forest-header-text) 28%, transparent);
  color: var(--forest-header-text);
}
.forest-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 27px;
  font-size: 13px;
  font-weight: 700;
}
.forest-proof span:before {
  content: "•";
  margin-right: 7px;
  color: var(--forest-button);
}
.forest-hero-art {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.forest-hero-image {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.forest-hero-art.has-custom-image .forest-leaf,
.forest-hero-art.has-custom-image .forest-photo {
  display: none;
}
.forest-photo {
  position: absolute;
  inset: 70px 14% 70px 10%;
  display: grid;
  place-items: center;
  border-radius: 48% 52% 44% 56%;
  background: var(--forest-button);
  color: var(--forest-button-text);
  font-size: 150px;
  font-weight: 900;
}
.forest-leaf {
  position: absolute;
  z-index: 2;
  width: 170px;
  height: 300px;
  border-radius: 100% 0 100% 0;
  background: #2f9556;
  transform: rotate(35deg);
}
.forest-leaf.one {
  left: 3%;
  bottom: 20px;
}
.forest-leaf.two {
  right: 5%;
  top: 25px;
  transform: rotate(210deg);
  background: #78ad4c;
}
.forest-benefits {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 15px;
  margin: auto;
  padding: 70px clamp(20px,3vw,56px);
}
.forest-benefit-intro {
  padding-right: 30px;
}
.forest-benefit-intro h2 {
  margin: 13px 0;
  font-size: 39px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.forest-benefit,
.forest-product {
  background: var(--forest-surface);
  border-radius: 12px;
}
.forest-benefit {
  padding: 23px;
}
.forest-benefit b {
  color: var(--forest-link);
  font-size: 35px;
}
.forest-benefit h3 {
  margin: 18px 0 7px;
}
.forest-benefit p {
  margin: 0;
  font-size: 13px;
}
.forest-products {
  width: 100%;
  max-width: none;
  margin: auto;
  padding: 50px clamp(20px,3vw,56px) 90px;
}
.forest-section-head h2 {
  margin: 10px 0 26px;
  font-size: 40px;
}
.forest-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 15px;
}
.forest-product {
  overflow: hidden;
}
.forest-product > a {
  display: block;
  padding: 12px;
  color: var(--forest-text);
}
.forest-product-image {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #fff;
}
.forest-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.forest-product-image span {
  font-size: 64px;
  font-weight: 900;
  color: #9abbb1;
}
.forest-product small {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--forest-button) 22%, #fff);
  color: var(--forest-button-text);
  font-size: 10px;
  font-weight: 800;
}
.forest-product h3 {
  min-height: 43px;
  margin: 9px 0;
  font-size: 14px;
  line-height: 1.25;
}
.forest-product strong {
  display: block;
  color: var(--forest-primary);
  text-align: right;
  font-size: 18px;
}
.forest-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 60px max(20px, calc((100vw - var(--forest-max)) / 2));
  background: var(--forest-footer);
  color: var(--forest-footer-text);
}
.forest-footer h2 {
  max-width: 520px;
  color: var(--forest-footer-text);
}
.forest-footer nav {
  display: grid;
  gap: 9px;
}
.forest-footer a {
  color: var(--forest-footer-text);
  font-weight: 700;
}

/* Inicio Forest: lienzo continuo verde esmeralda */
.forest-home {
  background: #003b2e;
}
.forest-home main {
  color: #dcefe8;
  background: var(--forest-canvas);
}
.forest-home .forest-hero {
  background: transparent;
}
.forest-home .forest-hero-scene {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(610px, 72vh, 760px);
  display: block;
  overflow: hidden;
}
.forest-home .forest-hero-scene::before {
  content: "MAYOREO";
  position: absolute;
  z-index: 0;
  right: -.035em;
  bottom: -.2em;
  color: rgba(226, 248, 239, .045);
  font-size: clamp(150px, 20vw, 390px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.075em;
  pointer-events: none;
  white-space: nowrap;
}
.forest-home .forest-hero-scene .forest-hero-copy {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: none;
  padding: clamp(74px, 9vh, 110px) max(28px, calc((100vw - 1780px) / 2)) 72px;
}
.forest-home .forest-hero-scene h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--forest-heading);
  font-size: var(--forest-title-size);
  line-height: 1.12;
  letter-spacing: -.03em;
  text-wrap: pretty;
}
.forest-home .forest-hero-scene .forest-hero-copy > p {
  max-width: 49ch;
  margin: 28px 0 0;
  color: var(--forest-text);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
}
.forest-home .forest-hero-scene .forest-proof {
  max-width: 560px;
  gap: 18px 30px;
  margin-top: 34px;
  padding: 0;
  color: var(--forest-text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.forest-home-scene {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.forest-home-scene img {
  position: absolute;
  z-index: 2;
  width: clamp(650px, 49vw, 920px);
  max-width: none;
  height: auto;
  max-height: none;
  right: clamp(-82px, 1vw, 24px);
  left: auto;
  bottom: -18px;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(0, 20, 14, .38));
}
.forest-home .forest-benefits,
.forest-home .forest-products {
  position: relative;
  z-index: 4;
  background: transparent;
}
.forest-home .forest-benefits {
  padding-top: 54px;
}
.forest-home .forest-benefit-intro h2,
.forest-home .forest-section-head h2,
.forest-home .forest-benefit h3,
.forest-home .forest-product h3 {
  color: #f5fff9;
}
.forest-home .forest-benefit-intro p,
.forest-home .forest-benefit p {
  color: #cce6dc;
}
.forest-home .forest-benefit,
.forest-home .forest-product {
  background: #07513f;
  box-shadow: 0 18px 42px rgba(0,26,20,.24);
}

.forest-home .forest-product > a {
  color: #dcefe8;
}
.forest-home .forest-product-image {
  background: #e5f1ec;
}
.forest-home .forest-product-image span {
  color: #397765;
}
.forest-home .forest-product strong {
  color: var(--forest-button);
}
.forest-home .forest-empty {
  color: #dcefe8;
}
.forest-home .forest-empty h3 {
  color: #f5fff9;
}
.forest-home ::selection {
  background: var(--forest-button);
  color: var(--forest-button-text);
}
.forest-bento-promo,
.forest-bento-shortcut,
.forest-bento-utilities a {
  color: #f5fff9;
  background: rgba(3, 70, 54, .62);
}
.forest-bento-promo,
.forest-bento-shortcut {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 150px;
  align-items: center;
  gap: 18px;
  margin: 14px 20px 0;
  padding: 24px;
  border-radius: 16px;
}
.forest-bento-promo > i:first-child,
.forest-bento-shortcut > i {
  color: var(--forest-button);
  font-size: 32px;
}
.forest-bento-promo span,
.forest-bento-shortcut span {
  display: grid;
  gap: 3px;
}
.forest-bento-promo small,
.forest-bento-shortcut small {
  color: #cce6dc;
}
.forest-bento-promo strong,
.forest-bento-shortcut strong {
  font-size: 25px;
}
.forest-bento-promo em {
  color: #cce6dc;
  font-style: normal;
}
.forest-bento-promo > i:last-child {
  margin-left: auto;
}
.forest-home .forest-bento-promo {
  color: #053f32;

  transition: transform .2s ease, box-shadow .2s ease;
}
.forest-home .forest-bento-promo::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  aspect-ratio: 1;
  right: -58px;
  bottom: -104px;
  border-radius: 50%;
  background: rgba(5, 63, 50, .1);
}
.forest-home .forest-bento-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 66px rgba(255, 164, 17, .38), inset 0 1px 0 rgba(255, 255, 255, .58);
}
.forest-home .forest-bento-promo > i:first-child,
.forest-home .forest-bento-promo small,
.forest-home .forest-bento-promo em {
  color: #075343;
}
.forest-home .forest-bento-promo > i:last-child {
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff7d6;
  background: #075343;

}
.forest-bento-utilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 20px;
}
.forest-bento-utilities a {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px;
  border-radius: 12px;
  font-weight: 800;
}
.forest-bento-utilities i {
  color: var(--forest-button);
}
.forest-bento-footer,
.forest-legal-footer {
  margin: 14px 20px 20px;
  padding: 20px;
  border-radius: 16px;
  color: #d7ebe3;
  background: var(--forest-primary);
}
.forest-bento-footer p,
.forest-legal-footer p {
  margin: 0;
  color: inherit;
  font-size: 10px;
  line-height: 1.45;
  text-align: justify;
}
.forest-bento-footer nav,
.forest-legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 14px;
}
.forest-bento-footer a,
.forest-legal-footer a {
  color: #fff6cf;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 196, 34, .55);
  text-underline-offset: 4px;
}
@media (min-width: 1024px) {
  .forest-home .forest-legal-footer {
    grid-column: 1 / 13;
    grid-row: 5;
  }
}
@media (max-width: 767px) {
  .forest-home .forest-legal-footer {
    grid-column: 1 / -1;
  }
}
.forest-template-main-legal {
  width: min(100%, 1880px);
  min-width: 0;
  overflow: hidden;
}
.forest-legal-page {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: start;
  min-width: 0;
  margin-top: 28px;
}
.forest-legal-sidebar {
  position: sticky;
  top: 24px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(3, 70, 54, .72);
  box-shadow: 0 18px 42px rgba(0, 36, 27, .2);
}
.forest-legal-sidebar > span {
  display: block;
  margin-bottom: 14px;
  color: #b9d8cc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.forest-legal-sidebar nav {
  display: grid;
  gap: 4px;
}
.forest-legal-sidebar a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #e5f2ed;
  font-weight: 750;
  text-decoration: none;
}
.forest-legal-sidebar a:hover,
.forest-legal-sidebar a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}
.forest-legal-sidebar a:focus-visible {
  outline: 3px solid #ffc422;
  outline-offset: 2px;
}
.forest-theme-emerald .forest-template-main-legal .forest-legal-sidebar a.is-active {
  color: #063f32;
  background: #ffc422;
}
.forest-legal-document {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  max-width: 1120px;
  padding: clamp(24px, 4vw, 58px);
  border-radius: 16px;
  color: #173f35;
  background: #edf6f2;
  box-shadow: 0 24px 64px rgba(0, 35, 27, .18);
}
.forest-legal-document > header {
  max-width: none;
  padding-bottom: clamp(24px, 3vw, 38px);
}
.forest-legal-document > header h1 {
  max-width: 16ch;
  margin: 0;
  color: #064c3c;
  font-size: var(--forest-title-size);
  line-height: 1.12;
  letter-spacing: -.03em;
}
.forest-legal-document > header p {
  max-width: none;
  margin: 20px 0 0;
  color: #345f54;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.65;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}
.forest-legal-content {
  width: 100%;
  max-width: none;
  overflow-wrap: break-word;
}
.forest-rich-text section + section {
  margin-top: 42px;
}
body.forest-theme-emerald .forest-template-main-legal .forest-legal-document .forest-rich-text h2,
.forest-preview-content .forest-rich-text h2 {
  margin: 42px 0 12px;
  color: #075343;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.16;
  letter-spacing: -.02em;
}
body.forest-theme-emerald .forest-template-main-legal .forest-legal-document .forest-rich-text h3,
.forest-preview-content .forest-rich-text h3 {
  margin: 28px 0 8px;
  color: #0c5547;
  font-size: 19px;
  line-height: 1.3;
}
.forest-rich-text p,
.forest-rich-text li {
  color: #31584e;
  font-size: 16px;
  line-height: 1.72;
}
.forest-rich-text p {
  margin: 0 0 16px;
}
.forest-legal-content p {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}
.forest-rich-text ul,
.forest-rich-text ol {
  margin: 10px 0 22px;
  padding-left: 24px;
}
.forest-rich-text li + li {
  margin-top: 8px;
}
.forest-theme-emerald .forest-template-main-legal .forest-rich-text a,
.forest-preview-content .forest-rich-text a {
  color: #075f4c;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.forest-rich-text strong {
  color: #123f34;
}
@media (max-width: 780px) {
  .forest-legal-page {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 18px;
  }
  .forest-legal-sidebar {
    position: static;
    padding: 14px;
  }
  .forest-legal-sidebar > span {
    margin: 2px 4px 10px;
  }
  .forest-legal-sidebar nav {
    display: flex;
    gap: 8px;
    padding-bottom: 2px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }
  .forest-legal-sidebar a {
    min-width: max-content;
    scroll-snap-align: start;
  }
  .forest-legal-document {
    padding: 24px 20px 34px;
  }
  .forest-legal-document > header h1 {
    max-width: 100%;
    font-size: var(--forest-title-size);
    line-height: 1.12;
  }
  .forest-rich-text h2 {
    margin-top: 34px;
  }
}
@media (min-width: 1024px) {
  .forest-home main {
    position: relative;
    isolation: isolate;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 180px 350px 160px 72px auto;
    gap: 12px;
    padding: 12px;
    overflow: visible;
  background: var(--forest-canvas);
}
  .forest-home .forest-hero-scene {
    grid-column: 1 / 9;
    grid-row: 1 / 3;
    min-height: 0;
    height: 100%;
    border-radius: 14px;
    background: var(--forest-panel);
  }
  .forest-home .forest-hero-scene::before {
    right: -.08em;
    bottom: -.1em;
    font-size: clamp(170px, 16vw, 320px);
  }
  .forest-home .forest-hero-scene .forest-hero-copy {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(26px, 3.5vh, 44px) clamp(26px, 2.6vw, 46px);
  }
  .forest-home .forest-hero-scene h1 {
    max-width: 14ch;
    font-size: var(--forest-title-size);
  color: var(--forest-heading);
}
  .forest-home .forest-hero-scene .forest-hero-copy > p {
    max-width: 43ch;
    margin-top: 16px;
    font-size: clamp(14px, 1vw, 17px);
  color: var(--forest-text);
}
  .forest-home .forest-hero-scene .forest-hero-actions {
    margin-top: 16px;
  }
  .forest-home .forest-hero-scene .forest-proof {
    max-width: 460px;
    gap: 10px 20px;
    margin-top: 16px;
    font-size: 11px;
  color: var(--forest-text);
}
  .forest-home-scene img {
    width: auto;
    height: calc(100% + 4px);
    right: -28px;
    bottom: -4px;
    opacity: .84;
  }
  .forest-home .forest-hero-scene .forest-home-scene {
    z-index: 3;
  }
  .forest-home .forest-products,
  .forest-home .forest-bento-promo,
  .forest-home .forest-bento-shortcut,
  .forest-home .forest-bento-utilities,
  .forest-home .forest-bento-footer {
    min-width: 0;
    margin: 0;
    border-radius: 14px;
    background: var(--forest-primary);
    box-shadow: 0 20px 42px rgba(0, 24, 18, .16);
  }
  .forest-home .forest-bento-promo {
    grid-column: 9 / 13;
    grid-row: 2;
    min-height: 0;
    padding: 24px;
    background:
      radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .72) 0, rgba(255, 255, 255, 0) 28%),
      radial-gradient(circle at 12% 110%, rgba(255, 142, 21, .48) 0, rgba(255, 142, 21, 0) 46%),
      linear-gradient(128deg, #ffd83d 0%, #ffbd18 48%, #ff8f1f 100%);
  }
  .forest-home .forest-bento-promo strong {
    font-size: clamp(28px, 2.4vw, 42px);
  }
  .forest-home .forest-bento-promo em {
    max-width: 34ch;
    font-size: 12px;
  }
  .forest-home .forest-bento-shortcut {
    min-height: 0;
    padding: 18px;
  }
  .forest-home .forest-bento-shortcut.is-products {
    grid-column: 9 / 11;
    grid-row: 1;
  }
  .forest-home .forest-bento-shortcut.is-categories {
    grid-column: 11 / 13;
    grid-row: 1;
  }
  .forest-home .forest-bento-shortcut > i {
    font-size: 25px;
  }
  .forest-home .forest-bento-shortcut strong {
    font-size: 18px;
  }
  .forest-home .forest-bento-shortcut small {
    font-size: 10px;
  }
  .forest-home .forest-benefits {
    grid-column: 1 / 9;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
  }
  .forest-home .forest-benefit-intro {
    display: none;
  }
  .forest-home .forest-benefit {
    min-width: 0;
    height: 100%;
    padding: 16px;
    box-shadow: none;
  }
  .forest-home .forest-benefit b {
    font-size: 21px;
  }
  .forest-home .forest-benefit h3 {
    margin: 5px 0 2px;
    font-size: 13px;
    line-height: 1.15;
  }
  .forest-home .forest-benefit p {
    font-size: 10px;
    line-height: 1.35;
  }
  .forest-home .forest-products {
    grid-column: 9 / 13;
    grid-row: 3;
    padding: 14px 16px;
    overflow: hidden;
  }
  .forest-home .forest-products:has(.forest-empty) {
    display: flex;
    flex-direction: column;
  }
  .forest-home .forest-products:has(.forest-empty) .forest-empty {
    margin-block: auto;
  }
  .forest-home .forest-section-head span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .forest-home .forest-section-head h2 {
    margin: 1px 0 7px;
    font-size: clamp(20px, 1.7vw, 27px);
  }
  .forest-home .forest-product-grid {
    display: flex;
    gap: 8px;
    padding: 0 0 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--forest-button) rgba(255,255,255,.08);
  }
  .forest-home .forest-product {
    flex: 0 0 clamp(112px, 8.5vw, 140px);
    box-shadow: none;
  }
  .forest-home .forest-product > a {
    padding: 8px;
  }
  .forest-home .forest-product-image {
    display: none;
  }
  .forest-home .forest-product h3 {
    min-height: 29px;
    margin: 3px 0;
    font-size: 10px;
  }
  .forest-home .forest-product small {
    margin-top: 3px;
    padding: 3px 6px;
    font-size: 8px;
  }
  .forest-home .forest-product strong {
    font-size: 13px;
  }
  .forest-home .forest-bento-utilities {
    grid-column: 1 / 13;
    grid-row: 4;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .forest-home .forest-bento-utilities a {
    min-height: 0;
    height: 100%;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
    font-size: 12px;
  }
  .forest-home .forest-bento-footer {
    grid-column: 1 / 13;
    grid-row: 5;
    padding: 14px 18px 12px;
  }
  .forest-home .forest-bento-footer p {
    font-size: clamp(8px, .63vw, 10px);
    line-height: 1.35;
  }
  .forest-home .forest-bento-footer nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 10px;
  }
}

/* One Bento art direction at every size; breakpoints only change arrangement. */
  .forest-home .forest-bento-shortcut,
  .forest-home .forest-benefit,
  .forest-home .forest-products,
  .forest-home .forest-bento-utilities a {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #f4fff9;
    background-color: #064f3d;
  }
  .forest-home .forest-bento-shortcut {
    background: #dff2ea;
  }
  .forest-home .forest-bento-shortcut.is-products {
    color: #064b3b;
    background:
      linear-gradient(145deg, transparent 0 57%, rgba(43, 164, 118, .2) 57% 100%),
      #dff2ea;
  }
  .forest-home .forest-bento-shortcut.is-categories {
    color: #073e32;
    background:
      radial-gradient(circle at 104% 110%, rgba(255, 255, 255, .5) 0 28%, transparent 28.5%),
      linear-gradient(138deg, #ffe162 0%, #ffc321 62%, #f7a81b 100%);
  }
  .forest-home .forest-benefit {
    color: #f5fff9;
  }
  .forest-home .forest-benefit:nth-child(2) {
    background:
      radial-gradient(circle at 96% 110%, rgba(255, 195, 33, .32) 0 27%, transparent 27.5%),
      linear-gradient(135deg, #003e30 0%, #087355 100%);
  }
  .forest-home .forest-benefit:nth-child(3) {
    color: #073e32;
    background:
      linear-gradient(155deg, transparent 0 60%, rgba(6, 108, 80, .13) 60% 100%),
      #e7f5ef;
  }
  .forest-home .forest-benefit:nth-child(4) {
    color: #073e32;
    background:
      radial-gradient(circle at 108% -14%, rgba(255, 255, 255, .55) 0 26%, transparent 26.5%),
      linear-gradient(140deg, #ffdb53 0%, #ffb51f 100%);
  }
  .forest-home .forest-products {
    color: #073e32;
    background:
      radial-gradient(circle at 108% 112%, rgba(255, 195, 33, .3) 0 34%, transparent 34.5%),
      linear-gradient(135deg, #edf8f3 0%, #cae9dc 100%);
  }
  .forest-home .forest-bento-utilities a {
    color: #f5fff9;
    background: #064f3d;
  }
  .forest-home .forest-bento-utilities a:nth-child(1),
  .forest-home .forest-bento-utilities a:nth-child(4) {
    color: #073e32;
    background:
      radial-gradient(circle at 110% 130%, rgba(255, 255, 255, .45) 0 36%, transparent 36.5%),
      linear-gradient(138deg, #ffdf59, #ffb51f);
  }
  .forest-home .forest-bento-utilities a:nth-child(2),
  .forest-home .forest-bento-utilities a:nth-child(5) {
    color: #073e32;
    background:
      linear-gradient(145deg, transparent 0 64%, rgba(32, 148, 106, .18) 64% 100%),
      #e5f4ee;
  }
  .forest-home .forest-bento-utilities a:nth-child(3),
  .forest-home .forest-bento-utilities a:nth-child(6) {
    background:
      radial-gradient(circle at 108% -35%, rgba(255, 195, 33, .34) 0 38%, transparent 38.5%),
      linear-gradient(135deg, #003e30, #087355);
  }
  .forest-home .forest-bento-shortcut > i,
  .forest-home .forest-benefit b,
  .forest-home .forest-bento-utilities i {
    color: currentColor;
  }
  .forest-home .forest-benefit:nth-child(2) b,
  .forest-home .forest-bento-utilities a:nth-child(3) i,
  .forest-home .forest-bento-utilities a:nth-child(6) i {
    color: var(--forest-button);
  }
  .forest-home .forest-bento-shortcut small,
  .forest-home .forest-benefit p,
  .forest-home .forest-products .forest-empty p {
    color: inherit;
    opacity: .8;
  }
  .forest-home .forest-bento-shortcut strong,
  .forest-home .forest-benefit h3,
  .forest-home .forest-products .forest-section-head h2,
  .forest-home .forest-products .forest-empty h3 {
    color: inherit;
  }
  .forest-home .forest-products .forest-section-head span {
    color: #073e32;
    background: #ffc321;
  }
  .forest-home .forest-bento-shortcut,
  .forest-home .forest-bento-utilities a {
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .forest-home .forest-bento-shortcut:hover,
  .forest-home .forest-bento-utilities a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 34, 25, .22);
  }

  /* Editorial card typography: expressive without changing the Bento geometry. */
  .forest-home .forest-bento-shortcut {
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
  }
  .forest-home .forest-bento-shortcut > i {
    align-self: flex-start;
    font-size: clamp(28px, 2vw, 36px);
    filter: drop-shadow(0 8px 18px rgba(0, 35, 25, .24));
  }
  .forest-home .forest-bento-shortcut span {
    align-self: flex-end;
    gap: 5px;
    min-width: 0;
  }
  .forest-home .forest-bento-shortcut strong,
  .forest-home .forest-benefit h3,
  .forest-home .forest-products .forest-section-head h2,
  .forest-home .forest-products .forest-empty h3,
  .forest-home .forest-bento-utilities span {
    font-family: var(--forest-display-font);
    font-weight: 800;
    letter-spacing: -.035em;
  }
  .forest-home .forest-bento-shortcut strong {
    max-width: 8ch;
    font-size: clamp(23px, 1.7vw, 31px);
    line-height: .92;
    text-wrap: balance;
  }
  .forest-home .forest-bento-shortcut small {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
  }
  .forest-home .forest-benefit {
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: stretch;
    padding: 17px 18px 16px;
  }

  .forest-home .forest-benefit h3 {
    align-self: end;
    max-width: 10ch;
    margin: 12px 0 5px;
    font-size: clamp(18px, 1.35vw, 23px);
    line-height: .96;
    text-wrap: balance;
  }
  .forest-home .forest-benefit p {
    max-width: 31ch;
    font-size: 10px;
    line-height: 1.3;
  }
  .forest-home .forest-products .forest-section-head span {
    display: inline-flex;
    width: max-content;
    margin-bottom: 5px;
    padding: 5px 8px 4px;
    border-radius: 999px;
    letter-spacing: .12em;
  }
  .forest-home .forest-products .forest-section-head h2 {
    max-width: 9ch;
    margin: 0 0 8px;
    font-size: clamp(29px, 2.15vw, 38px);
    line-height: .9;
    text-wrap: balance;
  }
  .forest-home .forest-products .forest-empty h3 {
    margin-bottom: 5px;
    font-size: clamp(18px, 1.35vw, 23px);
    line-height: 1;
  }
  .forest-home .forest-products .forest-empty,
  .forest-home .forest-products .forest-empty h3,
  .forest-home .forest-products .forest-empty p {
    color: #073e32;
  }
  .forest-home .forest-bento-utilities a {
    justify-content: flex-start;
    gap: 9px;
    padding-inline: clamp(12px, 1.2vw, 20px);
  }
  .forest-home .forest-bento-utilities i {
    font-size: 16px;
    filter: drop-shadow(0 6px 12px rgba(0, 35, 25, .22));
  }
  .forest-home .forest-bento-utilities span {
    font-size: clamp(12px, .92vw, 15px);
    line-height: 1;
  }

  /* Editorial depth that never changes the original Bento geometry. */
  .forest-home .forest-bento-shortcut::before,
  .forest-home .forest-benefit::before,
  .forest-home .forest-products::before,
  .forest-home .forest-bento-utilities a::before {
    position: absolute;
    z-index: -1;
    font-family: var(--forest-display-font);
    font-weight: 800;
    line-height: .72;
    letter-spacing: -.04em;
    pointer-events: none;
    user-select: none;
  }
  .forest-home .forest-bento-shortcut > *,
  .forest-home .forest-benefit > *,
  .forest-home .forest-products > *,
  .forest-home .forest-bento-utilities a > * {
    position: relative;
    z-index: 2;
  }
  .forest-home .forest-bento-shortcut::before {
    right: -10px;
    bottom: -5px;
    color: currentColor;
    font-size: clamp(72px, 7vw, 118px);
    opacity: .08;
    transform: rotate(-8deg);
  }
  .forest-home .forest-bento-shortcut.is-products::before {
    content: "PRO";
  }
  .forest-home .forest-bento-shortcut.is-categories::before {
    content: "CAT";
  }
  .forest-home .forest-benefit::before {
    right: -14px;
    bottom: -8px;
    color: currentColor;
    font-size: clamp(82px, 8vw, 132px);
    opacity: .07;
    transform: rotate(-10deg);
  }
  .forest-home .forest-benefit:nth-child(2)::before { content: "ENVÍO"; }
  .forest-home .forest-benefit:nth-child(3)::before { content: "FLEX"; }
  .forest-home .forest-benefit:nth-child(4)::before { content: "PAGO"; }
  .forest-home .forest-products::before {
    content: "TOP";
    right: -8px;
    bottom: -4px;

    font-size: clamp(110px, 10vw, 172px);
    opacity: .09;
    transform: rotate(-9deg);
  }
  .forest-home .forest-bento-utilities a::before {
    content: "+";
    right: 5px;
    top: -21px;
    color: currentColor;
    font-size: 88px;
    opacity: .08;
    transform: rotate(18deg);
  }

  /* Playful finish: visual-only layers; no grid, spacing or sizing changes. */
  .forest-home .forest-bento-promo,
  .forest-home .forest-bento-shortcut,
  .forest-home .forest-benefit,
  .forest-home .forest-products,
  .forest-home .forest-bento-utilities a {
    outline: 1px solid rgba(255, 255, 255, .08);
    outline-offset: -1px;
  }
  .forest-home .forest-benefit:nth-child(2),
  .forest-home .forest-benefit:nth-child(3),
  .forest-home .forest-benefit:nth-child(4) {
    color: #073e32;
    background:
      linear-gradient(155deg, transparent 0 60%, rgba(6, 108, 80, .13) 60% 100%),
      #e7f5ef;
    box-shadow: inset 30px -30px 56px rgba(8, 115, 85, .1);
  }
  .forest-home .forest-benefit:nth-child(2) b,
  .forest-home .forest-benefit:nth-child(3) b,
  .forest-home .forest-benefit:nth-child(4) b,
  .forest-home .forest-benefit:nth-child(2) b i,
  .forest-home .forest-benefit:nth-child(3) b i,
  .forest-home .forest-benefit:nth-child(4) b i {
    color: #073e32;
  }
  .forest-home .forest-products,
  .forest-home .forest-products .forest-empty,
  .forest-home .forest-products .forest-empty h3,
  .forest-home .forest-products .forest-empty p {
    color: #f5fff9;
    background:
      radial-gradient(circle at 96% 110%, rgba(255, 195, 33, .32) 0 27%, transparent 27.5%),
      linear-gradient(135deg, #003e30 0%, #087355 100%);
  }
  .forest-home .forest-products::before {
    color: #f5fff9;
  }
  .forest-home .forest-bento-utilities a,
  .forest-home .forest-bento-utilities a:nth-child(1),
  .forest-home .forest-bento-utilities a:nth-child(2),
  .forest-home .forest-bento-utilities a:nth-child(3),
  .forest-home .forest-bento-utilities a:nth-child(4),
  .forest-home .forest-bento-utilities a:nth-child(5),
  .forest-home .forest-bento-utilities a:nth-child(6) {
    color: #073e32;
    background:
      radial-gradient(circle at 110% 130%, rgba(255, 255, 255, .45) 0 36%, transparent 36.5%),
      linear-gradient(138deg, #ffdf59, #ffb51f);
  }
  .forest-home .forest-bento-utilities a i {
    color: #073e32;
  }
  .forest-home .forest-bento-promo {
    background:
      radial-gradient(circle at 82% 20%, rgba(255, 255, 255, .9) 0 2%, transparent 2.4%),
      radial-gradient(circle at 88% 29%, rgba(255, 255, 255, .48) 0 1%, transparent 1.4%),
      radial-gradient(circle at 91% 12%, rgba(7, 62, 50, .22) 0 4%, transparent 4.4%),
      linear-gradient(115deg, #ffe44f 0%, #ffc321 48%, #ff8b1f 100%);
    box-shadow:
      inset 0 -34px 70px rgba(255, 133, 22, .17),
      0 20px 42px rgba(0, 24, 18, .16);
  }

  .forest-home .forest-bento-promo > i:last-child {
    box-shadow: 7px 8px 0 rgba(7, 62, 50, .16);

  }
  .forest-home .forest-bento-shortcut > i,
  .forest-home .forest-benefit b,
  .forest-home .forest-bento-utilities i {
    transform: rotate(-8deg);
    transform-origin: center;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
  }

  .forest-home .forest-bento-shortcut.is-categories > i,
  .forest-home .forest-benefit:nth-child(3) b,
  .forest-home .forest-bento-utilities a:nth-child(even) i {
    transform: rotate(8deg);
  }
  .forest-home .forest-bento-shortcut strong,
  .forest-home .forest-benefit h3,
  .forest-home .forest-products .forest-section-head h2 {
    text-shadow: 2px 2px 0 rgba(255, 255, 255, .13);
  }
  .forest-home .forest-bento-shortcut.is-products strong,
  .forest-home .forest-bento-shortcut.is-categories strong {
    text-decoration: underline;
    text-decoration-color: rgba(7, 62, 50, .24);
    text-decoration-thickness: .16em;
    text-underline-offset: .16em;
  }
  .forest-home .forest-benefit:nth-child(2) {
    box-shadow: inset 30px -30px 56px rgba(8, 115, 85, .1);
  }
  .forest-home .forest-benefit:nth-child(3) {
    box-shadow: inset 30px -30px 56px rgba(8, 115, 85, .1);
  }
  .forest-home .forest-benefit:nth-child(4) {
    box-shadow: inset 30px -30px 56px rgba(8, 115, 85, .1);
  }
  .forest-home .forest-products .forest-section-head span {
    box-shadow: 4px 5px 0 rgba(7, 62, 50, .15);
    transform: rotate(-2deg);
  }
  .forest-home .forest-bento-utilities a:nth-child(odd) span {
    transform: rotate(-1.5deg);
  }
  .forest-home .forest-bento-utilities a:nth-child(even) span {
    transform: rotate(1.5deg);
  }
  .forest-home .forest-bento-promo:hover > i:first-child,
  .forest-home .forest-bento-shortcut:hover > i,
  .forest-home .forest-benefit:hover b,
  .forest-home .forest-bento-utilities a:hover i {
    transform: rotate(0) scale(1.12);
    filter: drop-shadow(0 9px 10px rgba(0, 42, 31, .22));
  }

/* Mobile changes only the Bento flow: the desktop cards stack vertically. */
@media (max-width: 767px) {
  .forest-home main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 12px;
  background: var(--forest-canvas);
}
  .forest-home .forest-hero,
  .forest-home .forest-bento-promo,
  .forest-home .forest-benefits,
  .forest-home .forest-products,
  .forest-home .forest-bento-utilities,
  .forest-home .forest-bento-footer {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    margin: 0;
  }
  .forest-home .forest-bento-shortcut {
    width: 100%;
    min-width: 0;
    gap: 6px;
    margin: 0;
    padding: 14px;
  }
  .forest-home .forest-bento-shortcut > i {
    font-size: 24px;
  }
  .forest-home .forest-bento-shortcut strong {
    max-width: 100%;
    font-size: clamp(18px, 5vw, 21px);
  }
  .forest-home .forest-bento-shortcut small {
    font-size: 8.5px;
  }
  .forest-home .forest-bento-promo,
  .forest-home .forest-bento-shortcut,
  .forest-home .forest-benefit,
  .forest-home .forest-products,
  .forest-home .forest-bento-utilities a,
  .forest-home .forest-bento-footer {
    border-radius: 14px;
  }
  .forest-home .forest-benefits {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 0;
  }
  .forest-home .forest-bento-utilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
  }
  .forest-home .forest-benefit-intro {
    display: none;
  }
  .forest-home .forest-benefit {
    min-height: 160px;
    padding: 17px 18px 16px;
  }
  .forest-home .forest-products {
    min-height: 160px;
    padding: 14px 16px;
  }
  .forest-home .forest-bento-utilities a {
    min-height: 72px;
  }
}
@media (min-width: 1024px) and (prefers-reduced-motion: reduce) {
  .forest-home .forest-bento-promo > i,
  .forest-home .forest-bento-shortcut > i,
  .forest-home .forest-benefit b,
  .forest-home .forest-bento-utilities i {
    transition: none;
  }
}

/* Oversized benefit pictograms: clipped artwork, never part of card geometry. */
.forest-home .forest-benefit b {
  position: absolute;
  z-index: 1;
  top: auto;
  right: -18px;
  bottom: -16px;
  color: #073e32;
  font-size: clamp(88px, 22vw, 128px);
  line-height: 1;
  opacity: .96;
  transform: rotate(-6deg);
  transform-origin: center;
  filter: none;
}
.forest-home .forest-benefit:nth-child(3) b {
  transform: rotate(6deg);
}
.forest-home .forest-benefit h3,
.forest-home .forest-benefit p {
  position: relative;
  z-index: 3;
}
@media (min-width: 1024px) {
  .forest-home .forest-benefit:hover b {
    transform: rotate(0) scale(1.05);
    filter: drop-shadow(0 9px 10px rgba(0, 42, 31, .18));
  }
}

/* Promotion card as an editorial poster; geometry remains untouched. */
.forest-home .forest-bento-utilities a:nth-child(1) i,
.forest-home .forest-bento-utilities a:nth-child(2) i,
.forest-home .forest-bento-utilities a:nth-child(3) i,
.forest-home .forest-bento-utilities a:nth-child(4) i,
.forest-home .forest-bento-utilities a:nth-child(5) i,
.forest-home .forest-bento-utilities a:nth-child(6) i {
  color: #073e32;
  font-size: 19px;
}
.forest-home .forest-bento-promo {
  position: relative;
  align-items: flex-start;
  isolation: isolate;
  overflow: hidden;
}
.forest-home .forest-bento-promo::before {
  content: "AHORRA";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -.18em;
  color: rgba(7, 62, 50, .11);
  font-family: var(--forest-display-font);
  font-size: clamp(100px, 12vw, 200px);
  font-weight: 800;
  line-height: .72;
  letter-spacing: -.075em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}
.forest-home .forest-bento-promo span {
  position: relative;
  z-index: 2;
  align-self: center;
}
.forest-home .forest-bento-promo small {
  width: max-content;
  padding: 6px 10px 5px;
  border-radius: 999px;
  color: #fff5c7;
  background: #075343;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.forest-home .forest-bento-promo strong {
  max-width: 8ch;
  color: #073e32;
  font-family: var(--forest-display-font);
  font-size: clamp(42px, 4.1vw, 68px);
  font-weight: 800;
  line-height: .84;
  letter-spacing: -.055em;
  text-shadow: 3px 3px 0 rgba(255, 255, 255, .3);
}
.forest-home .forest-bento-promo em {
  max-width: 29ch;
  color: #075343;
  font-weight: 700;
}
.forest-home .forest-bento-promo > i:first-child {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 27px;
  color: #075343;
  font-size: clamp(46px, 4vw, 68px);
  transform: rotate(12deg);
  filter: drop-shadow(7px 8px 0 rgba(255, 255, 255, .32));
}
.forest-home .forest-bento-promo > i:last-child {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  margin: 0;
  transform: rotate(-5deg);
}
.forest-home .forest-bento-promo:hover > i:first-child {
  transform: rotate(0) scale(1.06);
}
.forest-home .forest-bento-promo:hover > i:last-child {
  transform: rotate(0) translateX(3px);
}
.sf-cart {
  color: #223c35;
}
.sf-cart h2 {
  color: #073e32;
}
.forest-search-state {
  display: grid;
  justify-items: center;
  max-width: 560px;
  margin: 54px auto;
  padding: 38px 24px;
  text-align: center;
}
.forest-search-state > i {
  color: var(--forest-primary);
  font-size: 42px;
}
.forest-search-state h2 {
  margin: 16px 0 4px;
}
.forest-search-state p {
  margin: 0;
}
@media (max-width: 900px) {
  .forest-header-main {
    grid-template-columns: 1fr auto;
  }
  .forest-search {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .forest-header-main {
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .forest-hero {
    grid-template-columns: 1fr;
  }
  .forest-hero-art {
    display: none;
  }
  .forest-home .forest-hero-scene {
    min-height: 620px;
  }
  .forest-home .forest-hero-scene .forest-hero-copy {
    width: 100%;
    padding: 70px 28px 58px;
  }
  .forest-home .forest-hero-scene h1 {
    max-width: 14ch;
    font-size: var(--forest-title-size);
  color: var(--forest-heading);
}
  .forest-home-scene {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    min-height: 0;
  }
  .forest-home-scene img {
    width: clamp(540px, 72vw, 680px);
    max-width: none;
    height: auto;
    max-height: none;
    right: -190px;
    left: auto;
    bottom: -14px;
    margin: 0;
    transform: none;
    opacity: .72;
  }
  .forest-hero-copy {
    justify-self: center;
    padding: 70px 24px;
  }
  .forest-benefits {
    grid-template-columns: 1fr 1fr;
  }
  .forest-benefit-intro {
    grid-column: 1/-1;
  }
  .forest-topline span:last-child {
    display: none;
  }
}
@media (max-width: 560px) {
  .forest-header-main {
    grid-template-columns: minmax(0, 92px) minmax(0, 1fr);
    grid-template-areas: "brand actions" "search search";
    gap: 10px 8px;
    padding-right: 10px;
    padding-left: 10px;
  }
  .forest-brand {
    grid-area: brand;
    min-width: 0;
    font-size: 16px;
  }
  .forest-actions {
    width: auto;
    min-width: 0;
    grid-area: actions;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 3px;
  }
  .forest-search {
    grid-area: search;
  }
  .forest-search-results {
    top: calc(100% + 7px);
    max-height: min(430px, calc(100vh - 165px));
  }
  .forest-search-result {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 62px;
    gap: 10px;
  }
  .forest-search-result-image {
    width: 50px;
    height: 50px;
  }
  .forest-search-result-price {
    grid-column: 2;
    font-size: 12px;
  }
  .forest-actions > .forest-icon-action {
    width: 40px;
    height: 40px;
    display: inline-grid;
    flex-basis: 40px;
  }
  .forest-actions .sf-cart-trigger {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .forest-brand-logo {
    max-width: 92px;
  }
  .forest-hero h1 {
    font-size: var(--forest-title-size);
  }
  .forest-home .forest-hero-scene {
    display: block;
    min-height: 590px;
    overflow: hidden;
  }
  .forest-home .forest-hero-scene::before {
    right: -.08em;
    bottom: .05em;
    font-size: 42vw;
  }
  .forest-home .forest-hero-scene .forest-hero-copy {
    min-height: 590px;
    padding: 48px 20px 42px;
  }
  .forest-home .forest-hero-scene h1 {
    max-width: 14ch;
    font-size: var(--forest-title-size);
    line-height: 1.12;
  color: var(--forest-heading);
}
  .forest-home .forest-hero-scene .forest-hero-copy > p {
    max-width: 31ch;
    margin-top: 22px;
    font-size: 16px;
  color: var(--forest-text);
}
  .forest-home .forest-hero-scene .forest-hero-actions {
    flex-wrap: wrap;
  }
  .forest-home .forest-hero-scene .forest-proof {
    max-width: 330px;
    gap: 8px 15px;
    margin-top: 24px;
    font-size: 11px;
  color: var(--forest-text);
}
  .forest-home-scene {
    position: absolute;
    z-index: 1;
    inset: 0;
    min-height: 0;
    overflow: hidden;
  }
  .forest-home-scene img {
    width: 540px;
    max-width: none;
    max-height: none;
    right: -195px;
    left: auto;
    top: auto;
    bottom: -22px;
    margin: 0;
    opacity: .36;
    transform: none;
    filter: drop-shadow(0 24px 34px rgba(0,20,14,.22));
  }
  .forest-benefits {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }
  .forest-footer {
    flex-direction: column;
  }
  .forest-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .forest-topline > div {
    min-height: 38px;
  }
}
@media (max-width: 370px) {
  .forest-header-main {
    grid-template-columns: minmax(0, 80px) minmax(0, 1fr);
    gap: 8px 6px;
    padding-right: 8px;
    padding-left: 8px;
  }
  .forest-actions {
    gap: 2px;
  }
  .forest-brand-logo {
    max-width: 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* La ficha de ingrediente nace del chip que la invoca, como un tooltip amplio. */
.forest-product-view .forest-ingredient-popover {
  position: fixed;
  inset: auto;
  margin: 0;
  overflow: visible;
  border: 1px solid color-mix(in srgb,var(--forest-button) 52%,var(--forest-surface));
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0,28,21,.32);
}
.forest-product-view .forest-ingredient-popover::before {
  position: absolute;
  top: -7px;
  left: var(--ingredient-pointer-left,28px);
  width: 14px;
  height: 14px;
  border-top: 1px solid color-mix(in srgb,var(--forest-button) 52%,var(--forest-surface));
  border-left: 1px solid color-mix(in srgb,var(--forest-button) 52%,var(--forest-surface));
  background: var(--forest-surface);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}
.forest-product-view .forest-ingredient-popover.opens-above::before {
  top: auto;
  bottom: -7px;
  transform: translateX(-50%) rotate(225deg);
}
.forest-product-view .forest-ingredient-popover > div {
  max-height: min(390px,calc(100vh - 56px));
  overflow: auto;
}
.forest-theme-emerald.forest-product-view .forest-ingredient-popover p {
  color: #174f40;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
  opacity: 1;
}
@media (max-width: 560px) {
  .forest-product-view .forest-ingredient-popover {
    width: min(390px,calc(100vw - 24px));
  }
}

/* Detalle de producto */
.forest-product-view{background:var(--forest-bg);}
.forest-product-main{width:100%;max-width:none;margin:0;padding:18px clamp(20px,3vw,56px) 80px;}
.forest-product-breadcrumb{display:flex;gap:8px;align-items:center;margin:0 0 18px;color:var(--forest-text);font-size:12px;}.forest-product-breadcrumb a{color:var(--forest-text);}
.forest-product-overview{display:grid;grid-template-columns:minmax(290px,400px) minmax(420px,1fr) 296px;gap:24px;align-items:start;}
.forest-product-stage{display:grid;place-items:center;aspect-ratio:1;overflow:hidden;border-radius:10px;background:var(--forest-surface);}.forest-product-stage>button{width:100%;height:100%;display:grid;padding:0;place-items:center;border:0;background:transparent;cursor:zoom-in;}.forest-product-stage img{width:100%;height:100%;object-fit:contain;}.forest-product-stage>span{font-size:90px;font-weight:900;color:color-mix(in srgb,var(--forest-primary) 35%,transparent);}
.forest-product-thumbs{display:flex;justify-content:center;gap:10px;margin-top:12px;}.forest-product-thumbs button{width:68px;height:68px;padding:0;overflow:hidden;border:0;border-radius:10px;background:#e5f1ec;cursor:pointer;}.forest-product-thumbs img{width:100%;height:100%;display:block;object-fit:contain;}
.forest-product-copy h1{margin:5px 0 6px;color:var(--forest-heading);font-size: var(--forest-title-size);line-height: 1.12;letter-spacing: -.03em;white-space:nowrap;}.forest-product-impact,.forest-product-summary{margin:0 0 8px;color:var(--forest-text);font-size:13px;line-height:1.45;}.forest-product-description-link{display:inline-flex;align-items:center;gap:6px;color:var(--forest-link);font-size:12px;font-weight:800;text-decoration:underline;text-underline-offset:3px;}.forest-product-trust{display:flex;gap:13px;margin:12px 0;color:var(--forest-text);font-size:12px;font-weight:700;}.forest-product-trust i{color: var(--forest-link);}
.forest-product-levels{display:grid;grid-template-columns:repeat(var(--forest-price-levels,3),1fr);gap:8px;margin:14px 0;}.forest-product-levels button{min-height:62px;padding:10px;text-align:left;border:1px solid color-mix(in srgb,var(--forest-primary) 15%,transparent);border-radius:8px;background: var(--forest-panel);color:var(--forest-heading);}.forest-product-levels button.is-active{border:2px solid var(--forest-primary);}.forest-product-levels small,.forest-product-levels strong{display:block;
  color: var(--forest-link);
}.forest-product-levels strong{margin-top:8px;text-align:right;font-size:20px;line-height:1.1;
  color: var(--forest-link);
}
.forest-product-facts{display:grid;gap:10px;padding:14px;border:1px solid color-mix(in srgb,var(--forest-primary) 14%,transparent);border-radius:9px;background: var(--forest-panel);
  border-color: var(--forest-border);
}.forest-product-facts strong{color:var(--forest-heading);font-size:13px;}.forest-product-facts p{margin:2px 0 0;font-size:12px;line-height:1.4;}
.forest-buy-box{position:sticky;top:138px;padding:14px;border-radius:10px;background: var(--forest-panel);box-shadow:0 3px 8px rgba(0,45,34,.1);
  border-color: var(--forest-border);
}.forest-buy-pill{display:block;margin-bottom:6px;padding:6px 9px;border-radius:999px;background:color-mix(in srgb,var(--forest-primary) 12%,#fff);color:var(--forest-heading);text-align:center;font-size:11px;font-weight:800;}.forest-buy-pill.is-soft{display:flex;justify-content:space-between;}.forest-buy-price{display:block;margin-top:12px;color:var(--forest-heading);font-size:30px;}.forest-buy-box>p{margin:0 0 14px;font-size:11px;}.forest-buy-box>label{display:block;color:var(--forest-heading);font-size:12px;font-weight:800;}
.forest-quantity{display:grid;grid-template-columns:34px 38px 34px 1fr;align-items:center;margin:6px 0 12px;}.forest-quantity button,.forest-quantity output{height:36px;display:grid;place-items:center;border:1px solid #dde3df;background:#fff;}.forest-quantity button{font-size:18px;}.forest-quantity span{padding-left:9px;text-align:right;font-size:9px;}.forest-quantity span strong{display:block;color:var(--forest-heading);font-size:14px;}.forest-add-cart{width:100%;justify-content:center;border:0;cursor:pointer;}.forest-buy-links,.forest-buy-assurances{display:flex;justify-content:center;gap:18px;margin-top:13px;color:var(--forest-heading);font-size:11px;font-weight:750;}.forest-buy-assurances{padding:10px 5px;background: var(--forest-soft);}
.forest-volume-progress{margin:0 0 14px;padding:10px;border-radius:8px;background:color-mix(in srgb,var(--forest-button) 10%,#fff);color:var(--forest-heading);}.forest-volume-progress>div{display:flex;align-items:flex-start;gap:8px;}.forest-volume-progress>div>i{margin-top:2px;color:var(--forest-button);}.forest-volume-progress span span,.forest-volume-progress strong,.forest-volume-progress small{display:block;}.forest-volume-progress strong{font-size:11px;line-height:1.3;}.forest-volume-progress small{margin-top:2px;font-size:9px;line-height:1.35;}.forest-volume-progress-track{height:5px;margin-top:8px;overflow:hidden;border-radius:999px;background:color-mix(in srgb,var(--forest-primary) 12%,#fff);}.forest-volume-progress-track i{display:block;width:0;height:100%;border-radius:inherit;background:var(--forest-button);transition:width .2s ease;}.forest-volume-progress.is-applied{background:color-mix(in srgb,var(--forest-primary) 10%,#fff);}
.forest-product-notice{margin:42px 0 14px;padding:12px 14px;border:1px solid color-mix(in srgb,var(--forest-primary) 18%,transparent);border-radius:7px;background: var(--forest-panel);
  border-color: var(--forest-border);
}.forest-product-notice strong{color:var(--forest-heading);font-size:12px;}.forest-product-notice p{margin:3px 0 0;font-size:10px;line-height:1.45;}
.forest-product-content{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:24px;padding:5px 0 48px;}.forest-product-content h2{margin:0 0 4px;font-size:26px;}.forest-product-content h3{margin:18px 0 5px;color:var(--forest-heading);font-size:15px;}.forest-product-content p{max-width:none;margin:0;color:var(--forest-text);font-size:15px;line-height:1.6;}.forest-product-content>div p{text-align:justify;text-justify:inter-word;hyphens:auto;}.forest-product-content .forest-product-unlabeled{margin-top:16px;}.forest-product-content>aside{align-self:start;padding:12px;border:2px solid var(--forest-heading);background:var(--forest-surface);}.forest-product-content>aside strong{display:block;padding-bottom:6px;border-bottom:1px solid var(--forest-heading);color:var(--forest-heading);font-size:20px;}.forest-product-content>aside p{margin:8px 0;}.forest-product-content>aside b{color:var(--forest-primary);font-size:11px;}
.forest-product-information{min-width:0;}.forest-product-information>div>section{margin-top:18px;}.forest-product-information .forest-product-name-detail{margin-top:0;font-size:18px;}.forest-product-ingredients ul{display:flex;flex-wrap:wrap;gap:8px;margin:8px 0 0;padding:0;list-style:none;}.forest-product-ingredients li{margin:0;}.forest-product-ingredients li>button{display:inline-flex;align-items:center;gap:7px;min-height:38px;padding:8px 11px;border:1px solid color-mix(in srgb,var(--forest-primary) 24%,transparent);border-radius:9px;background:color-mix(in srgb,var(--forest-surface) 92%,transparent);color:var(--forest-heading);font:inherit;font-size:14px;font-weight:750;cursor:pointer;}.forest-product-ingredients li>button:hover{background:color-mix(in srgb,var(--forest-primary) 10%,var(--forest-surface));}.forest-product-ingredients li>button:focus-visible{outline:3px solid color-mix(in srgb,var(--forest-button) 55%,#fff);outline-offset:2px;}.forest-product-ingredients li>button i{font-size:12px;}.forest-ingredient-popover{width:min(440px,calc(100vw - 28px));max-height:min(560px,calc(100vh - 28px));overflow:auto;padding:0;border:0;border-radius:16px;background:var(--forest-surface);color:var(--forest-text);box-shadow:0 24px 70px rgba(0,28,21,.42);}.forest-ingredient-popover::backdrop{background:rgba(0,31,23,.48);backdrop-filter:blur(3px);}.forest-ingredient-popover img{width:100%;max-height:220px;display:block;object-fit:cover;}.forest-ingredient-popover>div{padding:22px;}.forest-ingredient-popover h4{margin:0 42px 8px 0;color:var(--forest-heading);font-size:22px;}.forest-ingredient-popover p{margin:0;text-align:left;hyphens:none;}.forest-ingredient-close{position:absolute;top:12px;right:12px;width:38px;height:38px;display:grid;place-items:center;border:0;border-radius:10px;background:var(--forest-button);color:var(--forest-button-text);cursor:pointer;}.forest-ingredient-close:focus-visible{outline:3px solid #fff;outline-offset:2px;}
.forest-related{padding-top:24px;}.forest-related>h2{margin:0 0 22px;font-size:27px;}
@media(max-width:1180px){.forest-product-overview{grid-template-columns:minmax(290px,400px) minmax(360px,1fr);}.forest-buy-box{position:static;grid-column:1/-1;}.forest-related>div{grid-template-columns:repeat(3,1fr);}}
@media(max-width:720px){.forest-product-main{padding-inline:14px;}.forest-product-overview,.forest-product-content{grid-template-columns:1fr;}.forest-product-copy h1{font-size: var(--forest-title-size);white-space:normal;}.forest-product-levels{grid-template-columns:1fr;}.forest-product-levels button{min-height:52px;}.forest-product-content{gap:20px;}.forest-related>div{grid-template-columns:repeat(2,1fr);}}

/* Vistas auxiliares y vista previa Forest */
/* Forest template previews */
.forest-template-main {
  width: 100%;
  max-width: none;
  margin: auto;
  padding: 28px clamp(20px,3vw,56px) 70px;
}
.forest-template-main > h1 {
  margin: 8px 0 24px;
  color: var(--forest-heading);
  font-size: var(--forest-title-size);
}
.forest-template-crumb {
  margin: 0;
  color: var(--forest-text);
  font-size: 13px;
}
.forest-template-count {
  margin: 0 0 20px;
  color: var(--forest-text);
  font-size: 13px;
  font-weight: 700;
}
.forest-preview-product,
.forest-preview-order,
.forest-preview-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 34px;
}
.forest-preview-product-image {
  display: grid;
  place-items: center;
  min-height: 480px;
  border-radius: 14px;
  background: var(--forest-surface);
  font-size: 90px;
  color: var(--forest-primary);
}
.forest-preview-product-image img {
  max-width: 88%;
  max-height: 450px;
  object-fit: contain;
}
.forest-preview-product h2 {
  margin: 14px 0;
  font-size: 34px;
  color: var(--forest-heading);
}
.forest-preview-product p {
  color: var(--forest-text);
}
.forest-preview-product > div:last-child > strong {
  display: block;
  margin: 22px 0;
  font-size: 28px;
  color: var(--forest-primary);
}
.forest-preview-order section,
.forest-preview-order aside,
.forest-preview-checkout section,
.forest-preview-checkout aside {
  padding: 22px;
  border: 1px solid #ddd8ca;
  border-radius: 14px;
  background: var(--forest-surface);
}
.forest-preview-order article {
  display: flex;
  align-items: center;
  gap: 14px;
}
.forest-preview-order article > b {
  margin-left: auto;
}
.forest-preview-order article small {
  display: block;
  margin-top: 5px;
  color: var(--forest-text);
}
.forest-preview-thumb {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 10px;
  background: #eef4ee;
  color: var(--forest-primary);
  font-size: 28px;
}
.forest-preview-order aside p,
.forest-preview-checkout aside p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.forest-preview-order .forest-button,
.forest-preview-checkout .forest-button,
.forest-preview-product .forest-button {
  width: 100%;
  border: 0;
}
.forest-preview-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.forest-preview-fields input,
.forest-preview-checkout section > input {
  width: 100%;
  margin-bottom: 12px;
  padding: 13px;
  border: 1px solid #cbc8bd;
  border-radius: 8px;
}
.forest-preview-fields input:nth-child(3) {
  grid-column: 1/-1;
}
@media (max-width: 760px) {
  .forest-preview-product,
  .forest-preview-order,
  .forest-preview-checkout {
    grid-template-columns: 1fr;
  }
  .forest-preview-product-image {
    min-height: 300px;
  }
  .forest-template-main > h1 {
    font-size: var(--forest-title-size);
  }
}

/* Detalle Forest: continuidad visual con la tarjeta de catálogo */
.forest-product-view .forest-product-main {
  padding-top: 24px;
}
.forest-product-view .forest-product-breadcrumb {
  margin-bottom: 26px;
  color: var(--forest-muted);
  font-size: 13px;
}
.forest-product-view .forest-product-breadcrumb strong {
  color: var(--forest-heading);
}
.forest-product-view .forest-product-overview {
  grid-template-columns: minmax(340px,.9fr) minmax(420px,1.25fr) minmax(330px,370px);
  gap: clamp(24px,2.2vw,38px);
}
.forest-product-view .forest-product-gallery {
  min-width: 0;
}
.forest-product-view .forest-product-stage {
  border-radius: 16px;
  background: #e5f1ec;
  box-shadow: 0 24px 54px rgba(0,24,18,.28);
}
.forest-product-view .forest-product-stage > button:focus-visible {
  outline: 3px solid var(--forest-button);
  outline-offset: -5px;
}
.forest-product-view .forest-product-stage > span {
  color: #9abbb1;
  font-size: clamp(80px,10vw,132px);
}
.forest-product-view .forest-product-thumbs {
  justify-content: flex-start;
  margin-top: 12px;
}
.forest-product-view .forest-product-thumbs button {
  border: 0;
  border-radius: 10px;
  background: #e5f1ec;
  box-shadow: 0 8px 20px rgba(0,24,18,.18);
  cursor: pointer;
  opacity: .76;
  transition: opacity .18s ease,transform .18s cubic-bezier(.22,1,.36,1),box-shadow .18s ease;
}
.forest-product-view .forest-product-thumbs button:hover,
.forest-product-view .forest-product-thumbs button:focus-visible,
.forest-product-view .forest-product-thumbs button.is-active {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px var(--forest-button),0 10px 24px rgba(0,24,18,.24);
}
.forest-product-lightbox {
  width: fit-content;
  height: fit-content;
  max-width: none;
  max-height: none;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.forest-product-lightbox::backdrop {
  background: rgba(0,18,14,.86);
  backdrop-filter: blur(6px);
}
.forest-product-lightbox > img {
  width: auto;
  height: auto;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  display: block;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 32px 90px rgba(0,0,0,.52);
}
.forest-product-lightbox > button {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  display: grid;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--forest-button);
  color: var(--forest-button-text);
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
}
.forest-product-lightbox > button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.forest-product-view .forest-product-copy {
  min-width: 0;
  padding-top: 4px;
}
.forest-product-view .forest-product-copy h1 {
  max-width: 22ch;
  margin: 0 0 16px;
  color: var(--forest-heading);
  font-size: var(--forest-title-size);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  text-wrap: balance;
  white-space: normal;
}
.forest-product-view .forest-product-impact {
  max-width: 58ch;
  margin-bottom: 8px;
  color: var(--forest-text);
  font-size: 16px;
  line-height: 1.45;
}
.forest-product-view .forest-product-summary {
  max-width: 68ch;
  font-size: 14px;
  line-height: 1.55;
}
.forest-product-view .forest-product-description-link {
  margin-top: 6px;
  font-size: 13px;
}
.forest-product-view .forest-product-trust {
  gap: 20px;
  margin: 20px 0 18px;
  color: var(--forest-heading);
  font-size: 13px;
}
.forest-product-view .forest-product-levels {
  gap: 10px;
  margin: 0 0 16px;
}
.forest-product-view .forest-product-levels button {
  min-width: 0;
  min-height: 82px;
  padding: 13px 14px;
  border: 1px solid rgba(220,239,232,.16);
  border-radius: 12px;
  background: var(--forest-panel);
  color: var(--forest-heading);
  cursor: pointer;
  transition: transform .18s ease,background .18s ease,border-color .18s ease;
}
.forest-product-view .forest-product-levels button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,198,30,.72);
}
.forest-product-view .forest-product-levels button.is-active {
  border-color: var(--forest-button);
  background: var(--forest-button);
  color: var(--forest-button-text);
}
.forest-product-view .forest-product-levels small {
  color: inherit;
  font-size: 11px;
  font-weight: 800;
}
.forest-product-view .forest-product-levels strong {
  margin-top: 9px;
  color: var(--forest-link);
  font-size: clamp(21px,2vw,28px);
  font-variant-numeric: tabular-nums;
}
.forest-product-view .forest-product-levels button.is-active strong {
  color: var(--forest-button-text);
}
.forest-product-view .forest-product-facts:empty {
  display: none;
}
.forest-product-view .forest-product-facts {
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--forest-border);
  border-radius: 12px;
  background: var(--forest-panel);
  box-shadow: none;
  border-color: var(--forest-border);
}
.forest-product-view .forest-product-facts strong {
  font-size: 15px;
  line-height: 1.3;
}
.forest-product-view .forest-product-facts p {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.55;
}
.forest-product-view .forest-buy-box {
  position: sticky;
  top: 142px;
  overflow: hidden;
  padding: 22px;

  border-color: var(--forest-border);
}
.forest-product-view .forest-buy-pill {
  margin: 0;
  padding: 0 0 12px;
  border-radius: 0;
  background: transparent;
  color: #163e33;
  text-align: left;
  font-size: 12px;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.forest-product-view .forest-buy-pill.is-soft {
  margin-bottom: 18px;
  padding: 11px 0;
  border-top: 1px solid rgba(5,79,61,.14);
  border-bottom: 1px solid rgba(5,79,61,.14);
  background: transparent;
  color: #31594d;
  text-transform: none;
}
.forest-product-view .forest-buy-price {
  margin: 0;
  color: #054f3d;
  font-size: clamp(38px,3vw,48px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.forest-product-view .forest-buy-box > p {
  margin: 7px 0 20px;
  color: #527167;
  font-size: 12px;
}
.forest-product-view .forest-buy-box > label {
  color: #163e33;
  font-size: 13px;
}
.forest-product-view .forest-volume-progress {
  margin-bottom: 18px;
  padding: 13px;
  border-radius: 10px;
  background: #fff4ce;
  color: #163e33;
}
.forest-product-view .forest-volume-progress strong {
  color: #163e33;
  font-size: 12px;
}
.forest-product-view .forest-volume-progress small {
  color: #527167;
  font-size: 10px;
}
.forest-product-view .forest-quantity {
  grid-template-columns: 42px 48px 42px 1fr;
  gap: 0;
  margin: 8px 0 16px;
}
.forest-product-view .forest-quantity button,
.forest-product-view .forest-quantity output {
  height: 42px;
  border-color: rgba(5,79,61,.16);
  background: #fff;
  color: #163e33;
}
.forest-product-view .forest-quantity button:first-child {
  border-radius: 9px 0 0 9px;
}
.forest-product-view .forest-quantity button:nth-child(3) {
  border-radius: 0 9px 9px 0;
}
.forest-product-view .forest-quantity span {
  color: #527167;
}
.forest-product-view .forest-quantity span strong {
  color: #054f3d;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}
.forest-product-view .forest-add-cart {
  min-height: 56px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(255,198,30,.24);
  font-size: 16px;
  font-weight: 900;
}
.forest-product-view .forest-buy-links {
  color: #31594d;
  font-size: 12px;
}
.forest-product-view .forest-buy-assurances {
  margin: 16px -22px -22px;
  padding: 15px 10px;
  background: var(--forest-soft);
  color: #163e33;

}
.forest-product-view .forest-product-notice {
  margin-top: 24px;
  padding: 16px 18px;
  border: 0;
  border-radius: 12px;
  background: var(--forest-panel);
  border-color: var(--forest-border);
}
@media (max-width: 960px) {
  .forest-product-view .forest-product-overview {
    grid-template-columns: minmax(0,1fr);
    gap: 22px;
  }
  .forest-product-view .forest-buy-box {
    position: static;
    grid-column: 1/-1;

  border-color: var(--forest-border);
}
}
@media (max-width: 760px) {
  .forest-product-view .forest-product-main {
    padding-top: 16px;
  }
  .forest-product-view .forest-product-breadcrumb {
    overflow: hidden;
    margin-bottom: 16px;
    white-space: nowrap;
  }
  .forest-product-view .forest-product-overview {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .forest-product-view .forest-product-thumbs {
    overflow-x: auto;
    padding: 3px;
  }
  .forest-product-view .forest-product-thumbs button {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }
  .forest-product-view .forest-product-copy h1 {
    max-width: 22ch;
    font-size: var(--forest-title-size);
  }
  .forest-product-view .forest-product-levels {
    grid-template-columns: repeat(var(--forest-price-levels,3),minmax(0,1fr));
    overflow-x: auto;
  }
  .forest-product-view .forest-product-levels button {
    min-width: 128px;
  }
  .forest-product-view .forest-buy-box {
    padding: 18px;

  border-color: var(--forest-border);
}
  .forest-product-view .forest-buy-assurances {
    margin: 16px -18px -18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .forest-product-view .forest-product-thumbs button {
    transition: none;
  }
}
@media (min-width: 761px) and (max-width: 960px) and (orientation: landscape) {
  .forest-product-view .forest-product-overview {
    grid-template-columns: minmax(250px,.82fr) minmax(0,1.18fr);
    gap: 18px;
  }
  .forest-product-view .forest-product-copy h1 {
    max-width: 22ch;
    font-size: var(--forest-title-size);
  }
  .forest-product-view .forest-buy-box {
    grid-column: 1/-1;

  border-color: var(--forest-border);
}
}

/* Forest visual contract · approved 14-09-2026.
 * Legacy class name retained for markup compatibility, not a dark mode.
 * Content roles live here; structural shared checkout rules stay in core.
 */
.forest-store {
  --forest-canvas: #f7f4ec;
  --forest-panel: #fffdf8;
  --forest-soft: #eeeee5;
  --forest-border: #cbd3c6;
  --forest-heading: #073e32;
  --forest-text: #294b40;
  --forest-muted: #52685c;
  --forest-link: #00654b;
  --forest-primary: #004735;
  --forest-button: #ffc321;
  --forest-button-text: #073e32;
  --forest-bg: var(--forest-canvas);
  --forest-surface: var(--forest-panel);
  --forest-display-font: "Forest Display", sans-serif;
  --forest-title-size: clamp(30px, 3.1vw, 44px);
  --forest-section-size: clamp(24px, 2.2vw, 30px);
  --forest-panel-radius: 12px;
  --forest-workspace-width: 1240px;
  background: var(--forest-canvas);
  color: var(--forest-text);
  scrollbar-color: var(--forest-muted) var(--forest-canvas);
}
.forest-store :is(h1,h2,h3,h4,legend) {
  font-family: var(--forest-display-font);
  font-weight: 800;
  letter-spacing: -.03em;
}
.forest-store :is(main,.mnt-guide,.mnt-contact,.forest-quote) :is(input,select,textarea,button,a):focus-visible {
  outline: 3px solid var(--forest-link);
  outline-offset: 3px;
}
.forest-store.torokoto-checkout {
  --checkout-canvas: var(--forest-canvas);
  --checkout-panel: var(--forest-panel);
  --checkout-summary: var(--forest-panel);
  --checkout-bg: var(--forest-canvas);
  --checkout-surface: var(--forest-panel);
  --checkout-body-text: var(--forest-text);
  --checkout-text: var(--forest-text);
  --checkout-heading: var(--forest-heading);
  --checkout-primary: var(--forest-primary);
  --checkout-link: var(--forest-link);
  --checkout-button: var(--forest-button);
  --checkout-button-text: var(--forest-button-text);
  --checkout-border: var(--forest-border);
  --checkout-pay-bg: var(--forest-button);
  --checkout-pay-text: var(--forest-button-text);
  --checkout-pay-hover: #f2b811;
}
.forest-home .forest-hero-actions .forest-link-button {
  border-color: var(--forest-border);
  color: var(--forest-link);
}
.forest-topline a { color: inherit; }
.forest-theme-emerald .sf-cart.is-open { box-shadow: -24px 0 64px rgba(0,18,14,.24); }
.forest-panel {
  background: var(--forest-panel);
  color: var(--forest-text);
  border: 1px solid var(--forest-border);
  border-radius: var(--forest-panel-radius);
}

.forest-theme-emerald:not(.forest-home) .forest-template-main,
.forest-theme-emerald .forest-product-main {
  min-height: calc(100vh - 152px);
  color: var(--forest-text);
  background: var(--forest-canvas);
}
.forest-theme-emerald:not(.forest-home) .forest-template-main > h1,
.forest-theme-emerald:not(.forest-home) .forest-template-main h2,
.forest-theme-emerald:not(.forest-home) .forest-template-main h3,
.forest-theme-emerald .forest-product-main h1,
.forest-theme-emerald .forest-product-main h2,
.forest-theme-emerald .forest-product-main h3 {
  color: var(--forest-heading);
}
.forest-theme-emerald .forest-template-crumb,
.forest-theme-emerald .forest-template-count,
.forest-theme-emerald .forest-product-breadcrumb,
.forest-theme-emerald .forest-product-breadcrumb a,
.forest-theme-emerald .forest-product-impact,
.forest-theme-emerald .forest-product-summary,
.forest-theme-emerald .forest-product-trust,
.forest-theme-emerald .forest-product-content p,
.forest-theme-emerald .forest-preview-product p,
.forest-theme-emerald .forest-preview-order article small {
  color: var(--forest-muted);
}
.forest-theme-emerald .forest-product-description-link,
.forest-theme-emerald .forest-template-main a:not(.forest-button) {
  color: var(--forest-link);
}
.forest-theme-emerald .forest-preview-order section,
.forest-theme-emerald .forest-preview-order aside,
.forest-theme-emerald .forest-preview-checkout section,
.forest-theme-emerald .forest-preview-checkout aside,
.forest-theme-emerald .forest-preview-collections article,
.forest-theme-emerald .forest-preview-content,
.forest-theme-emerald .forest-preview-account form,
.forest-theme-emerald .forest-preview-account section,
.forest-theme-emerald .forest-preview-account aside,
.forest-theme-emerald .forest-preview-centered,
.forest-theme-emerald:not(.forest-home) .forest-product,
.forest-theme-emerald .forest-product-levels button,
.forest-theme-emerald .forest-product-facts,
.forest-theme-emerald .forest-buy-box,
.forest-theme-emerald .forest-product-notice,
.forest-theme-emerald .forest-product-content > aside,
.forest-theme-emerald .forest-related article {
  border-color: var(--forest-border);
  background: var(--forest-panel);
  color: var(--forest-text);
}
.forest-theme-emerald .forest-product-levels button,
.forest-theme-emerald .forest-product-facts strong,
.forest-theme-emerald .forest-buy-box > label,
.forest-theme-emerald .forest-buy-price,
.forest-theme-emerald .forest-buy-links,
.forest-theme-emerald .forest-buy-assurances,
.forest-theme-emerald .forest-product-notice strong,
.forest-theme-emerald .forest-product-content > aside strong {
  color: var(--forest-heading);
}
.forest-theme-emerald .forest-product-levels button.is-active {
  border-color: var(--forest-button);
  background: var(--forest-soft);
  color: var(--forest-heading);
}
.forest-theme-emerald .forest-product-levels strong,
.forest-theme-emerald:not(.forest-home) .forest-product strong,
.forest-theme-emerald .forest-preview-product > div:last-child > strong,
.forest-theme-emerald .forest-related article > a > strong,
.forest-theme-emerald .forest-product-content > aside b {
  color: var(--forest-link);
}
.forest-theme-emerald:not(.forest-home) .forest-product > a,
.forest-theme-emerald .forest-related article > a {
  color: var(--forest-text);
}
.forest-theme-emerald .forest-search-state > i,
.forest-theme-emerald .forest-preview-centered > i,
.forest-theme-emerald .forest-preview-collections article > i {
  color: var(--forest-link);
}
.forest-theme-emerald .forest-product-stage,
.forest-theme-emerald .forest-preview-product-image,
.forest-theme-emerald .forest-product-image {
  background: var(--forest-panel);
}
.forest-theme-emerald .forest-buy-pill,
.forest-theme-emerald .forest-volume-progress,
.forest-theme-emerald .forest-volume-progress.is-applied,
.forest-theme-emerald .forest-buy-assurances,
.forest-theme-emerald .forest-preview-thumb,
.forest-theme-emerald .forest-preview-summary {
  background: var(--forest-soft);
  color: var(--forest-heading);
}
.forest-theme-emerald .forest-quantity button,
.forest-theme-emerald .forest-quantity output,
.forest-theme-emerald .forest-preview-input,
.forest-theme-emerald .forest-preview-account input,
.forest-theme-emerald .forest-preview-fields input,
.forest-theme-emerald .forest-preview-checkout section > input {
  border-color: var(--forest-border);
  background: var(--forest-panel);
  color: #163e33;
}
.forest-theme-emerald .forest-taxonomy-directory > header {
  border-bottom: 0;
}
.forest-theme-emerald .forest-taxonomy-directory > header p,
.forest-theme-emerald .forest-taxonomy-group li a {
  color: var(--forest-text);
}
.forest-theme-emerald .forest-taxonomy-index {
  border: 0;
  background: var(--forest-panel);
  box-shadow: none;
}
.forest-theme-emerald .forest-taxonomy-index a,
.forest-theme-emerald .forest-taxonomy-thumb {
  background: var(--forest-soft);
  color: var(--forest-heading);
}
.forest-theme-emerald .forest-taxonomy-index span {
  color: var(--forest-muted);
}
.forest-theme-emerald .forest-taxonomy-group > h3 {
  border-color: var(--forest-link);
}
.forest-theme-emerald .forest-taxonomy-group li {
  border-color: var(--forest-border);
}
.forest-theme-emerald .forest-taxonomy-group li a:hover,
.forest-theme-emerald .forest-taxonomy-group li a:focus-visible {
  color: var(--forest-link);
}
.forest-theme-emerald ::selection {
  background: var(--forest-button);
  color: var(--forest-button-text);
}

/* Carrito Forest: superficie de compra clara sobre el sitio esmeralda */
.forest-theme-emerald .sf-cart {
  --sf-text: #073f33;
  --sf-muted: #55736a;
  background: var(--forest-panel);
  color: #173f35;
  box-shadow: none;
}
.forest-theme-emerald .sf-cart-head {
  border-color: rgba(5,76,59,.12);
  background: var(--forest-panel);
  backdrop-filter: blur(12px);
}
.forest-theme-emerald .sf-cart-item {
  border-color: rgba(5,76,59,.12);
}
.forest-theme-emerald .sf-cart-footer {
  border-color: rgba(5,76,59,.12);
  background: var(--forest-soft);
  box-shadow: none;
}
.forest-theme-emerald .sf-cart-head h2,
.forest-theme-emerald .sf-cart-copy > a,
.forest-theme-emerald .sf-cart-copy > strong,
.forest-theme-emerald .sf-cart-footer > div {
  color: #073f33;
}
.forest-theme-emerald .sf-cart-head > button,
.forest-theme-emerald .sf-cart-prices > span,
.forest-theme-emerald .sf-cart-price-row .sf-cart-remove,
.forest-theme-emerald .sf-cart-quantity,
.forest-theme-emerald .sf-cart-quantity-button {
  border-color: rgba(5,76,59,.1);
  background: rgba(255,255,255,.72);
  color: #174b3e;
}
.forest-theme-emerald .sf-cart-promo,
.forest-theme-emerald .sf-cart-promotion-status {
  border-color: rgba(222,157,0,.16);
  background: linear-gradient(135deg, #fff5c9, #ffe9a0);
  color: #174b3e;
}
.forest-theme-emerald .sf-cart-promo b,
.forest-theme-emerald .sf-cart-promo strong,
.forest-theme-emerald .sf-cart-prices b,
.forest-theme-emerald .sf-cart-line-total,
.forest-theme-emerald .sf-cart-promotion-status > div,
.forest-theme-emerald .sf-cart-promotion-status > a {
  color: #075343;
}
.forest-theme-emerald .sf-cart-meta,
.forest-theme-emerald .sf-cart-prices small,
.forest-theme-emerald .sf-cart-promotion-status small,
.forest-theme-emerald .sf-cart-footer small,
.forest-theme-emerald .sf-cart-head .sf-eyebrow {
  color: #55736a;
}
.forest-theme-emerald .sf-cart-thumb {
  border-color: rgba(5,76,59,.1);
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 22px rgba(5,76,59,.08);
}
.forest-theme-emerald .sf-cart-checkout {
  box-shadow: 0 14px 28px rgba(221,155,0,.22);
}

/* Tarjeta de catálogo Forest */
.forest-theme-emerald .forest-product-grid {
  grid-template-columns: repeat(auto-fill,minmax(230px,1fr));
  gap: 22px;
  align-items: stretch;
}
@media (min-width: 1380px) {
  .forest-theme-emerald .forest-product-grid {
    grid-template-columns: repeat(6,minmax(0,1fr));
  }
}
.forest-catalog-tools {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  align-items: end;
  gap: 20px;
  margin: 20px 0 0;
}
.forest-catalog-tools .forest-template-count {
  margin: 0;
}
.forest-catalog-controls,
.forest-catalog-controls form {
  display: flex;
  align-items: end;
  gap: 10px;
}
.forest-catalog-controls {
  min-width: 0;
  justify-content: flex-end;
}
.forest-catalog-controls label {
  display: grid;
  gap: 5px;
  color: var(--forest-muted);
  font-size: 11px;
  font-weight: 800;
}
.forest-catalog-controls select {
  min-height: 42px;

  border-radius: 9px;
  font: inherit;

}
.forest-catalog-controls select {
  min-width: 150px;
  padding: 9px 34px 9px 11px;
  background: var(--forest-panel);
  color: var(--forest-heading);
  border: 1px solid var(--forest-border);
}
.forest-catalog-controls select:disabled {
  cursor: progress;
  opacity: .72;
}
.forest-catalog-controls select:focus-visible,
.forest-catalog-pagination a:focus-visible {
  outline: 3px solid var(--forest-button);
  outline-offset: 3px;
}
/* Catalog filters share one themed dropdown; native selects remain the form source. */
.forest-select { position:relative; min-width:150px; width:100%; }
.forest-select.is-open { z-index:40; }
.forest-select-trigger { width:100%; min-height:44px; padding:10px 34px 10px 12px; border:1px solid var(--forest-border); border-radius:9px; background:var(--forest-panel); color:var(--forest-heading); font:inherit; text-align:left; cursor:pointer; position:relative; }
.forest-select-trigger::after { content:''; position:absolute; right:14px; top:17px; width:7px; height:7px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(45deg); }
.forest-select-trigger[aria-expanded="true"] { border-color:var(--forest-primary); }
.forest-select-trigger[aria-expanded="true"]::after { top:20px; transform:rotate(225deg); }
.forest-select-trigger:disabled { opacity:.72; cursor:progress; }
.forest-select-popup { position:absolute; top:calc(100% + 7px); left:0; width:100%; min-width:280px; max-width:calc(100vw - 40px); padding:7px; border:1px solid var(--forest-border); border-radius:var(--forest-panel-radius); background:var(--forest-panel); box-shadow:0 12px 28px #073e3226; }
.forest-catalog-controls form .forest-select-popup { left:auto; right:0; }
.forest-select-popup[hidden] { display:none; }
.forest-select-popup input { width:100%; min-width:0; min-height:42px; margin:0 0 6px; padding:10px; border:1px solid var(--forest-border); border-radius:7px; background:var(--forest-canvas); color:var(--forest-heading); font:inherit; font-size:14px; }
.forest-select-options { max-height:min(320px,45vh); overflow-y:auto; overscroll-behavior:contain; scrollbar-color:var(--forest-muted) var(--forest-canvas); }
.forest-select-options button { display:block; width:100%; min-height:42px; padding:10px 30px 10px 10px; border:0; border-radius:6px; background:transparent; color:var(--forest-heading); font:inherit; font-size:13px; font-weight:600; text-align:left; cursor:pointer; position:relative; }
.forest-select-options button:hover,.forest-select-options button:focus-visible { background:var(--forest-soft); outline:2px solid var(--forest-primary); outline-offset:-2px; }
.forest-select-options [aria-selected="true"] { background:var(--forest-button); color:var(--forest-button-text); }
.forest-select-options [aria-selected="true"]::after { content:'✓'; position:absolute; right:10px; }
.forest-select-trigger:focus-visible,.forest-select-popup input:focus-visible { outline:3px solid var(--forest-button); outline-offset:2px; }
.forest-select-options p { padding:12px; color:var(--forest-muted); font-weight:400; }

.forest-catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}
.forest-catalog-pagination a,
.forest-catalog-pagination span {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--forest-heading);
  font-weight: 800;
  text-decoration: none;
}
.forest-catalog-pagination a {
  border: 1px solid rgba(220,239,232,.24);
  background: var(--forest-panel);
  border-color: var(--forest-border);
}
.forest-catalog-pagination a:hover,
.forest-catalog-pagination a.is-current {
  border-color: var(--forest-button);
  background: var(--forest-button);
  color: var(--forest-button-text);
}
.forest-catalog-pagination .is-direction {
  gap: 8px;
  padding-inline: 14px;
}
@media (max-width: 980px) {
  .forest-catalog-tools {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .forest-catalog-controls {
    justify-content: flex-start;
  }
  .forest-catalog-pagination {
    flex-wrap: wrap;
  }
}
@media (max-width: 760px) {
  .forest-catalog-controls {
    align-items: stretch;
    flex-direction: column;
  }
  .forest-catalog-controls form {
    align-items: end;
  }
  .forest-catalog-controls label,
  .forest-catalog-controls select {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .forest-catalog-controls form {
    align-items: stretch;
    flex-direction: column;
  }
  .forest-catalog-pagination a:not(.is-current):not(.is-direction),
  .forest-catalog-pagination span {
    display: none;
  }
}
.forest-theme-emerald .forest-product {
  position: relative;
  overflow: hidden;
  border-radius: var(--forest-panel-radius);
  background: var(--forest-panel);
  box-shadow: none;
  transition: transform .22s cubic-bezier(.2,.8,.2,1),box-shadow .22s cubic-bezier(.2,.8,.2,1);
  border: 1px solid var(--forest-border);
}
.forest-theme-emerald .forest-product > a {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  padding: 0;
  background: var(--forest-primary);
  color: var(--forest-canvas);
}
.forest-theme-emerald .forest-product-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--forest-panel);
}
.forest-theme-emerald .forest-product-image img {
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.forest-theme-emerald .forest-product h3 {
  min-height: 79px;
  margin: 0;
  padding: 15px 14px 16px;
  font-size: 16px;
  line-height: 1.3;
}
/* The outer card owns the radius; sections meet without inset corner arcs. */
.forest-store.forest-theme-emerald .forest-product h3 {
  color: var(--forest-canvas);
}
.forest-product-footer {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 0;
  background: var(--forest-button);
  color: var(--forest-button-text);
}
.forest-product-footer > span:first-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.forest-theme-emerald .forest-product .forest-product-footer small {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--forest-button-text);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}
.forest-theme-emerald .forest-product .forest-product-footer strong {
  display: block;
  color: var(--forest-button-text);
  font-size: clamp(17px,1.2vw,19px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.015em;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}
.forest-theme-emerald article[data-product-id] > .sf-favorite-button {
  position: absolute;
  z-index: 4;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(5,79,61,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--forest-primary);
  box-shadow: 0 6px 18px rgba(0,45,34,.14);
  cursor: pointer;
  transition: transform .18s ease,background .18s ease,color .18s ease;
}
.forest-theme-emerald article[data-product-id] > .sf-favorite-button:hover {
  transform: scale(1.07);
}
.forest-theme-emerald article[data-product-id] > .sf-favorite-button:focus-visible {
  outline: 3px solid var(--forest-button);
  outline-offset: 2px;
}
.forest-theme-emerald article[data-product-id] > .sf-favorite-button.is-active {
  border-color: var(--forest-button);
  background: var(--forest-button);
  color: var(--forest-primary);
}
.forest-related article[data-product-id] {
  position: relative;
}
.forest-related article[data-product-id] > .sf-favorite-button {
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
}
.forest-favorites-page {
  margin-top: 24px;
}
.forest-favorites-page > header p {
  margin: 0 0 5px;
  color: var(--forest-link);
  font-weight: 850;
}
.forest-favorites-page > header h2 {
  margin: 0 0 24px;
  font-size: clamp(28px,4vw,46px);
}
.forest-favorite-skeleton {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--forest-border);
  border-radius: 16px;
  background: var(--forest-panel);
  box-shadow: none;
}
.forest-favorite-skeleton {
  min-height: 390px;
  background: linear-gradient(100deg,rgba(255,255,255,.05) 25%,rgba(255,255,255,.12) 45%,rgba(255,255,255,.05) 65%);
  background-size: 200% 100%;
  animation: forest-favorite-loading 1.2s linear infinite;
}
.forest-favorites-page .sf-favorites-empty {
  grid-column: 1/-1;
  padding: 70px 24px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,.3);
  border-radius: 16px;
  background: var(--forest-panel);
  border-color: var(--forest-border);
}
.forest-favorites-page .sf-favorites-empty > i {
  color: var(--forest-link);
  font-size: 38px;
}
.forest-favorites-page .sf-favorites-empty a {
  display: inline-flex;
  margin-top: 12px;
  padding: 11px 16px;
  border-radius: 9px;
  background: var(--forest-button);
  color: var(--forest-button-text);
  font-weight: 850;
}
@keyframes forest-favorite-loading { to { background-position: -200% 0; } }
.forest-product-footer > span:last-child {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--forest-primary);
  color: var(--forest-header-text);
  font-size: 12px;
}
.forest-theme-emerald .forest-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(0,20,15,.42);
}
.forest-theme-emerald .forest-product:hover .forest-product-image img {
  transform: scale(1.035);
}
.forest-theme-emerald .forest-product:focus-within {
  outline: 3px solid var(--forest-button);
  outline-offset: 3px;
}
@media (max-width: 560px) {
  .forest-theme-emerald .forest-product-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
  }
  .forest-theme-emerald .forest-product h3 {
    min-height: 75px;
    padding-inline: 10px;
    font-size: 13px;
  }
  .forest-product-footer {
    min-height: 46px;
    padding: 10px;
  }
  .forest-theme-emerald .forest-product .forest-product-footer strong {
    font-size: 17px;
  }
  .forest-product-footer > span:last-child {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .forest-theme-emerald article[data-product-id] > .sf-favorite-button {
    top: 17px;
    right: 17px;
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 360px) {
  .forest-theme-emerald .forest-product-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .forest-theme-emerald .forest-product,
  .forest-theme-emerald .forest-product-image img {
    transition: none;
  }
  .forest-theme-emerald .forest-product:hover,
  .forest-theme-emerald .forest-product:focus-within,
  .forest-theme-emerald .forest-product:hover .forest-product-image img {
    transform: none;
  }
  .forest-theme-emerald article[data-product-id] > .sf-favorite-button {
    transition: none;
  }
  .forest-theme-emerald article[data-product-id] > .sf-favorite-button:hover {
    transform: none;
  }
  .forest-favorite-skeleton {
    animation: none;
  }
}
/* Forest extended preview layouts */
.forest-preview-collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.forest-preview-collections article,
.forest-preview-content,
.forest-preview-account form,
.forest-preview-account section,
.forest-preview-account aside {
  padding: 24px;
  border: 1px solid #ddd8ca;
  border-radius: 14px;
  background: var(--forest-surface);
}
.forest-preview-collections article > i {
  font-size: 34px;
  color: var(--forest-primary);
}
.forest-taxonomy-directory > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb,var(--forest-primary) 18%,transparent);
}
.forest-taxonomy-directory > header p {
  order: 2;
  margin: 0;
  color: var(--forest-text);
  font-size: 13px;
}
.forest-taxonomy-directory > header h2 {
  margin: 0;
  color: var(--forest-heading);
  font-size: clamp(20px,2vw,27px);
  letter-spacing: -.02em;
}
.forest-taxonomy-index {
  display: grid;
  grid-template-columns: repeat(26,minmax(44px,1fr));
  gap: 5px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  margin-bottom: 34px;
  padding: 10px;
  border: 1px solid color-mix(in srgb,var(--forest-primary) 18%,transparent);
  border-radius: 12px;
  background: color-mix(in srgb,var(--forest-surface) 96%,transparent);
  box-shadow: none;
}
.forest-taxonomy-index a,
.forest-taxonomy-index span {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 850;
}
.forest-taxonomy-index a {
  background: color-mix(in srgb,var(--forest-primary) 10%,var(--forest-surface));
  color: var(--forest-primary);
  text-decoration: none;
}
.forest-taxonomy-index a:hover,
.forest-taxonomy-index a:focus-visible {
  outline: 2px solid var(--forest-button);
  outline-offset: 1px;
  background: var(--forest-primary);
  color: var(--forest-surface);
}
.forest-taxonomy-index span {
  color: color-mix(in srgb,var(--forest-text) 46%,transparent);
}
.forest-taxonomy-groups {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 36px 48px;
  align-items: start;
}
.forest-taxonomy-group {
  scroll-margin-top: 88px;
}
.forest-taxonomy-group > h3 {
  margin: 0 0 6px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--forest-primary);
  color: var(--forest-heading);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.03em;
}
.forest-taxonomy-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.forest-taxonomy-group li {
  border-bottom: 1px solid color-mix(in srgb,var(--forest-primary) 12%,transparent);
}
.forest-taxonomy-group li a {
  display: grid;
  grid-template-columns: 64px minmax(0,1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 10px 2px;
  color: var(--forest-text);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.25;
  text-decoration: none;
}
.forest-taxonomy-thumb {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: color-mix(in srgb,var(--forest-primary) 10%,var(--forest-surface));
  color: var(--forest-primary);
}
.forest-taxonomy-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.forest-taxonomy-thumb i {
  font-size: 23px;
}
.forest-taxonomy-name {
  min-width: 0;
}
.forest-taxonomy-group li a > i {
  color: var(--forest-button);
  font-size: 11px;
  transition: transform .18s ease-out;
}
.forest-taxonomy-group li a:hover,
.forest-taxonomy-group li a:focus-visible {
  color: var(--forest-primary);
}
.forest-taxonomy-group li a:focus-visible {
  outline: 2px solid var(--forest-button);
  outline-offset: 3px;
  border-radius: 8px;
}
.forest-taxonomy-group li a:hover > i,
.forest-taxonomy-group li a:focus-visible > i {
  transform: translateX(3px);
}
.forest-preview-account {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  max-width: 850px;
}

/* Account access */
.forest-template-main:has(.forest-account-entry) > .forest-template-crumb,
.forest-template-main:has(.forest-account-entry) > h1 {
  display: none;
}
.forest-account-entry {
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(340px,.88fr);
  min-height: 600px;
  margin-top: 6px;
  overflow: hidden;

}
.forest-account-main {
  display: flex;
  align-items: center;
  padding: clamp(36px,5vw,76px);
}
.forest-account-form {
  width: min(100%,540px);
  margin: auto;
}
.forest-account-heading {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  gap: 17px;
  align-items: start;
  margin-bottom: 30px;
}
.forest-account-mark,
.forest-account-side-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--forest-primary);
  color: var(--forest-button);
  font-size: 20px;
}
body.forest-theme-emerald:not(.forest-home) .forest-template-main .forest-account-heading h2 {
  margin: 0;
  color: #073f32;
  font-size: var(--forest-title-size);
  line-height: 1.12;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.forest-account-heading p {
  max-width: 52ch;
  margin: 9px 0 0;
  color: #3e6259;
  font-size: 15px;
  line-height: 1.55;
}
.forest-account-fields {
  display: grid;
  gap: 16px;
}
.forest-account-fields label {
  display: grid;
  gap: 8px;
  color: #123f35;
  font-size: 13px;
  font-weight: 850;
}
.forest-account-control {
  position: relative;
  display: block;
}
.forest-account-control > i {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 17px;
  color: #52766d;
  transform: translateY(-50%);
  pointer-events: none;
}
.forest-theme-emerald .forest-account-control input {
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 0 16px 0 48px;
  border: 1px solid #a9c1ba;
  border-radius: var(--forest-panel-radius);
  background: var(--forest-panel);
  color: #0b3f33;
  font: inherit;
  outline: 0;
  transition: border-color .18s ease-out,box-shadow .18s ease-out;
  box-shadow: none;
}
.forest-theme-emerald .forest-account-control input::placeholder { color: #668078; }
.forest-theme-emerald .forest-account-control input:hover { border-color: #6d9187; }
.forest-theme-emerald .forest-account-control input:focus {
  border-color: var(--forest-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb,var(--forest-primary) 16%,transparent);
}
.forest-theme-emerald .forest-account-control .forest-account-code {
  padding-left: 16px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .3em;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.forest-account-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 20px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 10px;
  background: var(--forest-button);
  color: #073f32;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(211,157,0,.22);
  transition: transform .18s ease-out,box-shadow .18s ease-out,background-color .18s ease-out;
}
.forest-account-submit:hover { background: #ffd24a; box-shadow: 0 13px 28px rgba(211,157,0,.3); transform: translateY(-1px); }
.forest-account-submit:active { transform: translateY(1px); }
.forest-account-submit:focus-visible { outline: 3px solid #0b5a47; outline-offset: 3px; }
.forest-account-safe {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 15px;
  color: #4d6d65;
  font-size: 12px;
  line-height: 1.45;
}
.forest-account-safe i { margin-top: 2px; color: #14775e; }
.forest-account-switch { margin: 24px 0 0; color: #47665e; text-align: center; }
.forest-theme-emerald .forest-account-switch a,
.forest-theme-emerald .forest-account-help a { color: #073f32; font-weight: 900; text-underline-offset: 4px; }
.forest-account-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(36px,4vw,58px);
  background: var(--forest-panel);
  color: #073f32;
}
.forest-account-side-icon { background: #073f32; color: var(--forest-button); }
.forest-account-side > div > p { max-width: 42ch; margin: 0; color: #274f44; font-size: 15px; line-height: 1.55; }
.forest-account-side ul { margin: 36px 0 0; padding: 0; list-style: none; }
.forest-account-side li {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  gap: 13px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(7,63,50,.2);
}
.forest-account-side li > i { color: #073f32; font-size: 17px; text-align: center; }
.forest-account-side li strong,.forest-account-side li small { display: block; }
.forest-account-side li strong { font-size: 14px; }
.forest-account-side li small { margin-top: 3px; color: #375d53; font-size: 12px; line-height: 1.35; }
.forest-account-help { margin: 28px 0 0; padding-top: 18px; border-top: 1px solid rgba(7,63,50,.2); color: #365e53; font-size: 13px; }
.forest-account-alert { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 18px; padding: 13px 14px; border-radius: 10px; background: #e9f5ee; color: #17643d; font-size: 13px; line-height: 1.45; }
.forest-account-alert.is-error { background: #fff0ec; color: #8c392d; }
.forest-account-alert i { margin-top: 2px; }
.forest-account-consents { display: grid; gap: 11px; margin-top: 17px; }
.forest-account-consents label { display: grid; grid-template-columns: 19px minmax(0,1fr); gap: 10px; color: #45665d; font-size: 12px; line-height: 1.45; }
.forest-account-consents input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--forest-primary); }
.forest-account-consents button { display: inline; padding: 0; border: 0; background: transparent; color: #073f32; font: inherit; font-weight: 850; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.forest-account-legal { width: min(92vw,680px); max-height: 82vh; padding: 0; border: 0; border-radius: var(--forest-panel-radius); background: var(--forest-panel); color: #163e33; box-shadow: none; }
.forest-account-legal::backdrop { background: rgba(0,35,27,.72); }
.forest-account-legal[open] { display: grid; grid-template-rows: auto minmax(0,1fr); }
.forest-account-legal header { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; border-bottom: 1px solid #dce8e3; }
.forest-account-legal h2 { margin: 0; color: #073f32; font-size: 20px; }
.forest-account-legal header button { width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 9px; background: #edf4f1; color: #073f32; cursor: pointer; }
.forest-account-legal article { padding: 22px; overflow-y: auto; color: #34564d; font-size: 14px; line-height: 1.65; }
@media(max-width:900px){
  .forest-account-entry { grid-template-columns: 1fr; }
  .forest-account-side { min-height: auto; }
}
@media(max-width:600px){
  .forest-template-main:has(.forest-account-entry) { padding-inline: 16px; }

  .forest-account-main,.forest-account-side { padding: 28px 22px; }
  .forest-account-heading { grid-template-columns: 44px minmax(0,1fr); gap: 13px; margin-bottom: 24px; }
  .forest-account-mark,.forest-account-side-icon { width: 44px; height: 44px; border-radius: 11px; }
  .forest-account-heading h2 { font-size: var(--forest-title-size); }
  .forest-account-side ul { margin-top: 25px; }
}
@media(prefers-reduced-motion:reduce){.forest-account-control input,.forest-account-submit{transition:none;}}

/* Customer account dashboard */
.forest-template-main:has(.forest-account-dashboard) > .forest-template-crumb,
.forest-template-main:has(.forest-account-dashboard) > h1 { display:none; }
.forest-account-dashboard { display:grid;  margin-top:6px; color:#123f35; }
.forest-account-dashboard > .forest-account-nav{order:-2;}.forest-account-dashboard > .forest-account-alert{order:-1;}.forest-account-dashboard > #pedidos{order:1;}.forest-account-dashboard > #domicilios{order:2;}.forest-account-dashboard > #perfil{order:3;}.forest-account-dashboard > #membresias{order:4;}
.forest-account-welcome {

  grid-template-columns:minmax(0,1fr) auto;
  gap:28px;

  overflow:hidden;

}
.forest-account-welcome-copy { display:flex; align-items:center;  min-width:0; }
.forest-account-avatar { display:grid; flex:0 0 auto; place-items:center;     color:var(--forest-button); font-size:22px; }
body.forest-theme-emerald:not(.forest-home) .forest-template-main .forest-account-welcome h2 { margin:0;   line-height: 1.12;  }
.forest-account-welcome p { margin:9px 0 0;   }
.forest-account-logout { display:flex; align-items:center;  gap:9px;  padding:0 16px; border-radius:10px;   font-size:13px; font-weight:850; text-decoration:none; transition:transform .18s ease-out,background-color .18s ease-out; }
.forest-account-logout:hover {  transform:translateY(-1px); }
.forest-account-logout:focus-visible,.forest-account-empty a:focus-visible,.forest-account-ticket:focus-visible,.forest-account-shipment a:focus-visible,.forest-account-order summary:focus-visible { outline:3px solid var(--forest-button); outline-offset:3px; }
.forest-account-stats { grid-column:1/-1; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); margin:4px 0 0; border-top:1px solid #b8cec7; }
.forest-account-stats div { display:flex; align-items:end; justify-content:space-between; gap:18px; padding:20px 24px 0 0; }
.forest-account-stats div+div { padding-left:24px; border-left:1px solid #b8cec7; }
.forest-account-stats dt { color:#4d6f66; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.forest-account-stats dd { margin:0; color:#073f32; font-size:30px; font-weight:950; font-variant-numeric:tabular-nums; line-height:1; }
.forest-account-dashboard .sf-account-membership { margin:0; }
.forest-account-nav { position:sticky; z-index:4; top:12px; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:6px; padding:6px; border-radius:14px; background:#073f32; box-shadow:0 14px 34px rgba(0,35,26,.24); }
.forest-account-nav a { display:flex; align-items:center; justify-content:center; gap:9px; min-height:46px; border-radius:10px; color:#dcece6; font-size:13px; font-weight:850; text-decoration:none; }
.forest-account-nav a:hover,.forest-account-nav a:focus-visible { background:#ffca28; color:#073f32; outline:0; }
.forest-account-section,.forest-account-membership-section { padding:clamp(22px,3vw,34px); scroll-margin-top:86px; border-radius: var(--forest-panel-radius); background: var(--forest-panel); box-shadow: none; }
.forest-account-section > header,.forest-account-membership-section > header { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom:22px; }
.forest-account-section > header > i { display:grid; place-items:center; width:44px; height:44px; border-radius: var(--forest-panel-radius); background: var(--forest-panel); color:#ffca28; }
body.forest-theme-emerald:not(.forest-home) .forest-template-main .forest-account-section h2,body.forest-theme-emerald:not(.forest-home) .forest-template-main .forest-account-membership-section h2 { margin:0; color:#073f32; font-size:clamp(24px,3vw,32px); letter-spacing:-.025em; }
.forest-account-section > header p,.forest-account-membership-section > header p { margin:6px 0 0; color:#526f67; font-size:14px; }
.forest-account-manage-form { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.forest-account-manage-form label { display:grid; gap:7px; color:#244e43; font-size:12px; font-weight:850; }
.forest-account-manage-form label.is-wide { grid-column:1/-1; }
.forest-account-manage-form input { width:100%; min-height:48px; padding:0 14px; border:1px solid #adc4bd; border-radius: var(--forest-panel-radius); background: var(--forest-panel); color:#073f32; font:inherit; outline:0; }
.forest-account-manage-form input:focus { border-color:#0b6a53; box-shadow:0 0 0 4px rgba(11,106,83,.13); }
.forest-account-manage-form > button,.forest-account-membership-section > header a { display:inline-flex; align-items:center; justify-content:space-between; gap:18px; min-height:46px; padding:0 16px; border:0; border-radius:10px; background:#ffca28; color:#073f32; font:inherit; font-size:13px; font-weight:900; text-decoration:none; cursor:pointer; }
.forest-account-manage-form > button { grid-column:1/-1; justify-self:end; min-width:210px; }
.forest-account-address-columns { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.forest-account-address-group { padding:20px; border-radius: var(--forest-panel-radius); background: var(--forest-panel); }
.forest-account-address-heading { display:flex; align-items:start; justify-content:space-between; gap:14px; margin-bottom:16px; }
body.forest-theme-emerald:not(.forest-home) .forest-template-main .forest-account-address-heading h3 { margin:0; color:#073f32; font-size:18px; }
.forest-account-address-heading p { margin:3px 0 0; color:#6a817a; font-size:12px; }.forest-account-address-heading > span { padding:5px 8px; border-radius: var(--forest-panel-radius); background: var(--forest-panel); color:#315b50; font-size:10px; font-weight:900; }
.forest-account-address-list { display:grid; gap:10px; }
.forest-account-address { position:relative; padding:15px; border-radius: var(--forest-panel-radius); background: var(--forest-panel); }
.forest-account-address strong,.forest-account-address > span { display:block; }.forest-account-address strong { color:#073f32; font-size:13px; }.forest-account-address > span { margin-top:3px; color:#45675e; font-size:11px; font-weight:800; }.forest-account-address p { margin:6px 0 0; color:#607a72; font-size:12px; line-height:1.45; }
.forest-account-address form { position:absolute; top:10px; right:10px; }.forest-account-address form button { padding:6px; border:0; background:transparent; color:#79504a; font-size:11px; cursor:pointer; }
.forest-account-editor { margin-top:12px; border:1px solid #d7e5e0; border-radius:11px; overflow:hidden; }.forest-account-editor summary { display:flex; align-items:center; gap:9px; min-height:44px; padding:0 14px; color:#0b5d49; font-size:12px; font-weight:900; cursor:pointer; list-style:none; }.forest-account-editor summary::-webkit-details-marker{display:none;}.forest-account-editor[open] summary { border-bottom:1px solid #d7e5e0; background: var(--forest-panel); }.forest-account-editor .forest-account-manage-form { padding:16px; }
.forest-csf-upload { grid-template-columns:minmax(0,1fr) auto; align-items:end; padding:14px; border-radius:11px; background:#fff5d8; }.forest-csf-upload > span,.forest-csf-upload > small { grid-column:1/-1; }.forest-csf-upload input { padding:10px; background:#fff; }.forest-csf-upload button { min-height:48px; padding:0 14px; border:0; border-radius:9px; background:#073f32; color:#fff; font-size:12px; font-weight:850; cursor:pointer; }.forest-csf-upload button:disabled { opacity:.55; cursor:wait; }.forest-csf-upload small { color:#5f716c; font-size:11px; font-weight:600; }
.forest-account-membership-section { scroll-margin-top:86px; }.forest-account-membership-section > header a { justify-content:center; }.forest-account-no-membership { display:flex; align-items:center; gap:16px; padding:22px; border-radius: var(--forest-panel-radius); background: var(--forest-panel); }.forest-account-no-membership > i { color:#c99500; font-size:25px; }.forest-account-no-membership strong { color:#073f32; }.forest-account-no-membership p { margin:4px 0 0; color:#607a72; font-size:13px; }
.forest-account-orders { padding:clamp(22px,3vw,34px); border-radius: var(--forest-panel-radius); background: var(--forest-panel); box-shadow: none; }
.forest-account-orders > header { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:22px; }
body.forest-theme-emerald:not(.forest-home) .forest-template-main .forest-account-orders h2 { margin:0; color:#073f32; font-size:clamp(25px,3vw,34px); letter-spacing:-.025em; }
.forest-account-orders > header p { margin:6px 0 0; color:#526f67; font-size:14px; }
.forest-account-orders > header > span { color:#315b50; font-size:13px; font-weight:850; }
.forest-account-order-list { display:grid; gap:10px; }
.forest-account-order { border-radius: var(--forest-panel-radius); background: var(--forest-panel); }
.forest-account-order summary { display:grid; grid-template-columns:46px minmax(180px,1fr) auto minmax(100px,.35fr) 20px; gap:16px; align-items:center; min-height:86px; padding:16px 20px; cursor:pointer; list-style:none; border-radius:14px; }
.forest-account-order summary::-webkit-details-marker { display:none; }
.forest-account-order summary:hover { background:#f9fcfb; }
.forest-account-order-icon { display:grid; place-items:center; width:46px; height:46px; border-radius:11px; background:#e4f1ec; color:#0b5d49; }
.forest-account-order-id strong,.forest-account-order-id small,.forest-account-order-total small,.forest-account-order-total strong { display:block; }
.forest-account-order-id strong { color:#073f32; font-size:15px; }
.forest-account-order-id small { margin-top:4px; color:#658078; font-size:12px; }
.forest-account-status { padding:7px 10px; border-radius:999px; background:#e6f0ed; color:#315b50; font-size:11px; font-weight:900; }
.forest-account-status.is-paid { background:#dff3e8; color:#17643d; }
.forest-account-status.is-pending { background:#fff1c7; color:#765400; }
.forest-account-order-total { text-align:right; }
.forest-account-order-total small { color: var(--forest-muted); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.forest-account-order-total strong { margin-top:3px; color:#073f32; font-size:16px; font-variant-numeric:tabular-nums; }
.forest-account-chevron { color:#68827a; transition:transform .2s ease-out; }
.forest-account-order[open] .forest-account-chevron { transform:rotate(180deg); }
.forest-account-order-body { display:grid; grid-template-columns:minmax(0,1fr) minmax(230px,.36fr); gap:28px; padding:4px 20px 22px 82px; border-top:1px solid #e1ebe7; }
body.forest-theme-emerald:not(.forest-home) .forest-template-main .forest-account-order-body h3 { margin:20px 0 10px; color:#073f32; font-size:14px; }
.forest-account-order-products ul { margin:0; padding:0; list-style:none; }
.forest-account-order-products li { display:flex; justify-content:space-between; gap:20px; padding:12px 0; border-bottom:1px solid #e5eeeb; }
.forest-account-order-products li strong,.forest-account-order-products li small { display:block; }
.forest-account-order-products li strong { color:#183f35; font-size:13px; }
.forest-account-order-products li small { margin-top:4px; color:#6a817a; font-size:11px; }
.forest-account-order-products li b { color:#123f35; font-size:13px; font-variant-numeric:tabular-nums; white-space:nowrap; }
.forest-account-order-meta { display:grid; align-content:start; gap:12px; padding-top:20px; }
.forest-account-order-meta > div { padding-bottom:12px; border-bottom:1px solid #e1ebe7; }
.forest-account-order-meta span,.forest-account-order-meta strong,.forest-account-order-meta small { display:block; }
.forest-account-order-meta span { color:#607a72; font-size:11px; font-weight:800; }
.forest-account-order-meta span i { width:18px; color:#16725b; }
.forest-account-order-meta strong { margin-top:5px; color:#123f35; font-size:13px; }
.forest-account-order-meta small { margin-top:3px; color:#70867f; font-size:11px; }
.forest-account-shipment a,.forest-account-ticket { display:inline-flex; align-items:center; gap:7px; margin-top:8px; color:#0a5c48; font-size:12px; font-weight:900; text-underline-offset:3px; }
.forest-account-ticket { justify-content:center; min-height:40px; margin-top:0; border-radius:9px; background:#ffca28; color:#073f32; text-decoration:none; }
.forest-account-empty { display:grid; grid-template-columns:52px minmax(0,1fr) auto; gap:18px; align-items:center; padding:24px; border-radius: var(--forest-panel-radius); background: var(--forest-panel); }
.forest-account-empty > span { display:grid; place-items:center; width:52px; height:52px; border-radius: var(--forest-panel-radius); background: var(--forest-panel); color:#806000; font-size:20px; }
body.forest-theme-emerald:not(.forest-home) .forest-template-main .forest-account-empty h3 { margin:0; color:#073f32; font-size:17px; }
.forest-account-empty p { margin:5px 0 0; color:#627a73; font-size:13px; }
.forest-account-empty a { display:flex; align-items:center; gap:9px; min-height:44px; padding:0 16px; border-radius:10px; background:var(--forest-button); color:#073f32; font-size:13px; font-weight:900; text-decoration:none; }
@media(max-width:760px){
  .forest-template-main:has(.forest-account-dashboard){padding-inline:16px;}
  .forest-account-welcome{grid-template-columns:1fr;gap:20px;

}
  .forest-account-logout{justify-self:start;}
  .forest-account-order summary{grid-template-columns:42px minmax(0,1fr) 18px;gap:12px;}
  .forest-account-status{grid-column:2;}.forest-account-order-total{grid-column:2;text-align:left;}.forest-account-chevron{grid-column:3;grid-row:1/4;}
  .forest-account-order-body{grid-template-columns:1fr;padding:4px 18px 20px;}.forest-account-order-meta{padding-top:0;}
  .forest-account-empty{grid-template-columns:48px minmax(0,1fr);}.forest-account-empty a{grid-column:1/-1;justify-content:center;}
  .forest-account-nav{position:static;grid-template-columns:repeat(2,minmax(0,1fr));}.forest-account-address-columns{grid-template-columns:1fr;}
}
@media(max-width:520px){
  .forest-account-welcome,.forest-account-orders{border-radius:14px;}
  .forest-account-welcome{padding:24px 20px;

}.forest-account-welcome-copy{align-items:flex-start;}
  .forest-account-stats{grid-template-columns:1fr;}.forest-account-stats div{padding:14px 0;}.forest-account-stats div+div{padding-left:0;border-left:0;border-top:1px solid #b8cec7;}
  .forest-account-order summary{padding:14px;}.forest-account-order-icon{width:42px;height:42px;}
  .forest-account-manage-form{grid-template-columns:1fr;}.forest-account-manage-form label.is-wide,.forest-account-manage-form>button{grid-column:auto;}.forest-account-manage-form>button{justify-self:stretch;}.forest-csf-upload{grid-template-columns:1fr;}.forest-csf-upload>*{grid-column:1!important;}
}
@media(prefers-reduced-motion:reduce){.forest-account-logout,.forest-account-chevron{transition:none;}}

/* Account workspace v2 */
.forest-account-dashboard { max-width:var(--forest-workspace-width); gap:16px; margin-inline:auto; }
.forest-account-dashboard > .forest-account-welcome { order:initial; }
.forest-account-welcome { display:flex; align-items:center; justify-content:space-between; min-height:88px; padding:18px 22px; border-radius: var(--forest-panel-radius); background: var(--forest-panel); box-shadow: none;
  border: 1px solid var(--forest-border);
}
.forest-account-welcome-copy { gap:14px; }
.forest-account-avatar { width:48px; height:48px; border:1px solid rgba(255,202,40,.38); border-radius:12px; background:#0d5846; }
body.forest-theme-emerald:not(.forest-home) .forest-template-main .forest-account-welcome h2 { color: var(--forest-heading); font-size: var(--forest-title-size); letter-spacing: -.03em; }
.forest-account-welcome p { margin-top:5px; color: var(--forest-muted); font-size:13px; }
.forest-account-logout { align-self:auto; min-height:42px; background:#ffca28; color:#073f32!important; box-shadow:none; }
.forest-account-logout:hover { background:#ffd34b; color:#073f32!important; }
.forest-account-shell { display:grid; grid-template-columns:250px minmax(0,1fr); min-height:560px; overflow:hidden; border-radius: var(--forest-panel-radius); background: var(--forest-panel); box-shadow: none;
  border: 1px solid var(--forest-border);
}
.forest-account-dashboard .forest-account-nav { position:static; display:flex; flex-direction:column; gap:4px; padding:24px 14px; border-radius:0; background: var(--forest-soft); box-shadow:none; }
.forest-account-nav > strong { padding:0 12px 15px; color: var(--forest-muted); font-size:10px; letter-spacing:.12em; text-transform:uppercase; }
.forest-account-dashboard .forest-account-nav a { display:grid; grid-template-columns:26px minmax(0,1fr) 12px; justify-content:initial; gap:10px; min-height:64px; padding:10px 12px; border-radius:10px; color: var(--forest-heading); text-align:left; }
.forest-account-dashboard .forest-account-nav a > i:first-child { color: var(--forest-link); text-align:center; }
.forest-account-dashboard .forest-account-nav a > i:last-child { color: var(--forest-link); font-size:10px; }
.forest-account-dashboard .forest-account-nav a span,.forest-account-dashboard .forest-account-nav a small { display:block; }
.forest-account-dashboard .forest-account-nav a span { font-size:13px; font-weight:850; }
.forest-account-dashboard .forest-account-nav a small { margin-top:3px; color: var(--forest-muted); font-size:10px; font-weight:600; }
.forest-account-dashboard .forest-account-nav a:hover,.forest-account-dashboard .forest-account-nav a:focus-visible,.forest-account-dashboard .forest-account-nav a.is-current { background:#ffca28; color:#073f32; }
.forest-account-dashboard .forest-account-nav a:hover i,.forest-account-dashboard .forest-account-nav a:focus-visible i,.forest-account-dashboard .forest-account-nav a.is-current i,.forest-account-dashboard .forest-account-nav a:hover small,.forest-account-dashboard .forest-account-nav a:focus-visible small,.forest-account-dashboard .forest-account-nav a.is-current small { color:#315a50; }
.forest-account-view { min-width:0; padding:clamp(24px,4vw,44px); background: var(--forest-panel); }
.forest-account-view > section { display:none; }
.forest-account-dashboard[data-account-section="orders"] #pedidos,.forest-account-dashboard[data-account-section="addresses"] #domicilios,.forest-account-dashboard[data-account-section="profile"] #perfil,.forest-account-dashboard[data-account-section="memberships"] #membresias { display:block; }
.forest-account-view .forest-account-section,.forest-account-view .forest-account-membership-section,.forest-account-view .forest-account-orders { padding:0; border-radius:0; background: var(--forest-panel); box-shadow: none; }
.forest-account-view .forest-account-section > header,.forest-account-view .forest-account-membership-section > header,.forest-account-view .forest-account-orders > header { padding-bottom:18px; border-bottom:1px solid #cfdfda; }
.forest-account-view .forest-account-address-group,.forest-account-view .forest-account-order,.forest-account-view .forest-account-empty,.forest-account-view .forest-account-no-membership { border: 1px solid var(--forest-border); box-shadow: none; }
.forest-account-view .forest-account-alert { margin-bottom:18px; border:1px solid #b8dcc8; background:#e7f5ed; color:#155b38; }
body.forest-theme-emerald:not(.forest-home) .forest-account-view .forest-account-manage-form > button,body.forest-theme-emerald:not(.forest-home) .forest-account-view .forest-account-membership-section > header a,body.forest-theme-emerald:not(.forest-home) .forest-account-view .forest-account-empty a,body.forest-theme-emerald:not(.forest-home) .forest-account-view .forest-account-ticket { background:#ffca28; color:#073f32!important; opacity:1; }
body.forest-theme-emerald:not(.forest-home) .forest-account-view .forest-account-manage-form > button:hover,body.forest-theme-emerald:not(.forest-home) .forest-account-view .forest-account-membership-section > header a:hover,body.forest-theme-emerald:not(.forest-home) .forest-account-view .forest-account-empty a:hover,body.forest-theme-emerald:not(.forest-home) .forest-account-view .forest-account-ticket:hover { background:#e9b500; color:#052e25!important; }
@media(max-width:760px){
  .forest-account-welcome{min-height:76px;padding:14px 16px;
  border: 1px solid var(--forest-border);
}.forest-account-welcome p{max-width:42vw;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
  color: var(--forest-muted);
}.forest-account-logout span{display:none;}.forest-account-logout{width:42px;padding:0;justify-content:center;}
  .forest-account-shell{display:block;min-height:0;
  border: 1px solid var(--forest-border);
}.forest-account-dashboard .forest-account-nav{display:grid;grid-template-columns:repeat(4,minmax(74px,1fr));padding:8px;overflow-x:auto;
  background: var(--forest-soft);
}.forest-account-nav>strong{display:none;}.forest-account-dashboard .forest-account-nav a{display:flex;flex-direction:column;gap:5px;min-height:58px;padding:9px 6px;text-align:center;
  color: var(--forest-heading);
}.forest-account-dashboard .forest-account-nav a span{font-size:11px;}.forest-account-dashboard .forest-account-nav a small,.forest-account-dashboard .forest-account-nav a>i:last-child{display:none;}.forest-account-view{padding:24px 18px;}
}
@media(max-width:520px){.forest-account-dashboard{gap:10px;}.forest-account-welcome{border-radius:12px;
  border: 1px solid var(--forest-border);
}.forest-account-avatar{width:42px;height:42px;}body.forest-theme-emerald:not(.forest-home) .forest-template-main .forest-account-welcome h2{font-size: var(--forest-title-size);
  color: var(--forest-heading);
}.forest-account-view{padding:22px 14px;}.forest-account-address-group{padding:15px;}}
.forest-preview-account form {
  display: grid;
  gap: 16px;
  max-width: 460px;
}
.forest-preview-account label {
  display: grid;
  gap: 6px;
}
.forest-preview-account input,
.forest-preview-input {
  width: 100%;
  margin: 6px 0 12px;
  padding: 12px;
  border: 1px solid #cbc8bd;
  border-radius: 8px;
}
.forest-preview-account aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.forest-preview-summary {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 16px;
  border-radius: 10px;
  background: #f4f1e8;
}
.forest-preview-centered {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 560px;
  margin: 60px auto;
  padding: 44px;
  text-align: center;
  border-radius: 16px;
  background: var(--forest-surface);
}
.forest-preview-centered > i {
  font-size: 64px;
  color: var(--forest-primary);
}
.forest-preview-centered > strong {
  font-size: 28px;
}
.forest-preview-password {
  margin-top: 100px;
}
.forest-preview-order section > h2 {
  margin-top: 28px;
}
@media (max-width: 760px) {
  .forest-preview-collections {
    grid-template-columns: 1fr;
  }
  .forest-preview-account {
    grid-template-columns: 1fr;
  }
  .forest-taxonomy-directory > header {
    display: block;
  }
  .forest-taxonomy-directory > header p {
    margin-top: 7px;
  }
  .forest-taxonomy-index {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 44px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .forest-taxonomy-groups {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .forest-taxonomy-group li a {
    grid-template-columns: 56px minmax(0,1fr) auto;
    min-height: 76px;
    gap: 13px;
  }
  .forest-taxonomy-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }
}

/* La paleta del detalle prevalece sobre las superficies esmeralda generales. */
.forest-theme-emerald.forest-product-view .forest-product-levels button {
  border-color: var(--forest-border);
  background: var(--forest-panel);
  color: var(--forest-heading);
}
.forest-theme-emerald.forest-product-view .forest-product-levels button.is-active {
  border-color: var(--forest-button);
  background: var(--forest-button);
  color: var(--forest-button-text);
}
.forest-theme-emerald.forest-product-view .forest-product-facts,
.forest-theme-emerald.forest-product-view .forest-product-notice {
  border-color: var(--forest-border);
  background: var(--forest-panel);
  color: var(--forest-text);
}
.forest-theme-emerald.forest-product-view .forest-buy-box {
  border-color: var(--forest-border);
  background: var(--forest-panel);
  color: #163e33;
}
.forest-theme-emerald.forest-product-view .forest-buy-pill,
.forest-theme-emerald.forest-product-view .forest-buy-pill.is-soft {
  background: transparent;
  color: #163e33;
}
.forest-theme-emerald.forest-product-view .forest-buy-price,
.forest-theme-emerald.forest-product-view .forest-buy-box > label,
.forest-theme-emerald.forest-product-view .forest-buy-links,
.forest-theme-emerald.forest-product-view .forest-buy-assurances {
  color: #163e33;
}
.forest-theme-emerald.forest-product-view .forest-volume-progress,
.forest-theme-emerald.forest-product-view .forest-volume-progress.is-applied {
  background: #fff4ce;
  color: #163e33;
}
.forest-theme-emerald.forest-product-view .forest-buy-assurances {
  background: var(--forest-soft);
}
.forest-product-view .forest-product-levels button:focus-visible,
.forest-product-view .forest-product-thumbs button:focus-visible,
.forest-product-view .forest-quantity button:focus-visible,
.forest-product-view .forest-add-cart:focus-visible {
  outline: 3px solid var(--forest-button);
  outline-offset: 3px;
}

/* Promociones Forest */
.forest-promotions-page {
  display: grid;
  gap: 42px;
}
.forest-promotions-hero {
  position: relative;
  overflow: visible;
  border-radius: 16px;
  background: var(--forest-button);
  color: var(--forest-button-text);
  box-shadow: 0 28px 62px rgba(0,24,18,.28);
}
.forest-promotions-hero > div {
  position: relative;
  z-index: 1;
  max-width: 64%;
  padding: clamp(32px,5vw,74px);
}
.forest-promotions-mascot {
  position: absolute;
  z-index: 0;
  right: -5%;
  bottom: 0;
  width: clamp(700px,64vw,1120px);
  margin: 0;
  clip-path: inset(-180px -180px 30% -180px);
  pointer-events: none;
  transform: translateY(30%);
}
.forest-promotions-mascot img {
  display: block;
  width: 100%;
  height: auto;
}
.forest-promotions-hero .forest-promotions-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(5,79,61,.1);
  color: #054f3d;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.forest-promotions-hero h2 {
  max-width: 13ch;
  margin: 0 0 18px;
  color: var(--forest-button-text) !important;
  font-size: clamp(42px,6vw,82px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .92;
  text-wrap: balance;
}
.forest-promotions-hero p {
  max-width: 60ch;
  margin: 0;
  color: #24493f;
  font-size: clamp(15px,1.3vw,19px);
  line-height: 1.5;
}
.forest-promotions-hero > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.forest-promotions-hero a,
.forest-promotions-close > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid #054f3d;
  border-radius: 10px;
  color: #054f3d !important;
  font-weight: 850;
  text-decoration: none;
}
.forest-promotions-hero a:first-child {
  background: #054f3d;
  color: #f5fff9 !important;
}

.forest-promotion-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 7px 10px;
  border-radius: 999px;

  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.forest-promotion-copy > p {

  margin: 0;

}
.forest-promotion-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

}
.forest-promotion-tiers span {
  display: inline-flex;

  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border-radius: 9px;

  font-size: 12px;
  font-weight: 750;
}
.forest-promotion-tiers b {
  color: var(--forest-button);
  font-size: 15px;
}
.forest-promotion-item > aside {

  flex-direction: column;
  justify-content: center;

}
.forest-promotion-item > aside small {

  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}
.forest-promotion-item > aside strong {
  margin-top: 8px;

  font-weight: 950;
  letter-spacing: -.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.forest-promotion-item > aside > span {
  margin-top: 6px;

  font-size: 12px;
}
.forest-promotion-item > aside a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
  padding: 0 14px;
  border-radius: 9px;

  font-weight: 850;
  text-decoration: none;
}
.forest-promotions-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(26px,4vw,48px);
  border-radius: 16px;

}
.forest-promotions-close h2 {
  margin: 0 0 8px;
  font-size: clamp(28px,3.2vw,48px);
  letter-spacing: -.03em;
}
.forest-promotions-close p {
  max-width: 68ch;
  margin: 0;
  color: var(--forest-muted);
}
.forest-promotions-close > a {
  flex: 0 0 auto;
  border: 0;

}
.forest-promotions-empty {
  padding: 70px 24px;
  text-align: center;
  border: 1px dashed rgba(220,239,232,.3);
  border-radius: 16px;
  background: var(--forest-panel);
  border-color: var(--forest-border);
}
.forest-promotions-empty > i {
  color: var(--forest-button);
  font-size: 42px;
}
.forest-promotions-empty h2 {
  margin: 18px 0 8px;
}
.forest-promotions-empty p {
  margin: 0 0 20px;
  color: var(--forest-muted);
}
.forest-promotions-empty a {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 9px;
  background: var(--forest-button);
  color: var(--forest-button-text) !important;
  font-weight: 850;
}
.forest-promotions-page a:focus-visible {
  outline: 3px solid #f5fff9;
  outline-offset: 3px;
}
@media (min-width: 821px) and (max-width: 1100px) {
  .forest-promotions-hero > div {
    max-width: 70%;
  }
  .forest-promotions-mascot {
    right: -24%;
    width: 700px;
  }
}
@media (max-width: 820px) {
  .forest-promotions-page {
    gap: 28px;
  }
  .forest-promotion-item {
    grid-template-columns: 1fr;
  }
  .forest-promotions-hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
  }
  .forest-promotions-hero > div {
    max-width: none;
  }
  .forest-promotions-mascot {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    padding: 0 20px;
    clip-path: none;
    transform: none;
  }
  .forest-promotions-mascot img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .forest-promotions-close {
    align-items: stretch;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .forest-promotions-hero > div,
  .forest-promotion-copy,
  .forest-promotion-item > aside {
    padding: 22px;
  }
  .forest-promotions-hero h2 {
    font-size: 44px;
  }
  .forest-promotions-hero > div > div,
  .forest-promotions-hero a {
    width: 100%;
  }
}

/* Promociones automáticas: composición editorial bento */
.forest-promotions-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 18px 42px;
  padding-top: 10px;
}
.forest-promotions-intro > span {
  grid-column: 1 / -1;
  width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--forest-button);
  color: var(--forest-button-text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.forest-promotions-intro h2 {
  max-width: 13ch;
  margin: 0;
  color: #f5fff9;
  font-family: var(--forest-display-font, inherit);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .88;
  text-wrap: balance;
}
.forest-promotions-intro p {
  max-width: 46ch;
  margin: 0 0 4px;
  color: #d4e9e1;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
}
.forest-promotions-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.forest-promotion-item {
  position: relative;
  isolation: isolate;
  grid-column: span 6;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, #dff1eb 0%, #bedfd4 100%);
  color: #064f3d;
  box-shadow: 0 18px 44px rgba(0, 31, 23, .2);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.forest-promotion-item.is-card-1,
.forest-promotion-item.is-card-4 {
  grid-column: span 7;
}
.forest-promotion-item.is-card-2,
.forest-promotion-item.is-card-3 {
  grid-column: span 5;
}
.forest-promotion-item:last-child:nth-child(odd) {
  grid-column: span 12;
}
.forest-promotion-item.is-card-1 {
  background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.68) 0 4%, transparent 20%),
    linear-gradient(135deg, #ffd52f 0%, #ffad22 100%);
}
.forest-promotion-item.is-card-2 {
  background:
    linear-gradient(148deg, transparent 0 57%, rgba(6,79,61,.08) 57% 100%),
    linear-gradient(135deg, #e6f4ef, #b9ded2);
}
.forest-promotion-item.is-card-3 {
  background:
    radial-gradient(circle at 100% 100%, rgba(62,177,116,.26), transparent 42%),
    linear-gradient(135deg, #075c47, #003e30);
  color: #f5fff9;
}
.forest-promotion-item.is-card-4 {
  background:
    radial-gradient(circle at 88% 16%, rgba(255,209,47,.22), transparent 25%),
    linear-gradient(135deg, #dff1eb 0%, #b8ddd1 100%);
}
.forest-promotion-art {
  position: absolute;
  z-index: -1;
  top: -28px;
  right: -24px;
  color: currentColor;
  font-size: clamp(150px, 15vw, 240px);
  line-height: 1;
  opacity: .09;
  transform: rotate(9deg);
  transition: transform .35s ease, opacity .35s ease;
}
.forest-promotion-number {
  position: absolute;
  z-index: -1;
  right: 20px;
  bottom: -.22em;
  color: currentColor;
  font-family: var(--forest-display-font, inherit);
  font-size: clamp(110px, 13vw, 190px);
  font-weight: 950;
  letter-spacing: -.09em;
  line-height: 1;
  opacity: .065;
  pointer-events: none;
}
.forest-promotion-item:hover .forest-promotion-art {
  opacity: .14;
  transform: rotate(3deg) scale(1.04);
}
.forest-promotion-copy {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 3vw, 42px);
}
.forest-promotion-type {
  margin-bottom: 24px;
  background: #064f3d;
  color: #f5fff9;
}
.forest-promotion-item.is-card-3 .forest-promotion-type {
  background: var(--forest-button);
  color: var(--forest-button-text);
}
.forest-promotion-copy h3 {
  max-width: 12ch;
  margin: 0 0 15px;
  color: inherit !important;
  font-family: var(--forest-display-font, inherit);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .86;
  text-wrap: balance;
}
.forest-promotion-copy > p {
  max-width: 52ch;
  color: inherit;
  font-size: 14px;
  line-height: 1.5;
  opacity: .8;
}
.forest-promotion-tiers {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
.forest-promotion-tiers span {
  min-height: 38px;
  background: rgba(255,255,255,.56);
  color: inherit;
  box-shadow: inset 0 0 0 1px rgba(6,79,61,.08);
}
.forest-promotion-item.is-card-3 .forest-promotion-tiers span {
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.forest-promotion-tiers b,
.forest-promotion-item.is-card-3 .forest-promotion-tiers b {
  color: currentColor;
}
.forest-promotion-item > aside {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "condition action"
    "metric action"
    "label action";
  align-items: end;
  gap: 3px 24px;
  margin: 0 20px 20px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.4);
  color: inherit;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.forest-promotion-item.is-card-3 > aside {
  background: rgba(255,255,255,.09);
}
.forest-promotion-item > aside small {
  grid-area: condition;
  color: inherit;
  opacity: .68;
}
.forest-promotion-item > aside strong {
  grid-area: metric;
  margin: 3px 0 0;
  color: inherit;
  font-size: clamp(28px, 3vw, 46px);
}
.forest-promotion-item > aside > span {
  grid-area: label;
  margin: 0;
  color: inherit;
  opacity: .72;
}
.forest-promotion-item > aside a {
  grid-area: action;
  align-self: stretch;
  min-width: 150px;
  margin: 0;
  background: #064f3d;
  color: #f5fff9 !important;
}
.forest-promotion-item.is-card-3 > aside a {
  background: var(--forest-button);
  color: var(--forest-button-text) !important;
}
.forest-promotions-close {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 50%, rgba(255,255,255,.28), transparent 22%),
    linear-gradient(115deg, #ffd52f, #ffb421);
  color: #064f3d;
}
.forest-promotions-close::after {
  content: "LISTO";
  position: absolute;
  right: 22%;
  bottom: -.3em;
  font-size: clamp(80px, 12vw, 170px);
  font-weight: 950;
  letter-spacing: -.08em;
  opacity: .07;
}
.forest-promotions-close h2,
.forest-promotions-close p {
  position: relative;
  z-index: 1;
  color: inherit;
}
.forest-promotions-close > a {
  position: relative;
  z-index: 1;
  background: #064f3d;
  color: #f5fff9 !important;
}

@media (max-width: 820px) {
  .forest-promotions-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .forest-promotions-intro > span {
    grid-column: auto;
  }
  .forest-promotions-list {
    grid-template-columns: 1fr;
  }
  .forest-promotion-item,
  .forest-promotion-item.is-card-1,
  .forest-promotion-item.is-card-2,
  .forest-promotion-item.is-card-3,
  .forest-promotion-item.is-card-4 {
    grid-column: 1;
    min-height: 340px;
  }
}

@media (max-width: 520px) {
  .forest-promotions-intro h2 {
    font-size: 44px;
  }
  .forest-promotion-copy {
    padding: 24px;
  }
  .forest-promotion-copy h3 {
    font-size: 42px;
  }
  .forest-promotion-item > aside {
    grid-template-columns: 1fr;
    grid-template-areas: "condition" "metric" "label" "action";
    margin: 0 12px 12px;
    padding: 18px;
  }
  .forest-promotion-item > aside a {
    min-width: 0;
    min-height: 44px;
    margin-top: 14px;
  }
}
.forest-country-selector{display:inline-flex;align-items:center;gap:.45rem;min-height:44px;padding:0 .65rem;border-radius:14px;background:rgba(255,255,255,.1);color:var(--forest-header-text);white-space:nowrap;}.forest-country-selector select{max-width:142px;border:0;background:transparent;color:inherit;font:inherit;font-weight:800;cursor:pointer;outline:0;}.forest-country-selector option{color:#063f32;background:#fff;}@media(max-width:900px){.forest-country-selector{min-height:40px;padding:0 .5rem;}.forest-country-selector select{max-width:72px;font-size:.75rem;}}@media(max-width:560px){.forest-country-selector{position:relative;width:40px;height:40px;min-height:40px;flex:0 0 40px;padding:0;justify-content:center;overflow:hidden;font-size:18px;}.forest-country-selector select{position:absolute;inset:0;width:100%;max-width:none;opacity:0;cursor:pointer;}}
.sf-memberships{max-width:1180px;margin:0 auto 60px;}.sf-memberships-hero{padding:clamp(34px,6vw,74px);border-radius:28px;background:linear-gradient(135deg,var(--forest-heading),color-mix(in srgb,var(--forest-primary) 55%,#10271d));color:#fff;text-align:center;}.sf-memberships-hero>span{font-size:12px;font-weight:900;letter-spacing:.16em;}.sf-memberships-hero h1{max-width:760px;margin:14px auto;font-size: var(--forest-title-size);line-height: 1.12;color:#fff;}.sf-memberships-hero p{max-width:650px;margin:0 auto;color:rgba(255,255,255,.78);font-size:17px;}.sf-memberships-hero a{display:inline-flex;gap:8px;margin-top:22px;color:#fff;font-weight:800;}.sf-membership-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));gap:20px;margin-top:-22px;padding:0 24px;}.sf-membership-card{position:relative;padding:30px;border:1px solid color-mix(in srgb,var(--forest-primary) 22%,#d9dfdb);border-radius:22px;background:var(--forest-surface);box-shadow:0 16px 45px rgba(20,45,31,.1);}.sf-membership-card.is-featured{border:2px solid var(--forest-primary);}.sf-membership-featured{position:absolute;top:0;right:22px;padding:7px 12px;border-radius:0 0 10px 10px;background:var(--forest-primary);color:#fff;font-size:10px;letter-spacing:.1em;}.sf-membership-icon{width:48px;height:48px;display:grid;place-items:center;border-radius:50%;background:color-mix(in srgb,var(--forest-primary) 14%,#fff);color:var(--forest-primary);font-size:20px;}.sf-membership-card>p:first-of-type{margin:18px 0 5px;color:var(--forest-primary);font-size:12px;font-weight:900;text-transform:uppercase;}.sf-membership-card h2{margin:0;font-size:25px;}.sf-membership-price{display:flex;align-items:end;gap:8px;margin:18px 0;}.sf-membership-price strong{font-size:32px;}.sf-membership-price span,.sf-membership-description,.sf-membership-card>small{color:var(--forest-text);font-size:12px;}.sf-membership-card ul{min-height:110px;margin:20px 0;padding:0;list-style:none;}.sf-membership-card li{display:flex;gap:9px;margin:10px 0;}.sf-membership-card li i{color:var(--forest-primary);}.sf-membership-card button{width:100%;padding:13px;border:0;border-radius:999px;background:var(--forest-button);color:var(--forest-button-text);font-weight:900;cursor:pointer;}.sf-membership-card>small{display:block;margin-top:12px;text-align:center;}.sf-memberships>footer{display:flex;justify-content:center;gap:13px;margin:30px 0;}.sf-memberships>footer i{font-size:24px;color:var(--forest-primary);}.sf-memberships>footer small{display:block;color:var(--forest-text);}@media(max-width:640px){.sf-membership-grid{padding:0 10px;}.sf-memberships-hero{border-radius:18px;}.sf-memberships>footer{padding:0 16px;}}
.forest-store .sf-account-membership{display:grid;grid-template-columns:minmax(220px,.8fr) minmax(0,1.2fr);gap:24px;margin-bottom:24px;padding:28px;border-radius:20px;background:var(--forest-heading);color:#fff;}.forest-store .sf-account-membership span{color:color-mix(in srgb,var(--forest-primary) 55%,#fff);font-size:11px;font-weight:900;letter-spacing:.12em;}.forest-store .sf-account-membership h2{margin:8px 0 4px;color:#fff;}.forest-store .sf-account-membership p{margin:0;color:rgba(255,255,255,.72);}.forest-store .sf-account-membership dl{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:0;}.forest-store .sf-account-membership dl div{padding:15px;border-radius:12px;background:rgba(255,255,255,.1);}.forest-store .sf-account-membership dt{font-size:11px;opacity:.7;text-transform:uppercase;}.forest-store .sf-account-membership dd{margin:5px 0 0;font-weight:800;}@media(max-width:700px){.forest-store .sf-account-membership,.forest-store .sf-account-membership dl{grid-template-columns:1fr;}}

/* Membresías Forest: una extensión editorial de la página de promociones. */
.forest-store .sf-memberships {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 64px;
}
.forest-store .sf-memberships-hero {
  position: relative;
  isolation: isolate;
  grid-column: span 8;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 6vw, 84px);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.72) 0 3%, transparent 18%),
    linear-gradient(135deg, #ffd62f 0%, #ffb11f 100%);
  color: #064f3d;
  text-align: left;
  box-shadow: 0 28px 62px rgba(0,24,18,.28);
}
.forest-store .sf-memberships-hero::before {
  content: "MIEMBRO";
  position: absolute;
  z-index: -1;
  right: -.04em;
  bottom: -.25em;
  color: #064f3d;
  font-family: var(--forest-display-font, inherit);
  font-size: clamp(105px, 19vw, 300px);
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: 1;
  opacity: .075;
  pointer-events: none;
}
.forest-store .sf-memberships-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: clamp(32px, 8vw, 150px);
  color: #064f3d;
  font-family: "Font Awesome 6 Free";
  font-size: clamp(170px, 24vw, 390px);
  font-weight: 900;
  line-height: 1;
  opacity: .12;
  transform: translateY(-48%) rotate(8deg);
}
.forest-store .sf-memberships-hero > span {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  left: clamp(38px, 6vw, 84px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #064f3d;
  color: #f5fff9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
}
.forest-store .sf-memberships-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 9ch;
  margin: 42px 0 18px;
  color: #064f3d !important;
  font-family: var(--forest-display-font, inherit);
  font-size: var(--forest-title-size);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  text-wrap: balance;
}
.forest-store .sf-memberships-hero > p {
  position: absolute;
  z-index: 1;
  left: clamp(38px, 6vw, 84px);
  bottom: clamp(34px, 5vw, 66px);
  max-width: 52ch;
  margin: 0;
  color: #174f42;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 650;
  line-height: 1.5;
}
.forest-store .sf-memberships-hero > a {
  position: absolute;
  z-index: 2;
  right: clamp(30px, 5vw, 72px);
  bottom: clamp(30px, 5vw, 62px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  margin: 0;
  padding: 12px 18px;
  border-radius: 10px;
  background: #064f3d;
  color: #f5fff9 !important;
  font-weight: 850;
  text-decoration: none;
}
.forest-store .sf-membership-grid {
  display: contents;
  margin: 0;
  padding: 0;
}
.forest-store .sf-membership-card {
  position: relative;
  isolation: isolate;
  grid-column: span 4;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 46px);
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(148deg, transparent 0 58%, rgba(6,79,61,.08) 58% 100%),
    linear-gradient(135deg, #e4f3ee, #b9ddd2);
  color: #064f3d;
  box-shadow: 0 18px 44px rgba(0,31,23,.2);
}
.forest-store .sf-membership-card:nth-child(3n + 2) {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.72) 0 4%, transparent 22%),
    linear-gradient(135deg, #ffd62f, #ffb21f);
}
.forest-store .sf-membership-card:nth-child(3n) {
  background:
    radial-gradient(circle at 100% 100%, rgba(72,185,132,.3), transparent 44%),
    linear-gradient(135deg, #075d48, #003d2f);
  color: #f5fff9;
}
.forest-store .sf-membership-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -.12em;
  bottom: -.2em;
  color: currentColor;
  font-family: "Font Awesome 6 Free";
  font-size: clamp(190px, 21vw, 330px);
  font-weight: 900;
  line-height: 1;
  opacity: .06;
  transform: rotate(-8deg);
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.forest-store .sf-membership-card:hover::after {
  opacity: .095;
  transform: rotate(-3deg) scale(1.035);
}
.forest-store .sf-membership-card.is-featured {
  border: 0;
}
.forest-store .sf-membership-featured {
  position: static;
  order: -2;
  align-self: flex-start;
  margin: 0 0 22px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #064f3d;
  color: #f5fff9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}
.forest-store .sf-membership-icon {
  position: absolute;
  z-index: 0;
  top: clamp(26px, 3vw, 42px);
  right: clamp(26px, 3vw, 42px);
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  font-size: clamp(38px, 4vw, 58px);
}
.forest-store .sf-membership-card > p:first-of-type {
  margin: 0 0 7px;
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .72;
}
.forest-store .sf-membership-card h2 {
  max-width: 11ch;
  margin: 0;
  color: inherit !important;
  font-family: var(--forest-display-font, inherit);
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .9;
  text-wrap: balance;
}
.forest-store .sf-membership-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 12px;
}
.forest-store .sf-membership-price strong {
  color: inherit;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 950;
  letter-spacing: -.035em;
  line-height: 1;
}
.forest-store .sf-membership-price span,
.forest-store .sf-membership-description,
.forest-store .sf-membership-card > small {
  color: inherit;
  opacity: .76;
}
.forest-store .sf-membership-description {
  max-width: 54ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.forest-store .sf-membership-card ul {
  min-height: 0;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.forest-store .sf-membership-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 11px 0;
  font-weight: 700;
  line-height: 1.4;
}
.forest-store .sf-membership-card li i {
  margin-top: .18em;
  color: inherit;
}
.forest-store .sf-membership-card button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  padding: 13px 18px;
  border: 0;
  border-radius: 10px;
  background: #064f3d;
  color: #f5fff9;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
}
.forest-store .sf-membership-card:nth-child(3n) button {
  background: var(--forest-button);
  color: var(--forest-button-text);
}
.forest-store .sf-membership-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,31,23,.2);
}
.forest-store .sf-membership-card button:focus-visible,
.forest-store .sf-memberships-hero > a:focus-visible {
  outline: 3px solid #f5fff9;
  outline-offset: 3px;
}
.forest-store .sf-membership-card > small {
  display: block;
  margin: 12px 0 0;
  text-align: center;
}
.forest-store .sf-memberships > footer {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  overflow: hidden;
  margin: 26px 0 0;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 16px;
  background: linear-gradient(125deg, #064f3d, #003d2f);
  color: #f5fff9;
}
.forest-store .sf-memberships > footer::after {
  content: "CLARO";
  position: absolute;
  right: 2%;
  bottom: -.32em;
  color: #f5fff9;
  font-size: clamp(80px, 12vw, 170px);
  font-weight: 950;
  letter-spacing: -.07em;
  opacity: .045;
}
.forest-store .sf-memberships > footer > i {
  position: relative;
  z-index: 1;
  color: var(--forest-button);
  font-size: 38px;
}
.forest-store .sf-memberships > footer span {
  position: relative;
  z-index: 1;
}
.forest-store .sf-memberships > footer strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}
.forest-store .sf-memberships > footer small {
  display: block;
  color: #cfe5dd;
  line-height: 1.5;
}
@media (max-width: 820px) {
  .forest-store .sf-memberships {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .forest-store .sf-memberships-hero {
    grid-column: 1;
    min-height: 500px;
    align-items: flex-start;
    padding: 80px 28px 150px;
  }
  .forest-store .sf-memberships-hero > span {
    top: 28px;
    left: 28px;
  }
  .forest-store .sf-memberships-hero h1 {
    margin: 18px 0 0;
    font-size: var(--forest-title-size);
  }
  .forest-store .sf-memberships-hero > p {
    left: 28px;
    right: 28px;
    bottom: 76px;
  }
  .forest-store .sf-memberships-hero > a {
    right: auto;
    bottom: 22px;
    left: 28px;
  }
  .forest-store .sf-memberships-hero::after {
    top: auto;
    right: -34px;
    bottom: 8px;
    font-size: 190px;
    transform: rotate(8deg);
  }
  .forest-store .sf-membership-card {
    grid-column: 1;
    min-height: 470px;
  }
  .forest-store .sf-memberships > footer {
    grid-column: 1;
    margin-top: 8px;
  }
}
@media (max-width: 520px) {
  .forest-store .sf-memberships {
    gap: 18px;
  }
  .forest-store .sf-memberships-hero {
    min-height: 520px;
    padding-inline: 22px;
  }
  .forest-store .sf-memberships-hero > span,
  .forest-store .sf-memberships-hero > p,
  .forest-store .sf-memberships-hero > a {
    left: 22px;
  }
  .forest-store .sf-memberships-hero > p {
    right: 22px;
  }
  .forest-store .sf-memberships-hero h1 {
    font-size: var(--forest-title-size);
  }
  .forest-store .sf-membership-card {
    min-height: 450px;
    padding: 24px;
  }
  .forest-store .sf-membership-card h2 {
    font-size: 40px;
  }
  .forest-store .sf-memberships > footer {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .forest-store .sf-membership-card::after,
  .forest-store .sf-membership-card button {
    transition: none;
  }
}

/* Acceso contextual a membresías dentro del encabezado del catálogo. */
.forest-store .forest-template-main:has(> .forest-collection-heading) {
  padding-top: 24px;
}
.forest-store .forest-collection-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  align-items: stretch;
  gap: clamp(24px, 3vw, 44px);
  margin: 0 0 20px;
}
.forest-store .forest-collection-heading-main {
  min-width: 0;
}
.forest-store .forest-collection-heading .forest-template-crumb {
  color: var(--forest-muted);
  font-size: 13px;
}
.forest-store .forest-collection-heading h1 {
  margin: 10px 0 0;
  color: var(--forest-heading);
  font-size: var(--forest-title-size);
}
.forest-store .forest-collection-memberships {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  margin: 0;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd62f, #ffba26);
  color: #064f3d !important;
  box-shadow: 0 16px 34px rgba(0,26,19,.24);
  text-decoration: none;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
}
.forest-store .forest-collection-memberships::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -16px;
  color: #064f3d;
  font-family: "Font Awesome 6 Free";
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  opacity: .075;
  transform: rotate(10deg);
}
.forest-store .forest-collection-memberships > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 50%;
  background: #064f3d;
  color: #ffd62f;
  font-size: 17px;
}
.forest-store .forest-collection-memberships > span {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 5px;
}
.forest-store .forest-collection-memberships strong {
  max-width: 17ch;
  color: #064f3d;
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -.025em;
  line-height: 1.04;
  text-wrap: balance;
}
.forest-store .forest-collection-memberships small {
  color: #174f42;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}
.forest-store .forest-collection-memberships b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #064f3d;
  font-size: 11px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.forest-store .forest-collection-memberships:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(0,26,19,.3);
}
.forest-store .forest-collection-memberships:focus-visible {
  outline: 3px solid #f5fff9;
  outline-offset: 4px;
}
@media (max-width: 1080px) {
  .forest-store .forest-collection-heading {
    grid-template-columns: minmax(0,1fr) 250px;
    gap: 22px;
  }
  .forest-store .forest-collection-memberships {
    padding-inline: 14px;
  }
}
@media (max-width: 860px) {
  .forest-store .forest-collection-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .forest-store .forest-collection-heading h1 {
    font-size: var(--forest-title-size);
  }
  .forest-store .forest-collection-memberships {
    width: 100%;
    min-height: 96px;
    margin-top: 0;
    padding: 16px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .forest-store .forest-collection-memberships {
    transition: none;
  }
}

.forest-store .forest-buy-memberships {
  position: relative;
  isolation: isolate;
  min-height: 158px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  overflow: hidden;
  margin: 0 0 14px;
  padding: 22px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd62f, #ffba26);
  color: #064f3d;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
}
.forest-store .forest-buy-memberships::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28px;
  right: -15px;
  color: #064f3d;
  font-family: "Font Awesome 6 Free";
  font-size: 128px;
  font-weight: 900;
  line-height: 1;
  opacity: .075;
  transform: rotate(10deg);
}
.forest-store .forest-buy-memberships > i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  border-radius: 50%;
  background: #064f3d;
  color: #ffd62f;
  font-size: 16px;
}
.forest-store .forest-buy-memberships > span {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 7px;
}
.forest-store .forest-buy-memberships strong {
  max-width: 12ch;
  color: #064f3d;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.025em;
  line-height: 1.02;
  text-wrap: balance;
}
.forest-store .forest-buy-memberships small {
  max-width: 25ch;
  color: #174f42;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}
.forest-store .forest-buy-memberships b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #064f3d;
  font-size: 11px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.forest-store .forest-buy-memberships:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,45,34,.18);
}
.forest-store .forest-buy-memberships:focus-visible {
  outline: 3px solid #064f3d;
  outline-offset: 3px;
}
.forest-product-view .forest-buy-memberships {
  margin: -22px -22px 22px;
  padding: 26px 22px 24px;
  border-radius: 0;
}
.forest-product-view .forest-buy-memberships:hover {
  transform: none;
  box-shadow: none;
}
.forest-product-view .forest-buy-assurances {
  justify-content: space-around;
  gap: 8px;
  font-size: 10px;
}
.forest-product-view .forest-buy-assurances > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.forest-theme-emerald.forest-product-view .forest-product-content > .forest-nutrition-label {
  width: 100%;
  padding: 14px;
  border: 3px solid #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  box-shadow: 0 14px 30px rgba(0,24,18,.2);
  font-variant-numeric: tabular-nums;
}
.forest-product-view .forest-nutrition-label header {
  padding-bottom: 8px;
  border-bottom: 8px solid #111;
}
.forest-theme-emerald.forest-product-view .forest-nutrition-label header strong {
  display: block;
  padding: 0;
  border: 0;
  color: #111;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -.035em;
  line-height: .95;
  text-transform: uppercase;
}
.forest-product-view .forest-nutrition-label header span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}
.forest-product-view .forest-nutrition-label dl {
  margin: 0;
}
.forest-product-view .forest-nutrition-label dl > div {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #111;
  font-size: 10px;
  line-height: 1.25;
}
.forest-product-view .forest-nutrition-label dt {
  font-weight: 800;
}
.forest-product-view .forest-nutrition-label dd {
  margin: 0;
  text-align: right;
}
.forest-theme-emerald.forest-product-view .forest-nutrition-label .forest-nutrition-amount {
  margin: 0;
  padding: 6px 0 4px;
  border-bottom: 4px solid #111;
  color: #111;
  font-size: 9px;
  font-weight: 900;
  text-align: right;
}
.forest-product-view .forest-nutrition-label table {
  width: 100%;
  border-collapse: collapse;
  color: #111;
  font-size: 11px;
}
.forest-product-view .forest-nutrition-label th,
.forest-product-view .forest-nutrition-label td {
  padding: 6px 0;
  border-bottom: 1px solid #111;
}
.forest-product-view .forest-nutrition-label th {
  font-weight: 900;
  text-align: left;
}
.forest-product-view .forest-nutrition-label td {
  width: 34%;
  font-weight: 800;
  text-align: right;
}
.forest-product-view .forest-nutrition-ingredients {
  padding: 8px 0;
  border-bottom: 4px solid #111;
}
.forest-theme-emerald.forest-product-view .forest-nutrition-ingredients b {
  color: #111;
  font-size: 10px;
  text-transform: uppercase;
}
.forest-theme-emerald.forest-product-view .forest-nutrition-ingredients p {
  margin: 3px 0 0;
  color: #111;
  font-size: 9px;
  line-height: 1.35;
  text-align: left;
}
.forest-product-view .forest-nutrition-label > small {
  display: block;
  margin-top: 7px;
  font-size: 8px;
  line-height: 1.3;
}
@media (min-width: 961px) and (max-width: 1260px) {
  .forest-product-view .forest-product-overview {
    grid-template-columns: minmax(220px,.75fr) minmax(300px,1.15fr) minmax(270px,.9fr);
    gap: clamp(14px,1.6vw,20px);
  }
  .forest-product-view .forest-buy-box {
    position: sticky;
    top: 118px;
    grid-column: auto;
    padding: 16px;

  border-color: var(--forest-border);
}
  .forest-product-view .forest-buy-memberships {
    margin: -16px -16px 18px;
    padding: 20px 16px 18px;
  }
  .forest-product-view .forest-buy-memberships strong {
    font-size: 17px;
  }
  .forest-product-view .forest-buy-assurances {
    margin: 16px -16px -16px;
    padding-inline: 6px;
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .forest-store .forest-buy-memberships {
    transition: none;
  }
}

/* Mayoreo Naturista: guía editorial de lectura de etiquetas. Scoped preview/content. */
.mnt-guide { background: var(--forest-canvas);  font-size: 18px; line-height: 1.75; }
.mnt-guide ::selection { background: #ffc321; color: var(--forest-heading); }
.mnt-guide { scrollbar-color: #48705e var(--forest-canvas);
  color: var(--forest-text);
}
.mnt-guide a { text-underline-offset: .22em; }
.mnt-guide :is(a,button,input,summary):focus-visible { outline: 3px solid #997500; outline-offset: 5px; }
.mnt-guide h1,.mnt-guide h2,.mnt-guide h3 { font-family: var(--forest-display-font); letter-spacing: -.03em; }
.mnt-guide h1 { font-size: var(--forest-title-size); line-height: 1.12; margin: 28px 0 24px; }
.mnt-guide h2 { font-size: clamp(32px,3vw,44px); line-height: 1.13; margin: 0 0 24px; }
.mnt-guide h3 { font-size: 27px; line-height: 1.3; margin: 42px 0 16px; }
.mnt-guide p { margin: 0 0 22px; }
.mnt-guide svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; flex: none; }
.mnt-guide figure { margin: 0; }
.mnt-guide img { max-width: 100%; display: block; }
.mnt-guide figcaption { font-size: 12px; line-height: 1.6; margin-top: 12px; color: #456457; }
.mnt-guide .mnt-wrap { width: min(1180px,calc(100% - 80px)); margin-inline: auto; }
.mnt-guide .mnt-masthead { background: #004735; color: #fff; padding: 14px max(40px,calc((100% - 1180px)/2)); display: flex; gap: 32px; align-items: center; justify-content: space-between; font-size: 14px; }
.mnt-guide .mnt-masthead a { color: #fff; }
.mnt-guide .mnt-masthead img { width: 145px; height: auto; }
.mnt-guide .mnt-shop-link { display: inline-flex; gap: 12px; align-items: center; font-weight: 700; }
.mnt-guide .mnt-skip { position: absolute; z-index: 50; top: -100px; left: 12px; padding: 12px; background: #ffc321; }
.mnt-guide .mnt-skip:focus { top: 12px; }
.mnt-guide .mnt-hero { display: grid; grid-template-columns: 1.02fr 1fr; align-items: center; gap: 62px; padding-block: 52px 62px; }
.mnt-guide .mnt-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; }
.mnt-guide .mnt-deck { font-size: 20px; line-height: 1.65; max-width: 44ch; }
.mnt-guide .mnt-byline { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 12px; padding: 22px 0; border-top: 1px solid #cdd7cb; }
.mnt-guide .mnt-text-link { display: inline-flex; gap: 16px; align-items: center; text-decoration: underline; font-size: 14px; font-weight: 700; }
.mnt-guide .mnt-hero-image img { height: 570px; width: 100%; object-fit: cover; object-position: 46% 50%; border-radius: 7px; }
.mnt-guide .mnt-jump { background: #edeedf; border-block: 1px solid #d8ddcc; font-size: 14px; }
.mnt-guide .mnt-jump > div { display: flex; align-items: center; gap: 36px; min-height: 68px; overflow-x: auto; white-space: nowrap; }
.mnt-guide .mnt-jump a { padding: 16px 0; }
.mnt-guide .mnt-jump a:hover { text-decoration: underline; }
.mnt-guide [id] { scroll-margin-top: 28px; }
.mnt-guide .mnt-reading-layout { display: grid; grid-template-columns: 220px minmax(0,720px); gap: 80px; padding-block: 80px; }
.mnt-guide .mnt-margin-note { border-top: 1px solid #a7b9a7; padding-top: 20px; font-size: 15px; line-height: 1.6; }
.mnt-guide .mnt-margin-note p { font-family: Georgia, serif; font-style: italic; font-size: 24px; line-height: 1.4; color: #547060; }
.mnt-guide .mnt-margin-note a { text-decoration: underline; }
.mnt-guide .mnt-prose { max-width: 70ch; }
.mnt-guide .mnt-prose p:last-child { margin-bottom: 0; }
.mnt-guide .mnt-prose a,.mnt-guide .mnt-annotations a,.mnt-guide .mnt-faq a { text-decoration: underline; }
.mnt-guide .mnt-intro { font-size: 23px; line-height: 1.6; }
.mnt-guide .mnt-label-section { background: #e5eadc; padding-block: 70px 80px; }
.mnt-guide .mnt-section-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 38px; }
.mnt-guide .mnt-section-intro p { font-size: 16px; }
.mnt-guide .mnt-label-grid { display: grid; grid-template-columns: 420px 1fr; gap: 100px; align-items: start; }
.mnt-guide .mnt-demo-label { background: var(--forest-panel); border: 1px solid #9fac97; border-radius: 4px; padding: 32px; color: #193b30; box-shadow: 0 20px 42px -26px #3f513e60; font-size: 14px; line-height: 1.5; }
.mnt-guide .mnt-demo-label .mnt-label-title { font-size: 25px; line-height: 1.1; font-weight: 800; margin-bottom: 12px; }
.mnt-guide .mnt-demo-label dl { margin: 24px 0; font-variant-numeric: tabular-nums; }
.mnt-guide .mnt-demo-label dl div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid #a1ae9b; }
.mnt-guide .mnt-demo-label dd { margin: 0; font-weight: 700; white-space: nowrap; }
.mnt-guide .mnt-demo-label .mnt-highlight { background: #ffe58f; margin-inline: -12px; padding-inline: 12px; }
.mnt-guide .mnt-label-rule { border-top: 1px solid #a1ae9b; margin: 18px 0; }
.mnt-guide .mnt-label-bottom { display: flex; gap: 20px; border-block: 1px solid #a1ae9b; padding: 14px 0; margin-bottom: 16px; }
.mnt-guide .mnt-demo-label small { font-size: 11px; }
.mnt-guide details { border-bottom: 1px solid #afbea9; }
.mnt-guide summary { cursor: pointer; padding: 24px 30px 24px 0; font-size: 19px; font-weight: 700; line-height: 1.4; position: relative; list-style: none; }
.mnt-guide summary::-webkit-details-marker { display: none; }
.mnt-guide summary::after { content: "+"; position: absolute; right: 0; top: 24px; font-size: 22px; font-weight: 400; }
.mnt-guide details[open] > summary::after { content: "−"; }
.mnt-guide details[open] > summary { color: #004735; }
.mnt-guide details p { font-size: 16px; line-height: 1.75; }
.mnt-guide .mnt-equation { display: flex; justify-content: space-around; gap: 16px; align-items: center; border-block: 1px solid #ccd6c4; margin: 32px 0; padding: 26px 0; font-variant-numeric: tabular-nums; }
.mnt-guide .mnt-equation span { display: grid; text-align: center; font-size: 13px; }
.mnt-guide .mnt-equation b { font-family: var(--forest-display-font); font-size: 48px; line-height: 1.2; color: #004735; }
.mnt-guide .mnt-equation i { font-style: normal; font-size: 28px; }
.mnt-guide .mnt-context-link { margin-top: 32px; padding-top: 22px; border-top: 1px solid #cdd7cb; font-size: 16px; }
.mnt-guide .mnt-comparison { padding-block: 0 20px; }
.mnt-guide .mnt-comparison-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: center; margin-bottom: 40px; }
.mnt-guide .mnt-comparison-intro p { font-size: 16px; }
.mnt-guide .mnt-comparison-intro img { aspect-ratio: 3/2; object-fit: cover; border-radius: 7px; }
.mnt-guide .mnt-calculator { display: grid; grid-template-columns: 1.4fr 1fr; border: 1px solid #b8c5b0; border-radius: 12px; overflow: hidden; background: var(--forest-panel); }
.mnt-guide .mnt-calculator form { padding: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.mnt-guide fieldset { padding: 0; margin: 0; border: 0; min-width: 0; }
.mnt-guide legend { font-weight: 800; font-size: 20px; margin-bottom: 14px; }
.mnt-guide .mnt-calculator label { display: block; font-size: 13px; margin: 14px 0 6px; }
.mnt-guide .mnt-calculator input { width: 100%; min-width: 0; padding: 11px 12px; border: 1px solid #90a58e; border-radius: 6px; background: #fff; color: #193b30; font: inherit; font-variant-numeric: tabular-nums; caret-color: #004735; }
.mnt-guide .mnt-calculator input[aria-invalid="true"] { border: 2px solid #a32e22; }
.mnt-guide .mnt-calculator .forest-button { grid-column: 1/-1; width: 100%; margin-top: 6px; }
.mnt-guide .forest-button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 48px; padding: 14px 23px; border: 0; border-radius: 7px; background: #ffc321; color: var(--forest-heading); font-size: 15px; font-weight: 800; cursor: pointer; line-height: 1.4; }
.mnt-guide .forest-button:hover { background: #efb200; }
.mnt-guide .mnt-calc-result { background: #004735; color: #f5f3e8; padding: 34px; display: flex; align-items: center; font-size: 15px; }
.mnt-guide .mnt-calc-result dl { margin: 20px 0; }
.mnt-guide .mnt-calc-result dl div { padding: 20px 0; border-block-start: 1px solid #568b72; }
.mnt-guide .mnt-calc-result dd { margin: 7px 0 0; font: 800 38px/1.2 var(--forest-display-font); color: #ffe08a; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.mnt-guide .mnt-calc-result small { font: 400 12px/1.3 -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; color: #f5f3e8; display: block; margin-top: 7px; }
.mnt-guide .mnt-calc-result p:last-child { margin: 0; }
.mnt-guide .mnt-fine-print { font-size: 12px; max-width: 100ch; margin-top: 18px; }
.mnt-guide .mnt-check-section { background: #e5eadc; padding-block: 64px; }
.mnt-guide .mnt-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.mnt-guide .mnt-check-grid p { font-size: 16px; }
.mnt-guide .mnt-check-grid .mnt-check-count { font-size: 15px; font-weight: 700; }
.mnt-guide .mnt-checks label { display: flex; gap: 14px; align-items: start; padding: 18px 0; border-bottom: 1px solid #bac8b0; font-size: 16px; line-height: 1.55; cursor: pointer; }
.mnt-guide .mnt-checks input { width: 22px; height: 22px; flex: none; margin: 2px 0 0; accent-color: #004735; }
.mnt-guide .mnt-faq { padding-block: 80px; max-width: 850px; }
.mnt-guide .mnt-faq details p { max-width: 70ch; }
.mnt-guide .mnt-closing { border-block: 1px solid #b5c5ac; padding-block: 42px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; }
.mnt-guide .mnt-closing h2 { max-width: 20ch; font-size: 36px; }
.mnt-guide .mnt-closing p { max-width: 53ch; font-size: 16px; margin: 0; }
.mnt-guide .mnt-article-footer { padding-block: 34px 54px; font-size: 12px; max-width: 1180px; }
.mnt-guide .mnt-article-footer p { max-width: 100ch; margin-bottom: 12px; }
.mnt-guide .mnt-article-footer a { text-decoration: underline; }
@media(max-width: 1000px) {
  .mnt-guide .mnt-hero { gap: 32px; }
  .mnt-guide .mnt-hero-image img { height: 530px; }
  .mnt-guide .mnt-reading-layout { grid-template-columns: 160px minmax(0,1fr); gap: 40px; }
  .mnt-guide .mnt-label-grid { grid-template-columns: 350px 1fr; gap: 36px; }
  .mnt-guide .mnt-check-grid { gap: 40px; }
  .mnt-guide .mnt-calculator { grid-template-columns: 1.35fr 1fr; }
  .mnt-guide .mnt-calculator form,.mnt-guide .mnt-calc-result { padding: 24px; }
}
@media(max-width: 760px) {
  .mnt-guide { font-size: 17px; }
  .mnt-guide .mnt-wrap { width: calc(100% - 40px); }
  .mnt-guide .mnt-masthead { padding: 14px 20px; gap: 18px; }
  .mnt-guide .mnt-masthead > span { display: none; }
  .mnt-guide .mnt-masthead img { width: 126px; }
  .mnt-guide .mnt-shop-link { font-size: 12px; gap: 6px; }
  .mnt-guide .mnt-shop-link svg { width: 18px; }
  .mnt-guide .mnt-hero { grid-template-columns: 1fr; padding-block: 30px 32px; gap: 28px; }
  .mnt-guide h1 { font-size: var(--forest-title-size); margin-top: 22px; }
  .mnt-guide .mnt-deck { font-size: 18px; }
  .mnt-guide .mnt-hero-image img { height: auto; aspect-ratio: 4/3; }
  .mnt-guide .mnt-jump > div { gap: 24px; min-height: 58px; }
  .mnt-guide .mnt-jump strong { display: none; }
  .mnt-guide .mnt-reading-layout { grid-template-columns: 1fr; gap: 22px; padding-block: 48px; }
  .mnt-guide .mnt-margin-note { display: none; }
  .mnt-guide .mnt-intro { font-size: 21px; }
  .mnt-guide .mnt-section-intro,.mnt-guide .mnt-label-grid,.mnt-guide .mnt-comparison-intro,.mnt-guide .mnt-check-grid,.mnt-guide .mnt-closing { grid-template-columns: 1fr; gap: 24px; }
  .mnt-guide .mnt-label-section { padding-block: 44px; }
  .mnt-guide .mnt-section-intro { gap: 0; margin-bottom: 12px; }
  .mnt-guide .mnt-demo-label { max-width: 420px; width: 100%; margin-inline: auto; padding: 25px; }
  .mnt-guide summary { font-size: 18px; }
  .mnt-guide .mnt-equation b { font-size: 40px; }
  .mnt-guide .mnt-equation { gap: 8px; }
  .mnt-guide .mnt-comparison-intro { gap: 18px; margin-bottom: 28px; }
  .mnt-guide .mnt-calculator { grid-template-columns: 1fr; }
  .mnt-guide .mnt-calculator form { gap: 16px; padding: 20px; }
  .mnt-guide .mnt-calculator label { font-size: 12px; min-height: 38px; line-height: 1.5; }
  .mnt-guide .mnt-calc-result { padding: 26px; }
  .mnt-guide .mnt-check-section { padding-block: 44px; }
  .mnt-guide .mnt-faq { padding-block: 48px; }
  .mnt-guide .mnt-closing { padding-block: 32px; }
  .mnt-guide .mnt-closing .forest-button { justify-self: start; }
}
@media(prefers-reduced-motion: reduce) { html:has(.mnt-guide) { scroll-behavior: auto; } }

/* Índice editorial: entrada a Guías de uso y consejos. */
.mnt-guide .mnt-library-heading { padding-block: 34px 48px; }
.mnt-guide .mnt-library-heading > div { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: end; margin-top: 30px; }
.mnt-guide .mnt-library-heading h1 { font-size: var(--forest-title-size); margin: 0; }
.mnt-guide .mnt-library-heading > div > p { font-size: 19px; max-width: 44ch; margin: 0 0 5px; }
.mnt-guide .mnt-library-feature { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; background: #e5eadc; border-radius: 8px; overflow: hidden; }
.mnt-guide .mnt-library-photo { min-height: 480px; display: block; }
.mnt-guide .mnt-library-photo img { width: 100%; height: 100%; object-fit: cover; }
.mnt-guide .mnt-library-feature-copy { padding: 40px; align-self: center; }
.mnt-guide .mnt-library-feature h2 { font-size: clamp(30px,3vw,42px); margin-bottom: 20px; }
.mnt-guide .mnt-library-feature h2 a { color: var(--forest-heading); }
.mnt-guide .mnt-library-feature h2 a:hover { text-decoration: underline; }
.mnt-guide .mnt-library-feature-copy > p { font-size: 16px; }
.mnt-guide .mnt-library-meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: 12px; padding-bottom: 24px; }
.mnt-guide .mnt-library-feature-copy .mnt-library-extra { font-size: 12px; margin: 18px 0 0; max-width: 42ch; }
.mnt-guide .mnt-library-shortcuts { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; padding-block: 78px; }
.mnt-guide .mnt-library-section-heading h2 { font-size: 36px; }
.mnt-guide .mnt-library-section-heading p { font-size: 16px; max-width: 33ch; }
.mnt-guide .mnt-library-link-list > a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid #b5c5ac; }
.mnt-guide .mnt-library-link-list > a:last-child { border-bottom: 1px solid #b5c5ac; }
.mnt-guide .mnt-library-link-list strong { display: block; font-size: 18px; line-height: 1.4; }
.mnt-guide .mnt-library-link-list small { display: block; font-size: 14px; color: #456457; line-height: 1.6; margin-top: 8px; }
.mnt-guide .mnt-library-link-list a:hover strong { text-decoration: underline; }
.mnt-guide .mnt-library-tool { background: #004735; color: var(--forest-canvas); padding-block: 56px; margin-bottom: 72px; }
.mnt-guide .mnt-library-tool > div { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mnt-guide .mnt-library-tool h2 { color: var(--forest-canvas); font-size: clamp(36px,4vw,52px); }
.mnt-guide .mnt-library-tool p { font-size: 17px; max-width: 43ch; }
.mnt-guide .mnt-library-tool img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; border-radius: 7px; }
.mnt-guide .mnt-library-tool .mnt-library-tool-note { font-size: 12px; margin: 20px 0 0; }
.mnt-guide.mnt-guides-home .mnt-closing { border-top: 0; padding-top: 0; }
.mnt-guide.mnt-guides-home .mnt-closing p a { text-decoration: underline; }
@media(max-width: 1000px) {
  .mnt-guide .mnt-library-feature-copy { padding: 28px; }
  .mnt-guide .mnt-library-shortcuts { gap: 40px; }
  .mnt-guide .mnt-library-tool > div { gap: 40px; }
}
@media(max-width: 760px) {
  .mnt-guide .mnt-masthead > .mnt-guides-home-link { display: none; }
  .mnt-guide .mnt-library-heading { padding-block: 26px 30px; }
  .mnt-guide .mnt-library-heading > div { grid-template-columns: 1fr; gap: 22px; margin-top: 24px; }
  .mnt-guide .mnt-library-heading h1 { font-size: var(--forest-title-size); }
  .mnt-guide .mnt-library-heading > div > p { font-size: 17px; }
  .mnt-guide .mnt-library-feature { grid-template-columns: 1fr; }
  .mnt-guide .mnt-library-photo { min-height: 0; }
  .mnt-guide .mnt-library-photo img { height: auto; aspect-ratio: 3/2; }
  .mnt-guide .mnt-library-feature-copy { padding: 26px 24px; }
  .mnt-guide .mnt-library-feature h2 { font-size: 30px; }
  .mnt-guide .mnt-library-shortcuts { grid-template-columns: 1fr; gap: 12px; padding-block: 44px; }
  .mnt-guide .mnt-library-section-heading h2 { font-size: 32px; }
  .mnt-guide .mnt-library-section-heading p { max-width: none; }
  .mnt-guide .mnt-library-tool { padding-block: 40px; margin-bottom: 44px; }
  .mnt-guide .mnt-library-tool > div { grid-template-columns: 1fr; gap: 30px; }
}

/* Native storefront has a sticky commercial header above the editorial content. */

.mnt-native-guide [id] { scroll-margin-top: 200px; }

/* Searchable editorial library. */
.mnt-guides-directory [hidden] { display: none !important; }
.mnt-guides-directory main { min-height: 65vh; padding-block: 28px 40px; }
.mnt-guide .mnt-directory-heading h1 { font-size: var(--forest-title-size); margin: 24px 0 14px; }
.mnt-guide .mnt-directory-heading > p { font-size: 17px; margin-bottom: 30px; }
.mnt-guide .mnt-directory-filters { display: grid; grid-template-columns: minmax(0,1fr) 260px; gap: 20px; padding: 22px 0; border-block: 1px solid #cdd7cb; }
.mnt-guide .mnt-directory-filters label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.mnt-guide .mnt-directory-search { position: relative; }
.mnt-guide .mnt-directory-search svg { position: absolute; left: 14px; top: 14px; }
.mnt-guide .mnt-directory-filters input,.mnt-guide .mnt-directory-filters select { width: 100%; min-width: 0; height: 50px; border: 1px solid #9bb29f; border-radius: 6px; background: var(--forest-panel); color: var(--forest-text); font: inherit; font-size: 15px; padding: 10px 14px; }
.mnt-guide .mnt-directory-filters input { padding-left: 46px; }
.mnt-guide .mnt-directory-filters input::placeholder { color: #54695c; }
.mnt-guide .mnt-directory-list-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 30px 0 22px; }
.mnt-guide .mnt-directory-list-heading h2 { font-size: 23px; margin: 0; }
.mnt-guide .mnt-directory-list-heading p { margin: 0; font-size: 13px; }
.mnt-guide .mnt-directory-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; align-items: start; }
.mnt-guide .mnt-directory-card { min-width: 0; background: var(--forest-panel); border: 1px solid var(--forest-border); border-radius: var(--forest-panel-radius); overflow: hidden; }
.mnt-guide .mnt-directory-card-image { display: block; aspect-ratio: 3/2; background: var(--forest-panel); }
.mnt-guide .mnt-directory-card-image img { width: 100%; height: 100%; object-fit: cover; }
.mnt-guide .mnt-directory-card-image > span { display: grid; height: 100%; place-items: center; font: 800 28px var(--forest-display-font); }
.mnt-guide .mnt-directory-card-copy { padding: 23px; }
.mnt-guide .mnt-directory-card h3 { font-size: 24px; line-height: 1.2; margin: 0 0 12px; }
.mnt-guide .mnt-directory-card h3 a { color: var(--forest-heading); }
.mnt-guide .mnt-directory-card h3 a:hover { text-decoration: underline; }
.mnt-guide .mnt-directory-topic { display: inline-block; font-size: 12px; color: #385d45; margin-bottom: 14px; }
.mnt-guide .mnt-directory-card p { font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.mnt-guide .mnt-directory-read { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; text-decoration: underline; }
.mnt-guide .mnt-directory-empty { padding: 50px 20px; text-align: center; background: #edf0e6; border-radius: 12px; }
.mnt-guide .mnt-directory-empty h3 { margin-top: 0; font-size: 24px; }
.mnt-guide .mnt-directory-empty p { font-size: 16px; }
.mnt-guide .mnt-directory-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-top: 50px; padding-top: 25px; border-top: 1px solid #cdd7cb; font-size: 15px; }
.mnt-guide .mnt-directory-footer a { display: inline-flex; align-items: center; gap: 12px; text-decoration: underline; font-weight: 700; }
@media(max-width: 1000px) { .mnt-guide .mnt-directory-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media(max-width: 600px) {
  .mnt-guide .mnt-directory-filters { grid-template-columns: 1fr; gap: 14px; }
  .mnt-guide .mnt-directory-grid { grid-template-columns: 1fr; }
  .mnt-guide .mnt-directory-list-heading h2 { font-size: 21px; }
  .mnt-guide .mnt-directory-card h3 { font-size: 25px; }
}

/* Protein guide comparison: scrollable semantic table on narrow screens. */
.mnt-guide .mnt-protein-table { overflow-x:auto; margin:28px 0; border:1px solid #b6c8b8; border-radius:10px; }
.mnt-guide .mnt-protein-table table { width:100%; border-collapse:collapse; font-size:16px; }
.mnt-guide .mnt-protein-table caption { text-align:left; padding:16px; font-weight:700; color:var(--forest-heading); }
.mnt-guide .mnt-protein-table th,.mnt-guide .mnt-protein-table td { text-align:left; padding:14px 16px; border-top:1px solid #cdd7cb; }
.mnt-guide .mnt-protein-table thead { background:var(--forest-heading); color:var(--forest-panel); }
.mnt-guide .mnt-protein-table tbody tr:last-child { background:#e5eadc; font-weight:700; }
.mnt-guide .mnt-protein-table:focus-visible { outline:3px solid var(--forest-link); outline-offset:3px; }

/* Mixing guide: sequential preparation and troubleshooting. */
.mnt-guide .mnt-mixing-steps { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); list-style:none; padding:0; margin:32px 0; gap:24px; counter-reset:none; }
.mnt-guide .mnt-mixing-steps li { padding:24px 20px; border-top:3px solid var(--forest-link); background:var(--forest-panel); border-radius:0 0 8px 8px; }
.mnt-guide .mnt-step-number { display:block; font-family:"Forest Display",sans-serif; font-size:42px; font-weight:800; color:var(--forest-link); line-height:1.1; margin-bottom:20px; }
.mnt-guide .mnt-mixing-steps h3 { font-size:24px; margin:0 0 14px; }
.mnt-guide .mnt-mixing-steps p { font-size:16px; margin:0; }
.mnt-guide .mnt-mixing-help { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.6fr); gap:64px; align-items:start; }
.mnt-guide .mnt-mixing-note { padding:30px; border-left:3px solid var(--forest-link); }
.mnt-guide .mnt-mixing-note h3 { font-size:30px; }
.mnt-guide .mnt-mixing-note p { font-size:18px; }
@media(max-width:1000px) { .mnt-guide .mnt-mixing-steps { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:600px) { .mnt-guide .mnt-mixing-steps,.mnt-guide .mnt-mixing-help { grid-template-columns:1fr; gap:20px; } .mnt-guide .mnt-mixing-note { padding:12px 20px; } }

/* Collagen guide: two distinct presentations on equal footing. */
.mnt-guide .mnt-collagen-options { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px; }
.mnt-guide .mnt-collagen-options > section { background:var(--forest-panel); border-top:3px solid var(--forest-link); padding:32px; border-radius:0 0 10px 10px; min-width:0; }
.mnt-guide .mnt-collagen-options h3 { font-size:30px; line-height:1.15; margin-top:0; }
.mnt-guide .mnt-collagen-options p,.mnt-guide .mnt-collagen-options li { font-size:17px; }
.mnt-guide .mnt-collagen-options li { margin-block:12px; }
.mnt-guide .mnt-collagen-options ul { padding-left:22px; }
.mnt-guide .mnt-collagen-options .forest-button { margin-top:12px; white-space:normal; }
@media(max-width:650px) { .mnt-guide .mnt-collagen-options { grid-template-columns:1fr; gap:20px; } .mnt-guide .mnt-collagen-options > section { padding:24px; } }

/* Omega guide: proportional example of EPA and DHA within total oil. */
.mnt-guide .mnt-omega-bar { display:grid; grid-template-columns:18fr 12fr 70fr; min-height:58px; margin:24px 0 14px; border-radius:5px; overflow:hidden; }
.mnt-guide .mnt-omega-bar span { display:flex; align-items:center; justify-content:center; padding:8px 2px; font-size:12px; font-weight:700; background:var(--forest-link); color:#fff; }
.mnt-guide .mnt-omega-bar span:nth-child(2) { background:#ffcc18; color:var(--forest-heading); }
.mnt-guide .mnt-omega-bar span:nth-child(3) { background:#dbe3d4; color:var(--forest-text); }
/* Mayoreo contact: native channels and customer help. */
.mnt-contact {padding:40px 0 30px;}
.mnt-contact-hero {display:grid;grid-template-columns:1.2fr 1fr;gap:64px;align-items:center;padding:48px 0 72px;}
.mnt-contact h1 {font-size: var(--forest-title-size);line-height: 1.12;letter-spacing: -.03em;margin:16px 0 28px;}
.mnt-contact-eyebrow {font-size:12px;font-weight:750;letter-spacing:.12em;margin:0 0 18px;}
.mnt-contact-primary {background:var(--forest-heading);color:#faf6ec;padding:40px;border-radius:18px;}
.mnt-contact-primary h2 {color:#faf6ec;font-size:34px;line-height:1.12;margin:20px 0;}
.mnt-contact h2 i,.mnt-contact h3 i {font-size:.8em;margin-right:8px;}
.mnt-contact-primary p {line-height:1.65;}
.mnt-contact-primary .forest-button {margin:14px 0;}
.mnt-contact-primary .mnt-contact-number {font-size:23px;font-weight:650;margin:8px 0 18px;letter-spacing:.04em;}
.mnt-contact-primary small {display:block;font-size:13px;line-height:1.6;color:#d4e5db;}
.mnt-contact-channels {border-top:1px solid #d6ded4;padding:48px 0 64px;}
.mnt-contact-channels h2 {font-size:36px;max-width:580px;margin:0 0 32px;}
.mnt-contact-address {font-size:clamp(17px,2vw,23px);font-weight:700;overflow-wrap:anywhere;}
.mnt-contact-topics {display:grid;grid-template-columns:.8fr 1.2fr;gap:64px;padding:48px 0 64px;border-top:1px solid #d6ded4;}
.mnt-contact-topics h2 {font-size:42px;line-height:1.1;margin:0 0 22px;}
.mnt-contact-topics p {line-height:1.7;}
.mnt-contact-return {background:#e4eadc;border-radius:14px;padding:32px;display:flex;align-items:center;justify-content:space-between;gap:28px;}
.mnt-contact-return h2 {font-size:30px;margin:0 0 12px;}
.mnt-contact-return p {margin:0;max-width:620px;line-height:1.6;}
.mnt-contact-return .forest-button {flex-shrink:0;}
.mnt-contact-privacy {font-size:14px;margin:28px 0 0;}
@media(max-width:750px){.mnt-contact{padding-top:24px;}.mnt-contact-hero,.mnt-contact-topics{grid-template-columns:1fr;gap:28px;padding:32px 0 44px;}.mnt-contact-primary{padding:28px;}.mnt-contact-return{align-items:flex-start;flex-direction:column;padding:24px;}.mnt-contact-channels h2,.mnt-contact-topics h2{font-size:32px;}.mnt-contact-channels{padding:36px 0;}}
/* Three-step contact conversation. */
.mnt-contact-wizard {padding:36px 0 72px;}
.mnt-wizard-layout {display:grid;grid-template-columns:.9fr 1.1fr;gap:72px;align-items:start;padding:48px 0;}
.mnt-contact-wizard h1 {font-size: var(--forest-title-size);line-height: 1.12;letter-spacing: -.03em;margin: 24px 0 14px;}
.mnt-wizard-aside {font-size:17px;line-height:1.7;max-width:390px;margin:28px 0;}
.mnt-wizard-panel {padding:36px;min-width:0;}
.mnt-wizard-progress {display:flex;justify-content:space-between;gap:14px;font-size:12px;font-weight:650;}
.mnt-wizard-track {height:4px;background:#e4eadf;margin:18px 0 32px;border-radius:4px;overflow:hidden;}
.mnt-wizard-track span {display:block;width:33.333%;height:100%;background:var(--forest-link);transition:width .2s;}
.mnt-wizard-panel fieldset {border:0;padding:0;margin:0 0 24px;min-width:0;}
.mnt-wizard-panel legend {font-size: var(--forest-section-size);font-weight: 800;line-height:1.15;letter-spacing:-.025em;max-width:100%;}
.mnt-wizard-panel fieldset>p {font-size:16px;line-height:1.6;margin:16px 0 22px;}
.mnt-wizard-choices {display:grid;gap:12px;}
.mnt-wizard-choice {display:flex;align-items:center;gap:14px;padding:20px;border:1px solid #cbd8cc;border-radius:12px;cursor:pointer;min-height:68px;background:#fff;}
.mnt-wizard-choice:hover,.mnt-wizard-choice:has(input:checked) {background:#eef3e8;border-color:var(--forest-link);}
.mnt-wizard-choice:focus-within {outline:3px solid #dfad00;outline-offset:2px;}
.mnt-wizard-choice input {accent-color:var(--forest-link);width:18px;height:18px;flex-shrink:0;}
.mnt-wizard-choice span:nth-child(2) {flex:1;}
.mnt-wizard-choice strong {display:block;font-size:18px;line-height:1.3;}
.mnt-wizard-choice small {display:block;font-size:14px;line-height:1.5;margin-top:5px;}
.mnt-wizard-controls {display:flex;justify-content:space-between;gap:14px;align-items:center;margin-top:24px;}
.mnt-wizard-controls .mnt-text-link {border:0;background:none;padding:10px 0;cursor:pointer;}
.mnt-wizard-controls .forest-button {white-space:normal;}
.mnt-wizard-phone-label {display:block;font-size:15px;font-weight:650;margin:22px 0 10px;}
.mnt-wizard-phone {box-sizing:border-box;width:100%;padding:17px;border:1px solid #718878;border-radius:10px;font:inherit;font-size:22px;background:#fff;color:var(--forest-heading);}
.mnt-wizard-phone:focus {outline:3px solid #dfad00;outline-offset:2px;}
.mnt-wizard-phone+small {display:block;font-size:13px;line-height:1.5;margin:10px 0 18px;}
.mnt-wizard-summary {padding:12px 16px;border-left:3px solid var(--forest-link);background:#eef3e8;font-size:14px;line-height:1.5;}
.mnt-wizard-consent {display:flex;align-items:flex-start;gap:10px;font-size:13px;line-height:1.6;}
.mnt-wizard-consent input {margin-top:4px;width:18px;height:18px;flex-shrink:0;accent-color:var(--forest-link);}
.mnt-wizard-error {color:#9d2828;font-size:15px;line-height:1.6;}
.mnt-wizard-support {font-size:13px;line-height:1.6;border-top:1px solid var(--forest-border);padding-top:20px;margin:28px 0 0;}
.mnt-wizard-trap {position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden;}
.mnt-wizard-panel [hidden] {display:none!important;}
.mnt-wizard-success h2 {font-size:36px;line-height:1.15;}
@media(max-width:760px){.mnt-contact-wizard{padding:24px 0 40px;}.mnt-wizard-layout{grid-template-columns:1fr;gap:30px;padding:28px 0;}.mnt-wizard-aside{display:none;}.mnt-contact-wizard h1{font-size: var(--forest-title-size);
  margin: 24px 0 14px;
}.mnt-wizard-panel{padding:24px 20px;}.mnt-wizard-panel legend{font-size: var(--forest-section-size);
  font-weight: 800;
}.mnt-wizard-progress span:last-child{display:none;}.mnt-wizard-choice{padding:16px;}.mnt-wizard-controls{flex-wrap:wrap;}}
@media(prefers-reduced-motion:reduce){.mnt-wizard-track span{transition:none;}}

/* Quick quote: operational surface within Forest. */
.forest-quote{max-width:calc(var(--forest-workspace-width) + 64px);margin:0 auto;padding:34px 32px 64px;color:var(--forest-heading);display:grid;gap:16px;}
.forest-quote-heading{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:0;}
.forest-quote-heading h1{display:flex;align-items:center;gap:14px;font-size: var(--forest-title-size);line-height: 1.12;margin:0;font-family:var(--forest-display-font);}
.forest-quote-heading p{margin:5px 0 0;color:var(--forest-muted);max-width:none;white-space:normal;overflow:visible;}
.fq-account{padding:0 0 20px;border-bottom:1px solid var(--forest-border);margin:0 0 24px;font-size:14px;}.forest-quote a{color:var(--forest-link);text-underline-offset:3px;}
.fq-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:0;align-items:start;min-height:560px;}.fq-workspace{min-width:0;padding:32px;}
.forest-quote label{display:block;font-weight:650;font-size:14px;margin-bottom:7px;}.forest-quote input:not([type=checkbox]){width:100%;min-height:46px;border:1px solid #819b8c;border-radius:8px;background:#fff;color:var(--forest-heading);padding:10px 12px;font:inherit;caret-color:var(--forest-primary);}
.forest-quote input::placeholder{color:#52695e;}.forest-quote :focus-visible{outline:3px solid #007d5b;outline-offset:3px;}.forest-quote ::selection{background:#ffc321;color:var(--forest-heading);}
.forest-quote button{font:inherit;cursor:pointer;}.forest-quote button:disabled{opacity:.55;cursor:wait;}
.fq-primary,.fq-secondary{display:inline-flex;align-items:center;justify-content:center;gap:9px;padding:12px 16px;min-height:46px;border-radius:8px;font-weight:700!important;line-height:1.3;text-align:center;}
.fq-primary{border:1px solid var(--forest-button);background:var(--forest-button);color:var(--forest-heading);}.fq-primary:hover{background:#ffd45e;}.fq-secondary{border:1px solid #739382;background:transparent;color:var(--forest-heading);}.fq-secondary:hover{background:#e5ede3;}
.fq-search-wrap{position:relative;margin-bottom:28px;}.fq-search-box{display:flex;align-items:center;background:white;border:1px solid #819b8c;border-radius:8px;padding-left:16px;gap:4px;}.fq-search-box input{border:0!important;background:transparent!important;}.fq-search-wrap small{display:block;margin-top:8px;color:var(--forest-text);font-size:13px;}
.fq-results{position:absolute;top:100%;left:0;right:0;z-index:25;max-height:380px;overflow:auto;border:1px solid #819b8c;background:#fff;border-radius:8px;scrollbar-color:#739382 var(--forest-canvas);}.fq-results p{padding:12px 16px;}.fq-result{width:100%;border:0;border-bottom:1px solid #dce4d9;background:white;display:flex;justify-content:space-between;align-items:center;gap:16px;text-align:left;padding:13px 16px;color:var(--forest-heading);}.fq-result:hover,.fq-result:focus{background:#edf2e8;}.fq-result strong{display:block;font-size:14px;}.fq-result small{font-size:12px;margin-top:3px;}.fq-result-price{white-space:nowrap;font-size:13px;}
.fq-list-heading{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:16px 0;border-bottom:2px solid #004735;}.fq-list-heading h2{font-size:20px;margin:0;}.fq-list-heading h2 span{font:400 13px Inter,sans-serif;display:inline-block;margin-left:10px;color:var(--forest-text);}.fq-list-heading>span{font-size:12px;color:var(--forest-text);}
.fq-empty{text-align:center;padding:58px 20px;}.fq-empty>i{font-size:32px;color:var(--forest-link);}.fq-empty h3{font-size:21px;margin:18px 0 10px;}.fq-empty p{font-size:14px;color:var(--forest-text);line-height:1.7;}
.fq-item{display:grid;grid-template-columns:64px minmax(0,1fr) 70px 115px 40px;align-items:center;gap:14px;padding:18px 0;border-bottom:1px solid var(--forest-border);}.fq-item-image img{width:64px;height:64px;object-fit:contain;background:white;border-radius:8px;}.fq-item-detail{min-width:0;}.fq-item h3{font-size:14px;line-height:1.4;margin:0 0 5px;}.fq-item small{display:block;font-size:11px;overflow-wrap:anywhere;color:var(--forest-text);}.fq-item .fq-promotion{color:#006a4e;font-weight:650;margin-top:5px;}.fq-quantity span{font-size:11px;font-weight:400;display:block;margin-bottom:4px;}.fq-quantity{margin:0!important;}.fq-quantity input{padding:7px!important;text-align:center;}.fq-item-price{text-align:right;font-variant-numeric:tabular-nums;}.fq-item-price strong{display:block;font-size:15px;margin-top:4px;}.fq-remove{border:0;background:transparent;color:#5a7065;min-width:40px;min-height:44px;border-radius:6px;}.fq-remove:hover{background:#f8dfd5;color:#932e23;}
.fq-summary{padding:28px 24px;position:sticky;top:18px;background:var(--forest-soft);border-left:1px solid var(--forest-border);border-radius:0 var(--forest-panel-radius) var(--forest-panel-radius) 0;align-self:stretch;}.fq-summary h2{margin:0 0 25px;font-size:23px;}.fq-small{font-size:12px;line-height:1.6;color:var(--forest-text);}.fq-summary dl{margin:24px 0;}.fq-summary dl>div{display:flex;justify-content:space-between;gap:12px;margin:12px 0;}.fq-summary dd{margin:0;text-align:right;font-variant-numeric:tabular-nums;}.fq-total{border-top:1px solid var(--forest-border);padding-top:16px;font-weight:750;}.fq-total dd{font-size:22px;}.fq-summary .fq-primary,.fq-summary .fq-secondary{width:100%;margin-bottom:10px;}.fq-summary #fq-status{font-size:13px;line-height:1.6;}.forest-quote .fq-consent{display:flex;gap:9px;align-items:flex-start;margin:14px 0;font-size:12px;font-weight:400;line-height:1.5;}.fq-consent input{margin:3px 0 0;accent-color:#004735;width:17px;height:17px;flex:none;}.fq-note{font-size:13px;line-height:1.7;padding:18px 0;color:var(--forest-text);}
.fq-wizard{width:min(540px,calc(100% - 32px));padding:28px;max-height:90vh;overflow:auto;}.fq-wizard::backdrop{background:rgba(0,37,29,.65);}.fq-wizard header{display:flex;align-items:center;justify-content:space-between;gap:12px;}.fq-wizard header h2{display:flex;gap:10px;align-items:center;font-size:24px;margin:0;}.fq-wizard header button{border:0;background:transparent;min-width:44px;min-height:44px;color:var(--forest-heading);}.fq-wizard h3{font-size:22px;margin-top:28px;}.fq-wizard p{font-size:14px;line-height:1.7;}.fq-wizard-buttons{display:flex;gap:12px;margin-top:24px;}.fq-wizard #fq-next{width:100%;margin-top:12px;}
.forest-quote [hidden]{display:none!important;}
@media(max-width:1100px){.fq-layout{grid-template-columns:minmax(0,1fr) 300px;}.fq-item{grid-template-columns:48px minmax(0,1fr) 65px 40px;gap:10px;}.fq-item-image img{width:48px;height:48px;}.fq-item-price{text-align:left;display:flex;align-items:center;gap:12px;}.fq-remove{grid-row:1;}.fq-item-price strong{margin:0;}}
@media(max-width:780px){.forest-quote{padding:20px 16px 40px;

}.forest-quote-heading{align-items:flex-start;flex-direction:column;gap:16px;}.forest-quote-heading h1{font-size: var(--forest-title-size);}.fq-layout{display:block;min-height:0;}.fq-workspace{padding:22px 18px;}.fq-summary{position:static;margin-top:0;padding:24px 18px;border-left:0;border-top:1px solid var(--forest-border);border-radius:0 0 var(--forest-panel-radius) var(--forest-panel-radius);}.fq-list-heading{align-items:flex-start;flex-direction:column;gap:6px;}.fq-empty{padding:44px 12px;}.fq-results{max-height:310px;}.fq-wizard{padding:22px;}.fq-wizard header h2{font-size:21px;}.fq-result-price{font-size:12px;}.fq-result{gap:10px;padding:12px;}.fq-account{line-height:1.7;}}

.fq-item-image{width:64px;min-height:64px;display:flex;align-items:center;justify-content:center;}.fq-quantity{grid-column:3;}.fq-item-detail{grid-column:2;}.fq-item-price{grid-column:4;}.fq-remove{grid-column:5;}@media(max-width:1100px){.fq-item-image{width:48px;min-height:48px;}.fq-item-price{grid-column:2/4;}.fq-remove{grid-column:4;}}

.forest-quote .forest-template-crumb{color:var(--forest-text);}.fq-mobile-summary{display:none;}@media(max-width:780px){.fq-mobile-summary:not([hidden]){display:flex;position:fixed;bottom:16px;left:16px;right:16px;z-index:30;box-shadow:0 6px 22px rgba(0,37,29,.2);}.forest-quote{padding-bottom:88px;
}#fq-summary{scroll-margin-top:18px;}}
