:root {
  --green-950: #143a16;
  --green-900: #1c4b1b;
  --green-800: #24621f;
  --green-700: #317c25;
  --green-600: #439436;
  --green-100: #eaf3e5;
  --green-050: #f4f8f0;
  --cream: #f7f4e9;
  --cream-2: #efe9d9;
  --text: #172117;
  --muted: #667166;
  --border: #e4e7df;
  --white: #fff;
  --danger: #e84534;
  --yellow: #e9a81a;
  --shadow: 0 14px 40px rgba(20, 58, 22, .08);
  --radius: 22px;
  --container: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}


/* TOPBAR */

.topbar {
  background: var(--green-900);
  color: #fff;
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar-left span + span {
  position: relative;
}

.topbar-left span + span::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 2px;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.28);
}


/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.header-main {
  min-height: 104px;
  display: grid;
  grid-template-columns: 210px minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-symbol {
  width: 58px;
  height: 58px;
  position: relative;
  border-radius: 50%;
  background:
    radial-gradient(circle, #d2db3a 0 15%, #3b7a2b 16% 26%, transparent 27%);
}

.brand-symbol span {
  width: 8px;
  height: 23px;
  border-radius: 8px;
  background: var(--green-700);
  position: absolute;
  left: 25px;
  top: 1px;
  transform-origin: 4px 28px;
}

.brand-symbol span:nth-child(1) { transform: rotate(0deg); }
.brand-symbol span:nth-child(2) { transform: rotate(45deg); }
.brand-symbol span:nth-child(3) { transform: rotate(90deg); }
.brand-symbol span:nth-child(4) { transform: rotate(135deg); }
.brand-symbol span:nth-child(5) { transform: rotate(180deg); }
.brand-symbol span:nth-child(6) { transform: rotate(225deg); }
.brand-symbol span:nth-child(7) { transform: rotate(270deg); }
.brand-symbol span:nth-child(8) { transform: rotate(315deg); }

.brand-copy {
  line-height: .87;
}

.brand-copy strong {
  font-size: 22px;
  letter-spacing: .5px;
  color: #284326;
}

.brand-copy small {
  display: block;
  margin-top: 7px;
  letter-spacing: 4px;
  font-size: 10px;
  font-weight: 800;
  color: var(--green-700);
}

.search {
  display: flex;
  height: 52px;
  border: 1px solid #d9ddd4;
  border-radius: 15px;
  overflow: hidden;
  background: #fafbf8;
  transition: .2s;
}

.search:focus-within {
  background: #fff;
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(67,148,54,.09);
}

.search input {
  border: 0;
  outline: 0;
  flex: 1;
  min-width: 0;
  padding: 0 19px;
  background: transparent;
  color: var(--text);
}

.search button {
  width: 62px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: var(--green-700);
  font-size: 29px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.action {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  cursor: pointer;
  padding: 5px;
  position: relative;
}

.action-icon {
  font-size: 26px;
  line-height: 1;
}

.action b,
.action small {
  display: block;
  text-align: left;
  white-space: nowrap;
}

.action b {
  font-size: 13px;
}

.action small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

.cart-bubble {
  position: absolute;
  top: -5px;
  left: 20px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: var(--green-600);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: var(--green-700);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 22px;
}


/* NAV */

.nav {
  background: var(--green-900);
  color: #fff;
}

.nav-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.25vw, 42px);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar {
  display: none;
}

.nav a {
  font-size: 13px;
  font-weight: 650;
  opacity: .95;
}

.nav a:hover {
  opacity: 1;
}

.nav-all {
  font-weight: 800 !important;
}

.offer-link {
  color: #ff5d4d;
}


/* HERO */

.hero {
  padding-top: 24px;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) 1.58fr;
  gap: 16px;
}

.hero-side {
  display: grid;
  gap: 16px;
}

.mini-banner,
.hero-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.mini-banner {
  min-height: 225px;
  padding: 31px;
  display: flex;
  align-items: center;
}

.mini-banner > div:first-child {
  position: relative;
  z-index: 3;
  width: 58%;
}

.mini-banner h2 {
  margin: 5px 0 8px;
  font-size: clamp(26px, 2.1vw, 39px);
  line-height: .98;
  letter-spacing: -1.2px;
}

.mini-banner p {
  font-size: 13px;
  line-height: 1.55;
  color: #435043;
  margin: 0 0 17px;
}

.mini-natural {
  background:
    linear-gradient(110deg, #eff4de 0%, #edf0dc 55%, #e0e7d3 100%);
}

.mini-natural img {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 52%;
  transform: rotate(2deg);
}

.mini-offers {
  background:
    linear-gradient(120deg, #f4eddf 0%, #f6f0e4 60%, #ece4d1 100%);
}

.coconut-art {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45% !important;
  height: 100%;
}

.coconut {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 42%, #8f653a 43% 55%, #4a301d 56%);
}

.c1 {
  width: 110px;
  height: 110px;
  right: 27px;
  bottom: 26px;
}

.c2 {
  width: 75px;
  height: 75px;
  right: 107px;
  bottom: 75px;
}

.leaf {
  position: absolute;
  width: 100px;
  height: 32px;
  background: #638d45;
  border-radius: 100% 0 100% 0;
}

.leaf1 {
  right: 78px;
  bottom: 20px;
  transform: rotate(25deg);
}

.leaf2 {
  right: 5px;
  bottom: 85px;
  transform: rotate(-30deg);
}

.eyebrow {
  font-size: 11px;
  color: var(--green-700);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-main {
  min-height: 466px;
  padding: 58px;
  background:
    radial-gradient(circle at 78% 25%, rgba(255,255,255,.78), transparent 35%),
    linear-gradient(125deg, #eef2e3 0%, #e9edda 42%, #dce5d3 100%);
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 47%;
  position: relative;
  z-index: 3;
}

.hero-copy h1 {
  font-size: clamp(45px, 4.2vw, 72px);
  line-height: .98;
  letter-spacing: -3px;
  margin: 10px 0 22px;
  color: #173716;
}

.hero-copy p {
  max-width: 440px;
  font-size: 16px;
  line-height: 1.65;
  color: #3c4b3a;
  margin: 0 0 26px;
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  background: var(--green-700);
  color: #fff;
  border-radius: 8px;
  font-weight: 750;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(49,124,37,.17);
}

.btn:hover,
.add-cart:hover,
.newsletter button:hover {
  background: var(--green-800);
}

.btn-small {
  min-height: 38px;
  padding-inline: 15px;
  font-size: 12px;
}

.hero-product-scene {
  position: absolute;
  width: 53%;
  right: 0;
  top: 0;
  bottom: 0;
}

.hero-bottle {
  position: absolute;
  width: min(390px, 80%);
  right: 9%;
  bottom: -18%;
  z-index: 3;
  filter: drop-shadow(0 25px 25px rgba(32,55,28,.18));
}

.hero-circle {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  right: 7%;
  top: 12%;
  background: rgba(255,255,255,.44);
}

.hero-leaf {
  position: absolute;
  background: #557c3e;
  width: 180px;
  height: 62px;
  border-radius: 100% 0 100% 0;
  opacity: .45;
}

.leaf-a {
  right: 2%;
  bottom: 4%;
  transform: rotate(-32deg);
}

.leaf-b {
  right: 39%;
  top: 5%;
  transform: rotate(31deg);
}

.dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(49,124,37,.28);
}

.dots .active {
  background: var(--green-700);
}


/* GENERAL SECTIONS */

.section {
  padding-top: 42px;
}

.section-heading {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(26px, 2.2vw, 38px);
  letter-spacing: -1.2px;
  margin: 5px 0 0;
}

.text-link {
  font-size: 13px;
  font-weight: 750;
  color: var(--green-800);
}


/* CATEGORIES */

.category-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-card {
  text-align: center;
  font-size: 14px;
}

.category-art {
  height: 165px;
  margin-bottom: 10px;
  border-radius: 25px;
  background: var(--green-050);
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform .2s, box-shadow .2s;
}

.category-card:hover .category-art {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-art img {
  width: 130px;
}

.category-pills {
  display: flex;
  justify-content: center;
  gap: 3px;
  font-size: 47px;
  color: #a7a458;
}

.bowl {
  font-size: 68px;
}


/* PRODUCTS */

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.product-card,
.compact-product {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: .2s;
}

.product-card:hover,
.compact-product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-image {
  height: 230px;
  background: #fafbf7;
  position: relative;
  display: grid;
  place-items: center;
}

.product-image img {
  height: 210px;
  width: 100%;
  object-fit: contain;
}

.badge,
.discount {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  padding: 6px 9px;
  border-radius: 6px;
}

.badge {
  background: var(--green-700);
}

.heart {
  position: absolute;
  top: 9px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: #687266;
}

.heart.active {
  color: #e14a3b;
}

.product-info {
  padding: 16px;
}

.product-info h3,
.compact-product h3 {
  font-size: 14px;
  line-height: 1.35;
  min-height: 38px;
  margin: 0 0 8px;
}

.rating {
  color: var(--yellow);
  font-size: 13px;
  margin: 5px 0 11px;
}

.rating small {
  color: #7a8278;
}

.price {
  display: block;
  font-size: 18px;
  margin-bottom: 13px;
}

.old-price {
  font-size: 12px;
  color: #747b73;
  text-decoration: line-through;
  margin-right: 7px;
}

.sale-price,
.compact-product strong {
  color: #d62e25;
}

.add-cart {
  width: 100%;
  min-height: 39px;
  border: 0;
  border-radius: 7px;
  background: var(--green-700);
  color: #fff;
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
}


/* TRUST */

.trust-strip {
  margin-top: 38px;
  min-height: 108px;
  padding: 18px 28px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, #eef5e6, #f6f8ee, #e9f3df);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid #cdd9c3;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item > span {
  font-size: 34px;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item small {
  margin-top: 5px;
  color: #596359;
  font-size: 11px;
  line-height: 1.45;
}


/* OFFERS */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.compact-product {
  position: relative;
  padding: 16px;
}

.compact-product img {
  width: 100%;
  height: 185px;
  object-fit: contain;
}

.compact-product h3 {
  min-height: 38px;
}

.compact-product .add-cart {
  width: auto;
  min-width: 112px;
  margin-top: 12px;
}

.discount {
  background: var(--danger);
}


/* WELLNESS */

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.wellness-card {
  height: 150px;
  border-radius: 18px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-weight: 800;
  box-shadow: inset 0 -80px 80px rgba(0,0,0,.25);
}

.wellness-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.digestive::before {
  background:
    radial-gradient(circle at 20% 25%, #b3c397, transparent 22%),
    linear-gradient(140deg, #7e9974, #425c3e);
}

.energy::before {
  background:
    radial-gradient(circle at 60% 25%, #d8d19a, transparent 20%),
    linear-gradient(135deg, #92a36f, #536d3e);
}

.water::before {
  background:
    radial-gradient(circle at 45% 30%, #aee6ef, transparent 18%),
    linear-gradient(145deg, #72bbca, #31788b);
}

.care::before {
  background:
    radial-gradient(circle at 60% 20%, #f0d9c2, transparent 20%),
    linear-gradient(140deg, #c3a786, #7e8469);
}

.daily::before {
  background:
    radial-gradient(circle at 40% 25%, #b4c4a3, transparent 25%),
    linear-gradient(140deg, #6d8662, #3e5541);
}

.nutrition::before {
  background:
    radial-gradient(circle at 40% 30%, #d7b06c, transparent 23%),
    linear-gradient(140deg, #8ba267, #536d47);
}


/* NEWSLETTER */

.newsletter {
  margin-top: 36px;
  margin-bottom: 0;
  min-height: 112px;
  border-radius: 18px 18px 0 0;
  padding: 22px 32px;
  background:
    linear-gradient(90deg, #e9f3df, #f2f5ea);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.newsletter-icon {
  font-size: 38px;
  color: var(--green-700);
}

.newsletter h2 {
  font-size: 19px;
  margin: 0 0 5px;
}

.newsletter p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.newsletter form {
  display: flex;
  width: min(520px, 48%);
  height: 46px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid #d9ded5;
  border-right: 0;
  border-radius: 9px 0 0 9px;
  padding: 0 16px;
  outline: 0;
}

.newsletter button {
  width: 135px;
  border: 0;
  border-radius: 0 9px 9px 0;
  color: #fff;
  background: var(--green-700);
  font-weight: 750;
  cursor: pointer;
}


/* FOOTER */

.footer {
  background: var(--green-950);
  color: #fff;
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 55px;
}

.brand-footer .brand-copy strong,
.brand-footer .brand-copy small {
  color: #fff;
}

.brand-footer .brand-symbol {
  background:
    radial-gradient(circle, #d2db3a 0 15%, #e2e87f 16% 26%, transparent 27%);
}

.brand-footer .brand-symbol span {
  background: #d8e191;
}

.footer-brand p {
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  max-width: 290px;
  font-size: 13px;
}

.footer h3 {
  font-size: 14px;
  margin: 4px 0 18px;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) p {
  display: block;
  margin: 0 0 11px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.footer-bottom {
  margin-top: 38px;
  min-height: 62px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.48);
  font-size: 11px;
}


/* FLOATS / INTERACTION */

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #26d367;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  z-index: 40;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 25px);
  padding: 12px 18px;
  border-radius: 10px;
  background: #172817;
  color: #fff;
  z-index: 100;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}


/* RESPONSIVE */

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 185px 1fr auto;
    gap: 18px;
  }

  .hide-tablet {
    display: none;
  }

  .hero-main {
    padding: 42px;
  }

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

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

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

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


@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar-right {
    display: none;
  }

  .topbar-left {
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    white-space: nowrap;
  }

  .header-main {
    min-height: 82px;
    grid-template-columns: 1fr auto auto;
  }

  .brand-symbol {
    width: 45px;
    height: 45px;
    transform: scale(.78);
    transform-origin: left center;
    margin-right: -8px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
    letter-spacing: 2.5px;
  }

  .header-main > .search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 14px;
  }

  .header-actions .action:not(.cart-action) {
    display: none;
  }

  .cart-action span:last-child {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: block;
  }

  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
    gap: 17px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-side {
    grid-template-columns: 1fr 1fr;
    grid-row: 2;
  }

  .hero-main {
    min-height: 450px;
  }

  .hero-copy {
    width: 58%;
  }

  .hero-copy h1 {
    font-size: 49px;
  }

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

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

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .newsletter {
    align-items: stretch;
    flex-direction: column;
  }

  .newsletter form {
    width: 100%;
  }
}


@media (max-width: 560px) {
  .topbar {
    font-size: 11px;
  }

  .topbar-left span:nth-child(1),
  .topbar-left span:nth-child(3) {
    display: none;
  }

  .header-main {
    gap: 8px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-main {
    min-height: 490px;
    padding: 33px 27px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 280px;
    font-size: 43px;
    letter-spacing: -2.3px;
  }

  .hero-copy p {
    width: 85%;
    font-size: 14px;
  }

  .hero-product-scene {
    width: 60%;
    height: 54%;
    top: auto;
    bottom: 0;
  }

  .hero-bottle {
    width: 225px;
    right: -18%;
    bottom: -10%;
  }

  .hero-circle {
    width: 220px;
    height: 220px;
    right: -25%;
    top: 9%;
  }

  .dots {
    left: 28px;
  }

  .hero-side {
    grid-template-columns: 1fr;
  }

  .mini-banner {
    min-height: 190px;
    padding: 25px;
  }

  .category-row {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .category-card {
    flex: 0 0 132px;
  }

  .category-art {
    height: 132px;
  }

  .section {
    padding-top: 32px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .product-grid {
    gap: 10px;
  }

  .product-image {
    height: 170px;
  }

  .product-image img {
    height: 160px;
  }

  .product-info {
    padding: 12px;
  }

  .product-info h3 {
    font-size: 13px;
    min-height: 51px;
  }

  .rating {
    font-size: 11px;
  }

  .price {
    font-size: 16px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #cdd9c3;
    padding: 12px 0 18px;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .compact-product img {
    height: 135px;
  }

  .wellness-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scrollbar-width: none;
  }

  .wellness-card {
    flex: 0 0 185px;
  }

  .newsletter {
    border-radius: 14px 14px 0 0;
    padding: 24px 20px;
  }

  .newsletter-copy {
    align-items: flex-start;
  }

  .newsletter form {
    height: auto;
    flex-direction: column;
    gap: 8px;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d9ded5;
    border-radius: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
}
