@font-face {
  font-family: "Brunson";
  src: url("../assets/fonts/Brunson.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvena";
  src: url("../assets/fonts/Helvena-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --forest: #07190e;
  --forest-soft: rgba(12, 38, 24, 0.79);
  --lime: #a6ef43;
  --leaf: #52a90c;
  --cream: #ecf1df;
  --card: #e5f9bc;
  --heading-font: "Brunson", "Anton", Impact, sans-serif;
  --body-font: "Helvena", "Inter", Arial, sans-serif;
  --site-max: 1920px;
  --container-max: 1480px;
  --container-wide: 1920px;
  --container-narrow: 1180px;
  --page-gutter: clamp(20px, 5vw, 80px);
  --wide-gutter: clamp(20px, 2.5vw, 48px);
}

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

html {
  width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: #fff;
  font-family: var(--body-font);
}

body.menu-open {
  overflow: hidden;
}

.site-shell {
  position: relative;
  width: 100%;
  max-width: var(--site-max);
  margin-inline: auto;
  overflow-x: clip;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.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;
}

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

.container--wide {
  width: min(calc(100% - var(--wide-gutter) - var(--wide-gutter)), var(--container-wide));
}

.container--narrow {
  width: min(calc(100% - var(--page-gutter) - var(--page-gutter)), var(--container-narrow));
}

.amazon-hero {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: 100%;
  height: 100vh;
  min-height: 1000px;
  overflow-x: clip;
  overflow-y: visible;
  clip-path: inset(0 0 clamp(-90px, -6vw, -45px) 0);
  background: var(--forest);
}

.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-background {
  z-index: -3;
  background: url("../assets/hero-waterwall.png") center center / cover no-repeat;
  transform: scale(1.035);
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 57% 38%, rgba(27, 61, 42, 0.08) 0, rgba(2, 17, 9, 0.13) 34%, rgba(2, 14, 8, 0.55) 100%),
    linear-gradient(90deg, rgba(2, 15, 8, 0.48) 0%, rgba(2, 18, 10, 0.09) 55%, rgba(2, 15, 8, 0.42) 100%),
    rgba(2, 24, 12, 0.14);
}

.site-header {
  position: absolute;
  z-index: 30;
  top: clamp(14px, 1.7vw, 32px);
  left: 2.2%;
  right: 2.2%;
  height: clamp(58px, 6.7vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(8px, 1.25vw, 18px);
  border: 1px solid rgba(147, 214, 93, 0.04);
  border-radius: 50px;
  /* background: rgba(14, 42, 27, 0.77); */
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
  margin-left: auto;
}

.site-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}

.site-logo img {
  display: block;
  width: clamp(78px, 8vw, 104px);
  height: auto;
}

.menu-toggle {
  width: clamp(42px, 4.5vw, 54px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: rgba(39, 118, 77, 0.64);
  transition: background-color 180ms ease, transform 180ms ease;
}

.menu-toggle:hover {
  background: rgba(70, 151, 88, 0.75);
  transform: scale(1.04);
}

.menu-toggle img {
  width: 20px;
  height: auto;
}

.delivery-button,
.shop-button,
.subscriber-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.delivery-button {
  min-width: clamp(138px, 14vw, 178px);
  min-height: 43px;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(101, 199, 22, 0.85);
  border-radius: 999px;
  background: rgba(9, 26, 13, 0.13);
  color: var(--cream);
  transition: color 180ms ease, background-color 180ms ease;
}

.delivery-button:hover,
.delivery-button:focus-visible {
  color: #0b1c0d;
  background: var(--lime);
}

.delivery-short {
  display: none;
}

.header-cart-link {
  position: relative;
  width: clamp(42px, 4.5vw, 48px);
  height: clamp(42px, 4.5vw, 48px);
  display: grid;
  place-items: center;
  color: #edf7e3;
  border: 1px solid rgba(101, 199, 22, 0.85);
  border-radius: 50%;
  background: rgba(9, 26, 13, 0.13);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.header-cart {
  position: relative;
}

.header-cart-link:hover,
.header-cart-link:focus-visible {
  color: #0b1c0d;
  background: var(--lime);
  transform: translateY(-1px);
}

.header-cart-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.header-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 19px;
  min-height: 19px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b1c0d;
  border-radius: 999px;
  background: var(--lime);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.header-cart-preview {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: clamp(290px, 25vw, 360px);
  max-height: min(70vh, 520px);
  padding: 14px;
  border: 1px solid rgba(101, 199, 22, 0.18);
  border-radius: 22px;
  background: rgba(9, 26, 13, 0.97);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  pointer-events: none;
  z-index: 50;
}

.header-cart:hover .header-cart-preview,
.header-cart:focus-within .header-cart-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-cart-preview__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-cart-preview__header strong {
  font-size: 0.98rem;
  font-weight: 500;
}

.header-cart-preview__header span {
  color: rgba(237, 247, 227, 0.68);
  font-size: 0.78rem;
}

.header-cart-preview__items {
  display: grid;
  gap: 10px;
  max-height: 260px;
  overflow: auto;
  padding-right: 2px;
}

.header-cart-preview__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  color: #f5fbef;
}

.header-cart-preview__item + .header-cart-preview__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.header-cart-preview__thumb {
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.header-cart-preview__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-cart-preview__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.header-cart-preview__title {
  font-size: 0.84rem;
  line-height: 1.25;
}

.header-cart-preview__price {
  color: rgba(237, 247, 227, 0.66);
  font-size: 0.72rem;
}

.header-cart-preview__empty {
  padding: 14px 2px 8px;
  color: rgba(237, 247, 227, 0.82);
}

.header-cart-preview__empty p {
  margin: 0 0 12px;
  font-size: 0.88rem;
}

.header-cart-preview__empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #58920c;
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.header-cart-preview__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-cart-preview__footer span {
  color: rgba(237, 247, 227, 0.68);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.header-cart-preview__footer strong {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
}

.header-cart-preview__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.header-cart-preview__actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  color: #fff;
  border: 1px solid rgba(101, 199, 22, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.header-cart-preview__items::-webkit-scrollbar {
  width: 8px;
}

.header-cart-preview__items::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.header-cart-preview__items::-webkit-scrollbar-thumb {
  background: rgba(134, 197, 59, 0.55);
  border-radius: 999px;
}

.header-cart-preview__actions a.is-active {
  border-color: #58920c;
  background: #58920c;
}

.foliage {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
}

.foliage img {
  display: block;
  width: 100%;
  height: auto;
}

.foliage-left-top {
  top: -7%;
  left: -3%;
  /* width: clamp(220px, 25vw, 410px); */
}

.foliage-right-top {
  top: -5%;
  right: -1%;
  /* width: clamp(155px, 18vw, 290px); */
}

.foliage-left-bottom {
  left: -4.5%;
  bottom: -15%;
  /* width: clamp(165px, 18vw, 280px); */
}

.foliage-right-bottom {
  right: -8%;
  bottom: -36%;
  /* width: clamp(345px, 38vw, 610px); */
}

.hero-content {
  position: absolute;
  z-index: 8;
  top: 23.5%;
  left: 50%;
  height: 48%;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  transform: translateX(-50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  margin-top: 5%;
  padding-left: 100px;
}

.hero-title {
  margin: 0;
  color: var(--cream);
  font-family: var(--heading-font);
  font-size: clamp(3rem, 5.55vw, 5.7rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.title-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.title-line > span {
  display: inline-block;
  padding-right: 0.04em;
  filter: drop-shadow(1px 3px 2px rgba(2, 13, 7, 0.18));
}

.title-line-one > span {
  color: #c8cec3;
  background: linear-gradient(90deg, #8d9889 0%, #b5beb0 48%, #e0e4dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-line-two > span {
  color: #a5dc67;
  background: linear-gradient(90deg, #52673f 0%, #7e9854 42%, #b9df76 69%, #c0ef6a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-line-three > span {
  color: #63c50b;
  background: linear-gradient(90deg, #2f6608 0%, #4a9008 43%, #71bd0c 72%, #9cdd2c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-parrot {
  position: absolute;
  z-index: 3;
  top: -47%;
  left: -5.6%;
  width: 230px;
  height: auto;
  pointer-events: none;
}

.shop-button {
  min-width: 118px;
  min-height: 44px;
  margin-top: 1.1rem;
  padding: 0.8rem 2.35rem;
  border: 1px solid #55b80b;
  border-radius: 999px;
  background: rgba(4, 27, 10, 0.48);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.shop-button:hover,
.shop-button:focus-visible {
  color: #0b1b0c;
  background: var(--lime);
  transform: translateY(-2px);
}

.bottle-stage {
  position: relative;
  top: -14%;
  left: -12%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(18deg);
  filter: drop-shadow(18px 22px 20px rgba(0, 0, 0, 0.35));
}

.bottle-crop {
  position: relative;
  width: clamp(150px, 16.5vw, 242px);
  height: clamp(355px, min(43vw, 80svh), 570px);
  overflow: hidden;
}

.hero-bottle {
  position: absolute;
  top: -2%;
  left: -50px;
  display: block;
  height: 95%;
  width: auto;
  max-width: none;
}

.travel-bottle {
  position: absolute;
  z-index: 25;
  display: block;
  overflow: hidden;
  pointer-events: none;
  filter: drop-shadow(18px 22px 20px rgba(0, 0, 0, 0.3));
  transform-origin: 50% 50%;
  will-change: top, left, width, height, transform;
}

.travel-bottle-image {
  position: absolute;
  top: -1%;
  left: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: 95%;
  transform: translateX(-47.5%);
}

.travel-bottle-enabled .bottle-stage,
.travel-bottle-enabled .nature-bottle-frame {
  visibility: hidden;
}

.rock-layer {
  position: absolute;
  /* z-index: 7; */
  right: 0;
  bottom: -1px;
  left: 0;
  height: 35%;
  pointer-events: none;
}

.rock-layer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center top;
}

.subscriber-card {
  position: absolute;
  z-index: 18;
  left: 0%;
  right:0%;
  bottom: 11.5%;
  width: min(68%, 900px);
  min-height: clamp(82px, 9.3vw, 106px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem clamp(26px, 3.5vw, 52px);
  overflow: hidden;
  color: #12200e;
  border: 1px solid #C8CE53;
  border-radius: 999px;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.36), rgb(225 255 184 / 70%) 48%, rgb(150 170 110 / 64%)), #77845d;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  margin:0px auto;
}

.subscriber-stat {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 19px);
}

.subscriber-icon {
  width: clamp(45px, 4.4vw, 58px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #58920C;
}

.subscriber-icon img {
  width: 46%;
  height: auto;
}

.subscriber-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: #192D00;
}

.subscriber-label {
  font-size: clamp(0.56rem, 0.7vw, 0.68rem);
}

.subscriber-copy strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.subscriber-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.subscriber-action a {
  min-height: 42px;
  padding: 0.7rem 1.55rem;
  color: #fff;
  border-radius: 999px;
  background: #4A780D;
  transition: background-color 180ms ease, transform 180ms ease;
}

.subscriber-action a:hover,
.subscriber-action a:focus-visible {
  background: #347804;
  transform: translateY(-2px);
}

.subscriber-action span {
  font-size: 10px;
  color: #192D00;
}

.nature-section {
  position: relative;
  width: 100%;
  height: clamp(650px, 74.3vw, 1427px);
  margin-top: -10px;
  overflow: visible;
  color: #092a16;
}

.nature-splash {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-color: #d9f0f8;
  background-image: url("../assets/water-splash.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  clip-path: polygon(
    0 0,
    15% 0.35%,
    50% 1.4%,
    85% 0.35%,
    100% 0,
    100% 96%,
    85% 98%,
    65% 99%,
    50% 100%,
    35% 99%,
    15% 98%,
    0 96%
  );
  will-change: transform;
}

.nature-splash-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nature-inner {
  position: relative;
  height: 100%;
}

.nature-title {
  position: absolute;
  z-index: 4;
  top: 9.5%;
  left: 50%;
  width: min(76%, 1050px);
  margin: 0;
  color: #347d08;
  font-family: var(--heading-font);
  font-size: clamp(3.1rem, 6.4vw, 7rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.012em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.nature-title span {
  display: block;
}

.nature-title span:last-child {
  color: #58b500;
}

.nature-feature {
  position: absolute;
  z-index: 5;
  width: min(19%, 265px);
}

.nature-feature-left {
  left: 13.7%;
}

.nature-feature-right {
  right: 13.7%;
  width: min(15%, 225px);
}

.nature-feature-top {
  top: 36%;
}

.nature-feature-bottom {
  top: 53.6%;
}

.feature-rule {
  display: block;
  width: 16px;
  height: 1px;
  margin-bottom: clamp(8px, 0.75vw, 14px);
  background: rgba(19, 70, 38, 0.7);
}

.nature-feature h3 {
  color: #192D00;
  margin: 0 0 clamp(8px, 0.85vw, 14px);
  font-size: clamp(0.92rem, 1.18vw, 1.35rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.nature-feature p {
  margin: 0;
  max-width: 180px;
  color: #192D00;
  font-size: clamp(0.65rem, 0.76vw, 0.87rem);
  line-height: 1.4;
}

.nature-product {
  position: absolute;
  z-index: auto;
  inset: 0;
  pointer-events: none;
}

.nature-bottle-frame {
  position: absolute;
  z-index: 5;
  top: 30%;
  left: 50%;
  width: clamp(125px, 14vw, 210px);
  height: clamp(350px, 42vw, 760px);
  overflow: hidden;
  filter: drop-shadow(14px 20px 18px rgba(17, 49, 54, 0.24));
  transform: translateX(-50%);
  will-change: transform;
}

.nature-bottle {
  position: absolute;
  top: -1%;
  left: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: 103%;
  transform: translateX(-47.5%);
}

.nature-rock {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -0.4%;
  left: 0;
  display: block;
  width: min(56%, 1040px);
  height: auto;
  margin: auto;
  filter: drop-shadow(0 18px 22px rgba(9, 35, 22, 0.18));
}

.products-section {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: 100%;
  min-height: clamp(720px, 78vw, 1200px);
  margin-top: clamp(-250px, -17vw, -90px);
  overflow: hidden;
  color: #10230f;
}

.products-water,
.products-green-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.products-water {
  z-index: -2;
  background: url("../assets/Liquid 1.png") center bottom / 100% auto no-repeat;
}

.products-green-shape {
  z-index: -1;
  background: url("../assets/green-bg.png") center / 100% 100% no-repeat;
}

.products-inner {
  position: relative;
  min-height: inherit;
  padding: 300px 5% clamp(150px, 18vw, 300px);
}

.products-title {
  margin: 0;
  color: #397f00;
  font-family: var(--heading-font);
  font-size: clamp(3rem, 5.6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.products-title span {
  display: block;
}

.products-title span:last-child {
  color: #59bd00;
}

.products-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.25vw, 24px);
  margin-top: clamp(30px, 4vw, 64px);
  scrollbar-width: none;
}

.products-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 0;
  padding: clamp(10px, 1vw, 16px);
  overflow: hidden;
  border-radius: clamp(22px, 2vw, 34px);
  background: #dceff5;
  box-shadow: 0 18px 38px rgba(0, 12, 6, 0.14);
}

.product-visual {
  position: relative;
  height: auto;
  aspect-ratio: 1.05 / 1;
  overflow: hidden;
  border-radius: clamp(17px, 1.5vw, 27px);
  background-color: #f7f7f7;
  background-image: url("../assets/bottle-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.product-badges {
  position: absolute;
  z-index: 3;
  top: clamp(10px, 1.2vw, 18px);
  left: clamp(12px, 1.35vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(5px, 0.55vw, 8px);
}

.product-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: clamp(24px, 2.35vw, 34px);
  padding: 4px clamp(10px, 1vw, 15px);
  color: #18351e;
  border-radius: 999px;
  background: #DFE8EC;
  font-size: clamp(0.56rem, 0.68vw, 0.78rem);
  font-weight: 500;
}

.product-badges i {
  width: clamp(10px, 0.9vw, 14px);
  height: clamp(10px, 0.9vw, 14px);
  flex: 0 0 auto;
  background: url("../assets/water-drop.png") center / contain no-repeat;
}

.product-size {
  position: absolute;
  z-index: 3;
  top: clamp(11px, 1.2vw, 18px);
  right: clamp(12px, 1.35vw, 20px);
  min-width: clamp(78px, 7.2vw, 110px);
  padding: clamp(8px, 0.8vw, 12px) 12px;
  color: #09180d;
  border: 1px solid #86c950;
  border-radius: clamp(9px, 0.9vw, 13px);
  background: rgba(244, 249, 247, 0.9);
  font-size: 12px;
  text-align: center;
}

.product-size::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 7px 5px -3px;
  border-radius: 50%;
  background: #56bde8;
  vertical-align: middle;
}

.product-size strong {
  font-size: 1.35em;
  font-weight: 500;
}

.product-bottle-crop {
  position: absolute;
  top: 7%;
  bottom: 20%;
  left: 50%;
  width: clamp(72px, 7.8vw, 118px);
  overflow: hidden;
  transform: translateX(-50%);
}

.product-bottle-crop img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: 102%;
  transform: translateX(-47.5%);
}
.purchase-options {
  position: absolute;
  z-index: 4;
  right: clamp(12px, 1.4vw, 21px);
  bottom: clamp(12px, 1.4vw, 21px);
  left: clamp(12px, 1.4vw, 21px);
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 5px;
}

.purchase-options a,
.purchase-options button,
.add-to-cart,
.product-arrow {
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.purchase-options a,
.purchase-options button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  min-height: clamp(38px, 3vw, 58px);
  padding: 7px 9px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: #173900;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.purchase-options button:nth-child(2) {
    background-color: #152302;
}

.purchase-options a:hover,
.purchase-options a:focus-visible,
.purchase-options button:hover,
.purchase-options button:focus-visible {
  background: #152302;
  transform: translateY(-1px);
}

.product-summary {
  min-height: clamp(66px, 7vw, 98px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(12px, 1.25vw, 18px) clamp(12px, 1.35vw, 20px) 8px;
}

.product-summary h3 {
  margin: 0 0 4px;
  font-size: clamp(0.72rem, 0.84vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
}

.product-summary p {
  margin: 0;
  font-size: clamp(0.48rem, 0.54vw, 0.64rem);
  line-height: 1.3;
}

.product-price {
  flex: 0 0 auto;
  font-size: clamp(1.05rem, 1.35vw, 1.55rem);
  font-weight: 500;
}

.add-to-cart {
  width: calc(100% - clamp(24px, 2.7vw, 40px));
  min-height: clamp(42px, 3.2vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto clamp(2px, 0.35vw, 6px);
  padding: 9px clamp(18px, 1.7vw, 27px);
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: #58920C;
  font-size: 11px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.add-to-cart:hover,
.add-to-cart:focus-visible {
  background: #347804;
  transform: translateY(-1px);
}

.add-to-cart svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.add-to-cart.is-loading,
.product-detail-add-cart.is-loading,
.shop-add-cart.is-loading,
.single_add_to_cart_button.is-loading {
  position: relative;
  pointer-events: none;
}

.add-to-cart.is-loading::after,
.product-detail-add-cart.is-loading::after,
.shop-add-cart.is-loading::after,
.single_add_to_cart_button.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: amazonWaterSpin 0.75s linear infinite;
}

.add-to-cart.is-loading span,
.product-detail-add-cart.is-loading span,
.shop-add-cart.is-loading span,
.single_add_to_cart_button.is-loading span {
  opacity: 0.9;
}

.add-to-cart.is-loading svg,
.product-detail-add-cart.is-loading svg,
.shop-add-cart.is-loading svg {
  opacity: 0;
}

@keyframes amazonWaterSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.product-arrow {
  position: absolute;
  z-index: 5;
  top: 28%;
  width: clamp(40px, 4vw, 58px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: rgba(21, 48, 23, 0.68);
  font-size: 1rem;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.product-arrow:hover,
.product-arrow:focus-visible {
  color: #5dbd08;
  border-color: #4c9b00;
  background: rgba(21, 48, 23, 0.68);
}

.product-arrow-prev {
  left: 5.3%;
}

.product-arrow-next {
  right: 5.3%;
}

.minerals-section {
  position: relative;
  z-index: 5;
  isolation: isolate;
  width: 100%;
  height: clamp(680px, 78vw, 1200px);
  margin-top: clamp(-210px, -10vw, -80px);
  overflow: hidden;
  color: #284753;
  background: #121a10;
  padding-bottom:300px;
}

.minerals-water-layer {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: url("../assets/bg-white.png") center top / 100% 100% no-repeat;
  will-change: transform;
}

.minerals-inner {
  position: relative;
  height: 100%;
}

.minerals-bottle-frame {
  position: absolute;
  z-index: 3;
  top: 24%;
  left: 46%;
  width: clamp(155px, 17vw, 275px);
  height: 68%;
  overflow: hidden;
  filter: drop-shadow(18px 25px 18px rgba(29, 91, 110, 0.2));
  transform: translateX(-50%) rotate(28deg);
  transform-origin: center;
  will-change: transform;
}

.minerals-bottle-frame img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: 103%;
  transform: translateX(-47.5%);
}

.mineral-list {
  position: absolute;
  z-index: 5;
  inset: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mineral-bubble {
  --bubble-size: clamp(72px, 7.2vw, 116px);
  position: absolute;
  width: var(--bubble-size);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 157, 239, 0.68);
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 23%, rgba(255, 255, 255, 0.95) 0 6%, transparent 18%),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.9), rgba(229, 250, 255, 0.68) 58%, rgba(141, 214, 250, 0.36) 100%);
  box-shadow:
    inset 9px 10px 17px rgba(255, 255, 255, 0.64),
    inset -8px -10px 18px rgba(64, 175, 238, 0.13),
    0 7px 15px rgba(45, 139, 185, 0.11);
  text-align: center;
  cursor: pointer;
  will-change: transform;
}

.mineral-bubble:hover,
.mineral-bubble:focus-visible,
.mineral-bubble.is-active {
  border-color: rgba(35, 141, 220, 0.95);
  box-shadow:
    inset 9px 10px 17px rgba(255, 255, 255, 0.72),
    inset -8px -10px 18px rgba(64, 175, 238, 0.18),
    0 0 0 4px rgba(255, 255, 255, 0.45),
    0 10px 20px rgba(45, 139, 185, 0.16);
}

.mineral-bubble::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 12%;
  width: 18%;
  height: 10%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(-35deg);
  filter: blur(1px);
}

.mineral-symbol {
  position: absolute;
  top: -7%;
  left: -4%;
  min-width: 34px;
  padding: 4px 8px;
  color: #fff;
  border-radius: 999px;
  background: #429bc2;
  font-size: clamp(0.47rem, 0.55vw, 0.64rem);
  font-weight: 600;
  line-height: 1;
}

.mineral-bubble strong {
  color: #4b6871;
  font-size: clamp(0.9rem, 1.2vw, 1.35rem);
  font-weight: 400;
  line-height: 1;
}

.mineral-bubble small {
  margin-top: 5px;
  color: #779098;
  font-size: clamp(0.5rem, 0.55vw, 0.66rem);
}

.mineral-nitrate {
  top: 27%;
  left: 40%;
}

.mineral-calcium {
  top: 35%;
  left: 68%;
}

.mineral-fluoride {
  top: 46%;
  left: 33%;
}

.mineral-potassium {
  top: 57%;
  left: 16%;
}

.mineral-chloride {
  top: 66%;
  left: 33%;
}

.mineral-sulphate {
  top: 59%;
  left: 60%;
}

.mineral-magnesium {
  top: 58%;
  left: 78%;
}

.mineral-sodium {
  top: 82%;
  left: 45%;
}

.mineral-bicarbonate {
  --bubble-size: clamp(86px, 8.4vw, 136px);
  top: 76%;
  left: 63%;
}

.mineral-note {
  position: absolute;
  z-index: 12;
  top: 34%;
  left: 73.5%;
  width: min(18%, 290px);
  padding: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  color: #192d00;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  background: rgba(175, 213, 227, 0.93);
  box-shadow: 0 14px 30px rgba(55, 125, 151, 0.13);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: translateY(8px);
}

.mineral-note-header {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.mineral-note-body {
  padding: 10px 15px;
}

.mineral-note h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #192D00;
  line-height: 1.1;
}

.mineral-note p {
  color: #192D00;
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
}

.quality-section,
.faq-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  color: #13260d;
}

.quality-section {
  margin-top: -320px;
  padding-bottom:80px;
  z-index: 5;
}

.quality-blue-base,
.quality-water-layer,
.faq-blue-base,
.faq-water-layer {
  position: absolute;
  pointer-events: none;
}

.quality-blue-base {
  z-index: -2;
  top: 8%;
  right: 0;
  bottom: 0;
  left: 0;
}

.quality-water-layer,
.faq-water-layer {
  z-index: -1;
  inset: 0;
  background: url("../assets/bg-white.png") center top / 100% 100% no-repeat;
  will-change: transform;
}

.quality-inner,
.faq-inner {
  position: relative;
  height: 100%;
}

.quality-inner {
  padding-top: clamp(190px, 25vw, 390px);
}

.quality-title,
.faq-title {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.012em;
  text-align: center;
  text-transform: uppercase;
}

.quality-title {
  color: #397c00;
  font-size: clamp(3.1rem, 5.7vw, 6.6rem);
}

.quality-title span,
.faq-title span {
  display: block;
}

.quality-title span:last-child,
.faq-title span:last-child {
  color: #58b900;
}

.quality-comparison {
  width: min(64%, 940px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(46px, 6vw, 100px);
  margin: clamp(48px, 5.5vw, 90px) auto 0;
}

.quality-card {
  position: relative;
  min-height: clamp(420px, 43vw, 650px);
  display: flex;
  flex-direction: column;
  padding-top: clamp(30px, 3.5vw, 55px);
  overflow: visible;
  border: 1px solid;
  border-bottom-width: 7px;
  border-radius: clamp(18px, 2vw, 30px);
  background: rgba(255, 255, 255, 0.48);
  padding-bottom:45px;
}

.quality-card-standard {
  border-color: #ff6f72;
}

.quality-card-amazon {
  border-color: #0A9CE1;
}

.quality-card h3 {
  margin: 0;
  padding: 0 16px clamp(14px, 1.4vw, 22px);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.quality-card ul {
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.quality-card li {
  min-height: clamp(38px, 3.7vw, 54px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px clamp(16px, 2vw, 30px);
  border-bottom: 2px solid #fff;
  font-size: 11px;
  line-height: 1.3;
}
.quality-card-standard li {
    background-image: linear-gradient(to right, #fae8e7, #fcf4f4);
}
.quality-card-amazon li {
    background-image: linear-gradient(to right, #d6e7f2, #eef4f7);
}

.quality-card li:last-child {
    border: 0px;
}
.quality-card li img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  object-fit: contain;
}

.standard-bottle,
.quality-bottle-crop {
  position: relative;
  width: clamp(92px, 9vw, 142px);
  height: clamp(190px, 20vw, 300px);
  margin: 0 auto clamp(22px, 2.5vw, 38px);
}

.standard-bottle {
  display: grid;
  place-items: center;
}

.standard-bottle img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: 88%;
  transform: translate(-50%, -50%);
}

.quality-bottle-crop {
  overflow: hidden;
  filter: drop-shadow(8px 12px 10px rgba(34, 95, 68, 0.17));
}

.quality-bottle-crop img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: 103%;
  transform: translateX(-47.5%);
}

.quality-card-badge {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 50%;
    padding: 10px 25px;
    color: #fff;
    border-radius: 999px;
    background: #079ee0;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
}

.quality-subscribe {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  min-width: clamp(155px, 16vw, 235px);
  padding: 13px 22px;
  color: #fff;
  border-radius: 999px;
  background: #58920C;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, 50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.quality-subscribe:hover,
.quality-subscribe:focus-visible {
  background: #347804;
  transform: translate(-50%, calc(50% - 2px));
}

.faq-section {
  background: #f7fbfc;
}

.faq-blue-base {
  z-index: -2;
  top: 7%;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #afd8e7 0%, #d9eef4 67%, #fff 100%);
}

.faq-inner {
  padding-top: clamp(170px, 22vw, 340px);
  padding-bottom: 80px;
}

.faq-title {
  color: #3b8100;
  font-size: clamp(3rem, 5.4vw, 6.2rem);
}

.faq-list {
  width: min(58%, 860px);
  margin: clamp(42px, 4.2vw, 70px) auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(40, 79, 51, 0.22);
}
.faq-item.is-open {
    border-bottom: 1px solid #192D00;
}
article.faq-item.is-open h3 {
    border-bottom: 1px solid #192D00;
}
.faq-item h3 {
  margin: 0;
}
.faq-item button {
  width: 100%;
  min-height: clamp(42px, 4vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px clamp(16px, 1.8vw, 28px);
  cursor: pointer;
  color: #142b10;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
}

.faq-item button i {
  flex: 0 0 auto;
  color: #568351;
  font-style: normal;
  font-size: 1rem;
}

.faq-answer {
  height: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  height: auto;
}

.faq-answer > div {
  padding: 6px clamp(16px, 1.8vw, 28px) clamp(18px, 2vw, 30px);
}
article.faq-item.is-open .faq-answer div {
    padding: 25px;
}
.faq-answer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.48;
}

/* Reusable promotional CTA; suitable for a WordPress template part. */
.site-shop-cta {
  position: relative;
  isolation: isolate;
  min-height: clamp(230px, 26.5vw, 510px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0c1c0e url("../assets/stock-up-bg.png") center / cover no-repeat;
}

.site-shop-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(3, 19, 8, 0.62), rgba(3, 18, 8, 0.67)),
    radial-gradient(circle at 50% 45%, rgba(37, 92, 23, 0.08), rgba(1, 10, 4, 0.36));
}

.site-shop-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 45px 20px;
  text-align: center;
}

.site-shop-cta h2 {
  margin: 0;
  color: #397c00;
  font-family: var(--heading-font);
  font-size: clamp(2.7rem, 5.2vw, 6.2rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.site-shop-cta h2 span {
  display: block;
}

.site-shop-cta h2 span:last-child {
  color: #5dbb05;
}

.site-shop-cta a {
  min-width: clamp(105px, 9vw, 145px);
  min-height: clamp(34px, 3vw, 45px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(18px, 2vw, 30px);
  padding: 8px 20px;
  color: #fff;
  border-radius: 999px;
  background: #5b9413;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.55rem, 0.6vw, 0.7rem);
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.site-shop-cta a:hover,
.site-shop-cta a:focus-visible {
  background: #72b91a;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .site-shop-cta {
    min-height: 280px;
  }

  .site-shop-cta h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }
}

.site-footer {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background: #101A10;
}

.footer-watermark {
  position: absolute;
  z-index: -1;
  right: 0%;
  bottom: 0%;
  left: 0%;
  overflow: hidden;
  color: rgba(20, 48, 28, 0.35);
  background: linear-gradient(
    180deg,
    rgba(7, 18, 10, 0.18) 0%,
    rgba(13, 35, 20, 0.34) 48%,
    rgba(24, 62, 34, 0.58) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--heading-font);
  font-size: 27rem;
  line-height: 0.7;
  text-align: center;
  white-space: nowrap;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(55px, 6vw, 85px) 0 clamp(36px, 4vw, 58px);
}

.footer-logo {
  width: clamp(105px, 11vw, 145px);
  height: clamp(58px, 6.5vw, 78px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.footer-logo img {
  display: block;
  width: 86%;
  height: auto;
}

.footer-top h2 {
  margin: clamp(28px, 3vw, 42px) 0 clamp(18px, 2vw, 28px);
  color: #fff;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 400;
}

.newsletter-form {
  width: min(100%, 440px);
  min-height: 42px;
  display: flex;
  padding: 2px;
  border: 1px solid #5daa05;
  border-radius: 999px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 10px 17px;
  color: #fff;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.24);
}

.newsletter-form button {
  min-width: 132px;
  padding: 9px 20px;
  cursor: pointer;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: #315d05;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.newsletter-status {
  min-height: 1em;
  margin: 8px 0 0;
  color: #8ed63e;
  font-size: 0.66rem;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.footer-socials a {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.footer-socials img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-main {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) 1px 0.55fr minmax(280px, 1fr);
  gap: clamp(45px, 7vw, 110px);
  padding: clamp(36px, 4vw, 56px) max(12%, calc((100% - 1480px) / 2));
  border-top: 1px solid rgba(92, 131, 102, 0.18);
  border-bottom: 1px solid rgba(92, 131, 102, 0.18);
}

.footer-main h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
}

.footer-main p,
.footer-main a {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
  line-height: 1.7;
  font-style: normal;
}

.footer-about p,
.footer-contact p {
  margin: 0;
}

.footer-divider {
  width: 1px;
  min-height: 120px;
  background: rgba(114, 148, 120, 0.18);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #8ad33c;
}

.footer-contact {
  font-style: normal;
}

.footer-copyright {
  margin: 0;
  padding: 24px 10%;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  text-align: center;
}

.menu-overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  background: rgba(0, 12, 6, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.offcanvas-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(88vw, 420px);
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 5vw, 48px);
  overflow-y: auto;
  visibility: hidden;
  color: #edf6e5;
  background:
    radial-gradient(circle at 0 100%, rgba(93, 159, 29, 0.28), transparent 48%),
    #0b2a19;
  box-shadow: 18px 0 50px rgba(0, 0, 0, 0.38);
}

.menu-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-topline img {
  width: 112px;
  height: auto;
  filter: brightness(1.45);
}

.menu-close {
  width: 44px;
  height: 44px;
  padding: 0 0 0px;
  cursor: pointer;
  color: #fff;
  border: 1px solid rgba(166, 239, 67, 0.45);
  border-radius: 50%;
  background: transparent;
  font: 300 2rem/1 Arial, sans-serif;
}

.offcanvas-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 30px;
}

.offcanvas-menu nav ul,
.offcanvas-menu nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offcanvas-menu nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offcanvas-menu nav .offcanvas-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.offcanvas-menu nav a {
  display: inline-flex;
  padding: 0.65rem 0;
  font-family: var(--heading-font);
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease, padding-left 160ms ease;
}

.offcanvas-menu nav a:hover,
.offcanvas-menu nav a:focus-visible {
  padding-left: 8px;
  color: var(--lime);
}

.offcanvas-menu > p {
  margin: auto 0 0;
  color: rgba(237, 246, 229, 0.6);
  font-size: 0.75rem;
  line-height: 1.55;
  text-transform: uppercase;
}

.page-anchor {
  height: 1px;
  background: #07190e;
}

@media (max-width: 1024px) {
  /* .heading-parrot,
  .contact-title-parrot,
  .faq-title-parrot {
    display: none;
  } */
}

@media (max-width: 1100px) {
  .hero-content {
    width: 82%;
    grid-template-columns: 1.2fr 0.8fr;
  }

  .subscriber-card {
    left: 13%;
    width: min(74%, 820px);
  }

  .nature-feature-left {
    left: 13.7%;
  }

  .nature-feature-right {
    right: 13.7%;
  }

  .products-inner {
    padding-right: 6%;
    padding-left: 6%;
  }
}

@media (max-width: 900px) {
  .container,
  .container--wide,
  .container--narrow {
    width: 100%;
  }

  .products-section {
    min-height: 900px;
    margin-top: -82px;
  }

  .products-inner {
    padding: 150px 0 190px;
  }

  .products-title {
    padding: 0 70px;
  }

  .products-track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(76vw, 390px);
    gap: 16px;
    margin-top: 36px;
    padding: 0 9vw;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-padding-inline: 9vw;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    scroll-snap-align: center;
  }

  .product-visual {
    height: auto;
    aspect-ratio: 1.05 / 1;
  }

  .product-arrow {
    position: absolute;
    top: 245px;
  }

  .product-arrow-prev {
    left: 18px;
  }

  .product-arrow-next {
    right: 18px;
  }

  .minerals-section {
    height: 850px;
    margin-top: -75px;
  }

  .minerals-bottle-frame {
    top: 28%;
    left: 47%;
    width: 185px;
    height: 60%;
  }

  .mineral-bubble {
    --bubble-size: clamp(68px, 10vw, 90px);
  }

  .mineral-bicarbonate {
    --bubble-size: clamp(78px, 12vw, 105px);
  }

  .mineral-note {
    left: 70%;
    width: 25%;
  }

  .quality-section {
    height: auto;
    min-height: 980px;
  }

  .quality-inner {
    padding: 210px 0 100px;
  }

  .quality-comparison {
    width: 82%;
    gap: 28px;
  }

  .faq-section {
    height: auto;
    min-height: 720px;
  }

  .faq-inner {
    padding: 180px 0 90px;
  }

  .faq-list {
    width: 72%;
  }

  .footer-main {
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 40px;
    padding-right: 8%;
    padding-left: 8%;
  }

  .footer-divider {
    display: none;
  }
  a.delivery-button {
    display: none;
  }
}

@media (max-width: 760px) {
  /* .amazon-hero {
    height: max(100svh, 760px);
  } */

  .site-header {
    top: 14px;
    left: 14px;
    right: 14px;
    height: 58px;
    gap: 10px;
  }

  .site-logo img {
    width: 72px;
  }

  .menu-toggle {
    width: 42px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cart-link {
    width: 38px;
    height: 38px;
  }

  .header-cart-link svg {
    width: 16px;
    height: 16px;
  }

  .delivery-button {
    min-width: 102px;
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    font-size: 0.6rem;
  }

  .delivery-long {
    display: none;
  }

  .delivery-short {
    display: inline;
  }

  .header-cart-preview {
    display: none;
  }

  .foliage-left-top {
    top: 0%;
    left: 0%;
    width: 220px;
  }

  .foliage-right-top {
    top: 0%;
    right: 0%;
    width: 150px;
  }

  .foliage-left-bottom {
    bottom: 0%;
    left: 0%;
    width: 175px;
  }

  .foliage-right-bottom {
    right: 0%;
    bottom: 0%;
    width: 175px;
  }

  .hero-content {
    top: 19%;
    left: 8%;
    width: 84%;
    height: 55%;
    display: block;
    transform: none;
  }

  .hero-copy {
    z-index: 3;
  }

  .hero-title {
    font-size: clamp(2.25rem, 10.2vw, 3.2rem);
  }

  .heading-parrot {
      top: -60%;
      left: 0px;
      right:0px;
      margin: 0px auto;
      width: 130px;
  }
  .shop-button {
    min-height: 40px;
    margin-top: 0.85rem;
    padding: 0.7rem 1.1rem;
    font-size: 0.63rem;
  }

  .bottle-stage {
    position: absolute;
    top: auto;
    left: auto;
    z-index: -1;
    right: -7%;
    bottom: -9%;
    width: 49%;
    height: 58%;
    opacity: 0.92;
  }

  .bottle-crop {
    width: min(32vw, 150px);
    height: min(75vw, 350px);
  }

  .rock-layer {
    height: 27%;
  }

  .subscriber-card {
    left: 0px;
    bottom: 5.5%;
    width: calc(100% - 40px);
    min-height: 132px;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 34px;
  }

  .subscriber-action {
    gap: 0.35rem;
  }

  .subscriber-action a {
    min-height: 36px;
    padding: 0.55rem 1.25rem;
    font-size: 0.6rem;
  }

  .subscriber-action span {
    font-size: 0.52rem;
  }

  .nature-section {
    height: auto;
    padding: 86px 22px 420px;
  }

  .nature-splash {
    clip-path: polygon(
      0 0,
      15% 0.25%,
      50% 0.75%,
      85% 0.25%,
      100% 0,
      100% 98%,
      50% 100%,
      0 98%
    );
    background-position: 42% center;
    background-size: auto 100%;
  }

  .nature-splash-video {
    object-position: 42% center;
  }

  .nature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
    height: auto;
  }

  .nature-title,
  .nature-feature {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .nature-title {
    grid-column: 1 / -1;
    font-size: clamp(2.55rem, 11.5vw, 4.4rem);
  }

  .nature-title span {
    display: inline;
  }

  .nature-feature {
    width: auto;
    padding: 16px;
    border: 1px solid rgba(33, 92, 53, 0.15);
    border-radius: 16px;
    background: rgba(226, 246, 251, 0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nature-feature-top {
    order: 2;
  }

  .nature-feature-bottom {
    order: 3;
  }

  .nature-feature h3 {
    font-size: 0.95rem;
  }

  .nature-feature p {
    font-size: 0.68rem;
  }

  .nature-product {
    inset: auto 0;
    top: calc(100% + 24px);
    height: 360px;
  }

  .nature-bottle-frame {
    top: -10px;
    bottom: auto;
    width: 115px;
    height: 310px;
  }

  .nature-rock {
    bottom: 2px;
    width: min(720px, 138%);
    max-width: none;
    transform: translateX(-19%);
  }

  .products-section {
    min-height: 850px;
    margin-top: -65px;
  }

  .products-water {
    background-size: auto 34%;
  }

  .products-title {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .minerals-section {
    height: 960px;
    margin-top: -58px;
  }

  .minerals-water-layer {
    background-size: auto 100%;
    background-position: 46% top;
  }

  .minerals-bottle-frame {
    top: 27%;
    left: 50%;
    width: 170px;
    height: 54%;
  }

  .mineral-nitrate {
    top: 24%;
    left: 17%;
  }

  .mineral-calcium {
    top: 27%;
    left: 70%;
  }

  .mineral-fluoride {
    top: 43%;
    left: 8%;
  }

  .mineral-potassium {
    top: 60%;
    left: 7%;
  }

  .mineral-chloride {
    top: 74%;
    left: 18%;
  }

  .mineral-sulphate {
    top: 54%;
    left: 68%;
  }

  .mineral-magnesium {
    top: 69%;
    left: 72%;
  }

  .mineral-sodium {
    top: 84%;
    left: 42%;
  }

  .mineral-bicarbonate {
    top: 78%;
    left: 61%;
  }

  .mineral-note {
    top: 13%;
    left: 56%;
    width: 38%;
  }

  .quality-section {
    min-height: 1420px;
  }

  .quality-blue-base,
  .faq-blue-base {
    top: 5%;
  }

  .quality-water-layer,
  .faq-water-layer {
    background-position: 46% top;
    background-size: auto 100%;
  }

  .quality-inner {
    padding: 180px 20px 100px;
  }

  .quality-title,
  .faq-title {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .quality-comparison {
    width: min(100%, 410px);
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .quality-card {
    min-height: 500px;
  }

  .faq-section {
    min-height: 780px;
  }

  .faq-inner {
    padding: 165px 0 80px;
  }

  .faq-list {
    width: calc(100% - 36px);
    margin-top: 34px;
  }

  .faq-item button {
    min-height: 50px;
    font-size: 0.72rem;
  }

  .faq-answer p {
    font-size: 0.62rem;
  }

  .footer-top {
    width: calc(100% - 36px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 38px 28px;
  }

  .footer-main h3 {
    margin-bottom: 12px;
  }

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

  .footer-links h3 {
    grid-column: 1 / -1;
  }

  .footer-watermark {
    bottom: -4%;
    font-size: 46vw;
  }
  button.product-arrow.product-arrow-prev,button.product-arrow.product-arrow-next {
    display: none;
  }
  .hero-bottle {
    left: 0px;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: clamp(2.2rem, 10.2vw, 2.8rem);
  }

  /* .heading-parrot {
    left: -7%;
  } */

  .bottle-stage {
    right: -12%;
    bottom: -8%;
  }

  .nature-section {
    padding-inline: 16px;
  }

  .nature-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nature-title {
    margin-bottom: 18px;
  }

  .nature-feature {
    grid-column: 1;
  }

  .products-inner {
    padding-top: 130px;
  }

  .products-title {
    padding: 0 58px;
  }

  .products-track {
    grid-auto-columns: 84vw;
    padding-inline: 8vw;
    scroll-padding-inline: 8vw;
  }

  .product-arrow {
    top: 220px;
    width: 38px;
  }

  .product-arrow-prev {
    left: 12px;
  }

  .product-arrow-next {
    right: 12px;
  }

  .minerals-section {
    height: 1020px;
  }

  .mineral-bubble {
    --bubble-size: 66px;
  }

  .mineral-bicarbonate {
    --bubble-size: 82px;
  }

  .mineral-note {
    top: 12%;
    left: 48%;
    width: 47%;
  }

  .quality-section {
    min-height: 1320px;
  }

  .quality-inner {
    padding-top: 145px;
  }

  .quality-card {
    min-height: 455px;
  }

  .standard-bottle,
  .quality-bottle-crop {
    width: 92px;
    height: 190px;
  }

  .faq-inner {
    padding-top: 135px;
  }

  .newsletter-form button {
    min-width: 105px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .footer-copyright {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 0.64rem;
  }

  .offcanvas-menu nav a {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }
}

@media (max-width: 1024px) {
  .hero-content {
    text-align: center;
  }

  .hero-content .hero-copy {
    padding-left: 0;
  }

  .bottle-stage {
    right: 0;
    left: 0;
    margin: 0 auto;
  }

  .nature-rock {
    width: 100%;
    margin: 0 auto;
  }

  .nature-product {
    display: none;
  }

  .nature-section {
    height: auto;
    padding-bottom: 100px;
  }

  .products-section {
    min-height: auto;
    margin-top: 0;
    background-color: #121a10;
  }

  .products-section .products-inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  section.minerals-section {
    margin-top: 0;
    background-color: #d1e4ee;
    padding-bottom:0px;
  }

  section.minerals-section .minerals-water-layer,
  .products-section .products-water,
  section#subscriptions .quality-water-layer,
  .faq-section,
  .faq-section .faq-water-layer {
    background-image: none;
  }

  section#subscriptions .quality-water-layer {
    background-color: #d1e4ee;
  }

  section#subscriptions {
    min-height: auto;
    margin-top: 0;
    padding-bottom: 100;
  }

  .quality-inner,
  .faq-inner {
    padding: 0;
  }

  .faq-section {
    min-height: auto;
    padding: 100px 0;
  }

  .faq-blue-base {
    background: none;
  }

  .footer-watermark {
    bottom: -4%;
    font-size: 30vw;
  }
}

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

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

  .hero-background {
    transform: none;
  }

  .hero-video {
    display: none;
  }

  .nature-splash-video {
    display: none;
  }

  .foliage,
  .bottle-stage,
  .nature-splash,
  .nature-bottle-frame,
  .travel-bottle {
    will-change: auto;
  }
}
