/* Forest theme */
: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 {
  max-width: var(--forest-max);
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 20px;
}
.forest-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--forest-header);
  color: var(--forest-header-text);
}
.forest-header-main {
  max-width: var(--forest-max);
  height: 76px;
  display: grid;
  grid-template-columns: 190px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: auto;
  padding: 0 20px;
}
.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 {
  height: 42px;
  display: flex;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
}
.forest-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  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;
}
.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-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 .sf-cart-trigger {
  border-color: transparent;
  background: transparent;
  color: var(--forest-header-text);
}
.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: clamp(43px, 5.5vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.035em;
  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);
}
.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 {
  max-width: var(--forest-max);
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 15px;
  margin: auto;
  padding: 70px 20px;
}
.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 {
  max-width: var(--forest-max);
  margin: auto;
  padding: 50px 20px 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;
}
.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-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-actions > a {
    display: none;
  }
  .forest-brand {
    font-size: 16px;
  }
  .forest-hero h1 {
    font-size: 43px;
  }
  .forest-benefits {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }
  .forest-footer {
    flex-direction: column;
  }
  .forest-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .forest-topline > div {
    min-height: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* 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 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:8px;margin-top:10px}.forest-product-thumbs button{width:48px;height:48px;padding:3px;border:1px solid color-mix(in srgb,var(--forest-primary) 22%,transparent);border-radius:7px;background:#fff}.forest-product-thumbs img{width:100%;height:100%;object-fit:contain}
.forest-product-copy h1{margin:5px 0 6px;color:var(--forest-heading);font-size:clamp(26px,2vw,34px);line-height:1.05;letter-spacing:-.025em;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-button)}
.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-surface);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}.forest-product-levels strong{margin-top:8px;text-align:right;font-size:20px;line-height:1.1}
.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:color-mix(in srgb,var(--forest-surface) 88%,transparent)}.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-surface);box-shadow:0 3px 8px rgba(0,45,34,.1)}.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:color-mix(in srgb,var(--forest-button) 14%,#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-surface)}.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-tabs{display:flex;gap:8px;padding:15px 0;border-top:1px solid color-mix(in srgb,var(--forest-primary) 15%,transparent)}.forest-product-tabs a{min-width:110px;padding:9px 15px;border-radius:7px;background:var(--forest-surface);color:var(--forest-heading);text-align:center;font-size:12px;font-weight:800}.forest-product-tabs a.is-active{background:var(--forest-primary);color:#fff}
.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 2px;font-size:23px}.forest-product-content h3{margin:14px 0 3px;color:var(--forest-heading);font-size:13px}.forest-product-content p{max-width:none;margin:0;color:var(--forest-text);font-size:12px;line-height:1.5}.forest-product-content>div p{text-align:justify;text-justify:inter-word;hyphens:auto}.forest-product-content .forest-product-unlabeled{margin-top:14px}.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-related{padding-top:10px}.forest-related>h2{font-size:27px}.forest-related>div{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px}.forest-related article{overflow:hidden;border-radius:8px;background:var(--forest-surface)}.forest-related article>a{display:block;padding:9px;color:var(--forest-text)}.forest-related article a>div{display:grid;place-items:center;aspect-ratio:1;background:#fff}.forest-related img{width:100%;height:100%;object-fit:contain}.forest-related article a>div span{font-size:54px;font-weight:900;color:#9abbb1}.forest-related small{display:inline-block;margin-top:8px;padding:3px 6px;border-radius:999px;background:color-mix(in srgb,var(--forest-button) 20%,#fff);font-size:9px;font-weight:800}.forest-related h3{min-height:36px;margin:7px 0;font-size:11px;line-height:1.3}.forest-related article>a>strong{display:block;color:var(--forest-primary);text-align:right;font-size:15px}
@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:29px;white-space:normal}.forest-product-levels{grid-template-columns:1fr}.forest-product-levels button{min-height:52px}.forest-product-content{gap:20px}.forest-product-tabs{overflow:auto}.forest-related>div{grid-template-columns:repeat(2,1fr)}}

/* Vistas auxiliares y vista previa Forest */
/* Forest template previews */
.forest-template-main {
  max-width: 1180px;
  margin: auto;
  padding: 28px 24px 70px;
}
.forest-template-main > h1 {
  margin: 8px 0 24px;
  color: var(--forest-heading);
  font-size: 36px;
}
.forest-template-crumb {
  margin: 0;
  color: var(--forest-text);
  font-size: 13px;
}
.forest-template-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ddd8ca;
  border-radius: 10px;
  background: var(--forest-surface);
}
.forest-template-toolbar span {
  margin-right: auto;
}
.forest-template-toolbar button {
  padding: 8px 12px;
  border: 1px solid #d4d0c5;
  border-radius: 8px;
  background: #fff;
}
.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: 28px;
  }
}
/* 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-preview-account {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  max-width: 850px;
}
.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;
  }
}
