:root {
  --ink: #11325c;
  --ink-soft: #47607f;
  --surface: #f7fbff;
  --surface-strong: #e9f5ff;
  --white: #ffffff;
  --line: rgba(17, 50, 92, 0.1);
  --accent: #1590ff;
  --accent-strong: #0057c8;
  --sun: #ffcf5f;
  --mint: #d9fff0;
  --shadow: 0 24px 80px rgba(17, 50, 92, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content: min(1124px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

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

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

p {
  line-height: 1.65;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.04;
}

.shell-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(17, 50, 92, 0.06);
}

body[data-page="home"] .shell-header {
  position: absolute;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.shell-header__inner,
.shell-footer__inner,
.hero,
.section,
.page-shell,
.page-hero {
  width: var(--content);
  margin: 0 auto;
}

.shell-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 106px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 178px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.shell-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.shell-nav a {
  font-size: 1.06rem;
  font-weight: 700;
  color: #142869;
}

.shell-nav a.is-active {
  color: #62b9ff;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(44, 119, 187, 0.12);
}

.cart-link__icon {
  position: relative;
  width: 22px;
  height: 17px;
  border: 3px solid #102167;
  border-top: 0;
  border-radius: 0 0 7px 7px;
}

.cart-link__icon::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: -9px;
  height: 13px;
  border: 3px solid #102167;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.cart-link__badge {
  position: absolute;
  right: -2px;
  top: -3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #0c93ff;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 18px 40px rgba(0, 87, 200, 0.25);
}

.button--ghost {
  border: 1px solid rgba(17, 50, 92, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(1rem, 1fr)
    minmax(340px, 490px)
    minmax(90px, 210px)
    minmax(260px, 460px)
    minmax(1rem, 1fr);
  gap: 0;
  min-height: 724px;
  margin: 0;
  padding: 118px 0 54px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #effaff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: #ffffff;
}

.hero::before {
  top: -44px;
  left: -130px;
  width: min(58vw, 980px);
  height: 285px;
  border-bottom-right-radius: 88% 74%;
  transform: rotate(-8deg);
}

.hero::after {
  right: -170px;
  bottom: -76px;
  width: min(40vw, 570px);
  height: 245px;
  border-top-left-radius: 100% 86%;
}

.hero__copy {
  grid-column: 2;
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  color: var(--accent-strong);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), var(--accent));
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.hero h1 {
  display: grid;
  gap: 0.02em;
  width: min-content;
  color: #0b279c;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(3.05rem, 3.08vw, 3.72rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  white-space: nowrap;
}

.hero__lead,
.page-hero p,
.section__intro p {
  max-width: 62ch;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.hero__lead {
  max-width: 520px;
  margin-top: 1.05rem;
  color: #3fa9ff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(2rem, 2.06vw, 2.42rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__cta {
  min-width: 160px;
  min-height: 48px;
  margin-top: 1.15rem;
  margin-left: 95px;
  padding: 0.68rem 1.5rem;
  background: #65b9ff;
  box-shadow: none;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.02rem;
}

.hero__actions,
.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero__stats li,
.contact-card,
.card,
.media-panel,
.category-card,
.contact-panel,
.product-card,
.detail-copy,
.detail-media {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero__stats li {
  padding: 1rem 1.1rem;
}

.hero__stats strong {
  display: block;
  font-size: 1.8rem;
  font-family: "Fraunces", Georgia, serif;
}

.hero__stats span {
  display: block;
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero__visual {
  grid-column: 4;
  position: relative;
  z-index: 1;
  min-height: 540px;
}

.hero__bottle {
  position: absolute;
  top: 132px;
  left: 48%;
  z-index: 2;
  width: 102px;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(24, 102, 177, 0.16));
}

.hero__doodles {
  position: absolute;
  top: -42px;
  right: -110px;
  z-index: 1;
  width: 760px;
  max-width: none;
  height: auto;
  overflow: visible;
}

.hero__dash,
.hero__spark {
  fill: none;
  stroke: #89cfff;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__dash {
  stroke-width: 7;
  stroke-dasharray: 22 23;
}

.hero__dash--arrowhead {
  stroke-dasharray: 18 20;
}

.hero__spark {
  stroke-width: 8;
}

.section,
.page-shell {
  padding: 2rem 0 4.5rem;
}

.section--did-you-know {
  display: grid;
  grid-template-columns: minmax(360px, 560px) minmax(320px, 450px);
  gap: clamp(4rem, 7vw, 7rem);
  align-items: center;
  padding-top: 8.5rem;
  padding-bottom: 8.6rem;
  background: #ffffff;
}

.did-you-know__media {
  margin: 0;
}

.did-you-know__media img {
  width: min(100%, 560px);
  aspect-ratio: 1;
  border: 10px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.16);
}

.did-you-know__copy {
  padding-top: 0.4rem;
}

.did-you-know__copy h2 {
  color: #10299f;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(2.6rem, 3vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.did-you-know__headline {
  max-width: 440px;
  margin-top: 3.9rem;
  color: #3d9fff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(2.35rem, 3vw, 3.08rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.did-you-know__text {
  max-width: 460px;
  margin-top: 2.55rem;
  color: #1d1d1d;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 1.13rem;
  line-height: 1.55;
}

.did-you-know__button {
  min-width: 222px;
  min-height: 50px;
  margin-top: 3.75rem;
  background: linear-gradient(135deg, #62bbff 0%, #4b80f3 100%);
  box-shadow: 0 18px 38px rgba(72, 134, 242, 0.2);
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section--hydration {
  width: 100%;
  padding: 1.85rem 1rem;
  background: #f3f9ff;
}

.hydration-card {
  display: grid;
  grid-template-columns: minmax(360px, 560px) minmax(360px, 560px);
  gap: clamp(3.5rem, 5.5vw, 6.1rem);
  align-items: center;
  width: min(1812px, calc(100vw - 2rem));
  min-height: 754px;
  margin: 0 auto;
  padding: 6.5rem clamp(4rem, 13vw, 23rem);
  border-radius: 6px;
  background: #ffffff;
}

.hydration-card__media {
  margin: 0;
  justify-self: end;
}

.hydration-card__media img {
  width: min(100%, 458px);
  aspect-ratio: 1;
  border: 10px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.16);
}

.hydration-card__copy {
  align-self: center;
  padding-top: 0.3rem;
}

.hydration-card__copy h2 {
  max-width: 540px;
  color: #10299f;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(2.62rem, 2.74vw, 3.35rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.03em;
}

.hydration-card__headline {
  max-width: 460px;
  margin-top: 0.9rem;
  color: #3d9fff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(2.45rem, 2.7vw, 3.16rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.hydration-card__text {
  max-width: 430px;
  margin-top: 2.55rem;
  color: #071c44;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.hydration-card__button {
  min-width: 222px;
  min-height: 50px;
  margin-top: 4.55rem;
  margin-left: 9rem;
  background: linear-gradient(135deg, #62bbff 0%, #4b80f3 100%);
  box-shadow: 0 18px 38px rgba(72, 134, 242, 0.2);
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section--daily-requirement {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 768px;
  padding: 5rem 1rem 4.5rem;
  background: #ffffff;
}

.section--daily-requirement img {
  width: min(1024px, calc(100vw - 2rem));
  height: auto;
}

.section--dehydration-signs {
  display: grid;
  justify-items: center;
  width: 100%;
  min-height: 768px;
  padding: 4.4rem 1rem 4.8rem;
  background: #ffffff;
}

.section--dehydration-signs h2 {
  color: #10299f;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(3rem, 3.35vw, 4.05rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.section--dehydration-signs img {
  width: min(1040px, calc(100vw - 2rem));
  height: auto;
  margin-top: 1.75rem;
}

.section--vitamins {
  display: grid;
  grid-template-columns: minmax(360px, 470px) minmax(120px, 190px) minmax(560px, 670px);
  gap: clamp(1.25rem, 2.5vw, 3rem);
  align-items: center;
  width: min(1320px, calc(100vw - 2rem));
  min-height: 768px;
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
  background: #ffffff;
}

.vitamins__copy {
  align-self: center;
}

.vitamins__copy h2 {
  color: #10299f;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(2.55rem, 2.54vw, 3rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.01em;
}

.vitamins__copy h2 span {
  color: #3d9fff;
}

.vitamins__copy p {
  max-width: 440px;
  margin-top: 1.7rem;
  color: #071c44;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.08rem;
  line-height: 1.72;
}

.vitamins__copy strong {
  color: #2696ff;
}

.vitamins__button {
  min-width: 132px;
  min-height: 44px;
  margin-top: 5.15rem;
  margin-left: 9.5rem;
  padding: 0.62rem 1.1rem;
  background: linear-gradient(135deg, #62bbff 0%, #4b80f3 100%);
  box-shadow: 0 18px 38px rgba(72, 134, 242, 0.2);
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.vitamins__arrow {
  justify-self: center;
  width: 142px;
  height: auto;
  transform: translateY(-1.4rem);
}

.vitamins__arrow path {
  fill: none;
  stroke: #94cfff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10 12;
}

.vitamins__media {
  margin: 0;
  justify-self: start;
}

.vitamins__media img {
  width: min(100%, 650px);
  aspect-ratio: 1;
  border: 10px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.16);
}

.section--formula {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 768px;
  padding: 3.1rem 1rem 5.2rem;
  background: #ffffff;
}

.section--formula::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -182px;
  z-index: 0;
  height: 278px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #eefaff;
}

.section--formula h2 {
  position: relative;
  z-index: 1;
  color: #3d9fff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(2.7rem, 2.92vw, 3.18rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-align: center;
}

.formula__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 390px) minmax(560px, 700px);
  gap: clamp(4.5rem, 8.5vw, 10.6rem);
  align-items: center;
  justify-content: center;
  width: min(1050px, calc(100vw - 2rem));
  margin: 4.35rem auto 0;
}

.formula__media {
  margin: 0;
  justify-self: center;
}

.formula__media img {
  width: auto;
  height: min(525px, 68vw);
}

.formula__copy {
  align-self: center;
  padding-top: 1.3rem;
}

.formula__headline {
  max-width: 660px;
  color: #3d9fff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(2.45rem, 2.7vw, 3rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.03em;
}

.formula__headline span {
  color: #10299f;
}

.formula__text {
  max-width: 660px;
  margin-top: 2.55rem;
  color: #111111;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.08rem;
  line-height: 1.72;
}

.formula__text strong {
  color: #2696ff;
  font-weight: 800;
}

.formula__button {
  min-width: 132px;
  min-height: 44px;
  margin-top: 2.25rem;
  margin-left: 16.25rem;
  padding: 0.62rem 1.1rem;
  background: linear-gradient(135deg, #62bbff 0%, #4b80f3 100%);
  box-shadow: 0 18px 38px rgba(72, 134, 242, 0.2);
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section--benefits-health {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 992px;
  padding: 4.35rem 1rem 3.4rem;
  background: #f2fbff;
}

.section--benefits-health::before {
  content: "";
  position: absolute;
  top: -202px;
  left: -4%;
  z-index: 0;
  width: 108%;
  height: 300px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: #ffffff;
}

.benefits-health__inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100vw - 2rem));
  margin: 0 auto;
}

.section--benefits-health h2 {
  color: #3d9fff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(2.85rem, 2.95vw, 3.35rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.benefits-health__wave {
  display: block;
  width: 130px;
  height: auto;
  margin: 1.45rem auto 0;
}

.benefits-health__wave path {
  fill: none;
  stroke: #309bff;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.benefits-health__icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(3.2rem, 5vw, 5.25rem);
  align-items: start;
  margin-top: 4.6rem;
}

.benefit-icon {
  display: grid;
  justify-items: center;
  text-align: center;
}

.benefit-icon__circle {
  display: grid;
  place-items: center;
  width: 202px;
  aspect-ratio: 1;
  border: 10px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.16);
}

.benefit-icon__circle img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.benefit-icon h3 {
  min-height: 112px;
  margin-top: 1.25rem;
  color: #000000;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.benefits-health__details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(3.8rem, 6vw, 6.1rem);
  margin-top: 4.25rem;
}

.benefit-detail h4 {
  color: #071c44;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
}

.benefit-detail strong {
  display: block;
  margin-top: 0.5rem;
  color: #2696ff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
}

.benefit-detail p {
  position: relative;
  margin-top: 0.95rem;
  padding-left: 0.62rem;
  color: #000000;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.02rem;
  line-height: 1.68;
}

.benefit-detail p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 3px;
  height: 14px;
  border-radius: 999px;
  background: #2c9dff;
}

.benefit-detail b {
  font-weight: 900;
}

.section--flavors {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 880px;
  padding: 1.8rem 1rem 1.55rem;
  background: #f2fbff;
}

.section--flavors::before {
  content: "";
  position: absolute;
  top: -246px;
  left: -5%;
  z-index: 0;
  width: 110%;
  height: 342px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: #ffffff;
}

.flavors__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
}

.section--flavors h2 {
  color: #3d9fff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(3rem, 3.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.flavors__wave {
  display: block;
  width: 132px;
  height: auto;
  margin: 1.35rem auto 0;
}

.flavors__wave path {
  fill: none;
  stroke: #309bff;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.flavors__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(4.2rem, 6.8vw, 7.7rem);
  align-items: end;
  margin-top: 3.7rem;
}

.flavor-product {
  display: grid;
  justify-items: center;
}

.flavor-product img {
  width: auto;
  height: 628px;
  max-height: 64vw;
  filter: drop-shadow(0 22px 34px rgba(17, 50, 92, 0.09));
}

.flavor-product__button {
  min-width: 120px;
  min-height: 44px;
  margin-top: 1.55rem;
  padding: 0.64rem 1.2rem;
  background: #61b9ff;
  box-shadow: 0 16px 34px rgba(72, 134, 242, 0.18);
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section--contact {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 960px;
  padding: 2rem 1rem 2.25rem;
  background: #f3faff;
}

.section--contact::before,
.section--contact::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: #ffffff;
}

.section--contact::before {
  top: -250px;
  left: -5%;
  width: 110%;
  height: 330px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.section--contact::after {
  left: -8%;
  right: -8%;
  bottom: -190px;
  height: 305px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.contact-section__inner {
  position: relative;
  z-index: 1;
  width: min(1212px, calc(100vw - 2rem));
  margin: 0 auto;
}

.section--contact h2 {
  color: #3d9fff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: clamp(3rem, 3.2vw, 3.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.contact-section__wave {
  display: block;
  width: 132px;
  height: auto;
  margin: 1.55rem auto 1.8rem;
}

.contact-section__wave path {
  fill: none;
  stroke: #309bff;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.contact-section__layout {
  display: grid;
  grid-template-columns: minmax(320px, 414px) minmax(520px, 690px);
  gap: 1.35rem;
  justify-content: center;
  align-items: stretch;
}

.contact-info-panel,
.contact-form {
  min-height: 760px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 50, 92, 0.04);
}

.contact-info-panel {
  position: relative;
  overflow: hidden;
  padding: 3.05rem 3.05rem 2rem;
}

.contact-info-panel h3 {
  color: #0877bf;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-info-panel p {
  max-width: 315px;
  margin-top: 1.25rem;
  color: #000000;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.2rem;
  line-height: 1.05;
}

.contact-features {
  display: grid;
  gap: 3.8rem;
  margin-top: 3.45rem;
}

.contact-features li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  align-items: center;
}

.contact-features img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.contact-features strong {
  color: #000000;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.contact-paper-plane {
  position: absolute;
  left: 10.2rem;
  bottom: 3.1rem;
  width: 116px;
  height: auto;
}

.contact-paper-plane path {
  fill: none;
  stroke: #369cff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  padding: 3.15rem 3rem 2rem;
}

.contact-form h3 {
  position: relative;
  margin-bottom: 2.25rem;
  padding-left: 1.05rem;
  color: #000000;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.contact-form h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 3px;
  height: 24px;
  border-radius: 999px;
  background: #7ec6ff;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.13);
  background: #ffffff;
  color: #000000;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1rem;
}

.contact-form input {
  min-height: 56px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
}

.contact-form textarea {
  min-height: 240px;
  padding: 1rem 1.45rem;
  border-radius: 3px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777777;
}

.contact-form__button {
  float: right;
  min-width: 164px;
  min-height: 50px;
  margin-top: 0.55rem;
  background: linear-gradient(135deg, #62bbff 0%, #4b80f3 100%);
  box-shadow: 0 18px 38px rgba(72, 134, 242, 0.2);
  border: 0;
  cursor: pointer;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section--compact {
  padding-top: 0;
}

.section--tint,
.section--spotlight {
  position: relative;
}

.section--tint::before,
.section--spotlight::before {
  content: "";
  position: absolute;
  inset: 1rem 0 0;
  z-index: -1;
  border-radius: 40px;
}

.section--tint::before {
  background: linear-gradient(180deg, rgba(232, 248, 255, 0.94), rgba(255, 255, 255, 0));
}

.section--spotlight::before {
  background: linear-gradient(180deg, rgba(255, 248, 224, 0.95), rgba(255, 255, 255, 0));
}

.section__intro {
  margin-bottom: 1.8rem;
}

.section__intro h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section__intro--left {
  max-width: 42rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

.grid--offset {
  align-items: center;
}

.card,
.media-panel,
.contact-panel {
  padding: 1.5rem;
}

.card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.card p + p {
  margin-top: 0.95rem;
}

.card--soft {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(227, 244, 255, 0.78));
}

.card--accent {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 214, 0.78));
}

.media-panel {
  overflow: hidden;
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-panel--wide img {
  min-height: 100%;
}

.benefits,
.category-showcase,
.contact-layout,
.product-grid {
  display: grid;
  gap: 1rem;
}

.benefits {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.2rem;
}

.benefit {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.benefit img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.benefit h3 {
  margin-top: 1rem;
  font-size: 1.45rem;
}

.benefit p {
  margin-top: 0.55rem;
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun), var(--accent));
}

.category-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  position: relative;
  min-height: 360px;
  padding: 1.5rem 1.5rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(21, 144, 255, 0.16), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 255, 0.82));
}

.category-card:nth-child(2n) {
  background:
    radial-gradient(circle at top right, rgba(255, 207, 95, 0.24), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 236, 0.88));
}

.category-card__label,
.product-card__meta,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(17, 50, 92, 0.06);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.category-card strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.65rem;
  font-family: "Fraunces", Georgia, serif;
}

.category-card img {
  position: absolute;
  right: -1rem;
  bottom: -0.5rem;
  width: min(72%, 250px);
}

.contact-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  padding: 1.35rem;
}

.contact-card__badge {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 207, 95, 0.4), rgba(21, 144, 255, 0.14));
}

.contact-card__badge img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.contact-card h3 {
  margin-top: 1rem;
  font-size: 1.45rem;
}

.contact-card p,
.contact-list {
  margin-top: 0.65rem;
  color: var(--ink-soft);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.contact-panel h3 {
  font-size: 2rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.catalog-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.search-field {
  display: grid;
  gap: 0.45rem;
  width: min(100%, 360px);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.search-field input {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(17, 50, 92, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  box-shadow: 0 10px 26px rgba(17, 50, 92, 0.08);
}

.search-field input:focus {
  outline: 2px solid rgba(21, 144, 255, 0.22);
  outline-offset: 2px;
}

.pill {
  border: 1px solid transparent;
}

.pill.is-active,
.pill:hover {
  background: rgba(0, 87, 200, 0.1);
  border-color: rgba(0, 87, 200, 0.12);
  color: var(--accent-strong);
}

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

.empty-state {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(17, 50, 92, 0.18);
  border-radius: var(--radius-md);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 207, 95, 0.18), rgba(21, 144, 255, 0.04));
}

.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.product-card__media {
  display: grid;
  place-items: center;
  min-height: 230px;
  margin: 1rem 0;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(237, 247, 255, 0.72), rgba(255, 255, 255, 0.92));
}

.product-card__media img {
  max-height: 220px;
  width: auto;
}

.product-card h3 {
  font-size: 1.5rem;
}

.product-card p {
  margin-top: 0.65rem;
  color: var(--ink-soft);
}

.product-card__price {
  display: block;
  margin-top: 1rem;
  font-size: 2rem;
  font-family: "Fraunces", Georgia, serif;
  color: var(--accent-strong);
}

.product-card__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-card__actions .button {
  width: 100%;
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 1rem;
  color: var(--ink-soft);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem;
}

.detail-media {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  min-height: 520px;
  background:
    radial-gradient(circle at top left, rgba(255, 207, 95, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(235, 247, 255, 0.92), rgba(255, 255, 255, 0.95));
}

.detail-media img {
  max-height: 480px;
  width: auto;
}

.detail-copy {
  padding: 1.75rem;
}

.detail-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.detail-copy__lead {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.detail-copy__price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.detail-copy__price strong {
  font-size: 2.6rem;
  font-family: "Fraunces", Georgia, serif;
  color: var(--accent-strong);
}

.detail-copy__price span {
  color: var(--ink-soft);
}

.detail-copy__description {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.detail-specs li {
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(21, 144, 255, 0.06);
}

.detail-specs strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.detail-specs span {
  display: block;
  margin-top: 0.35rem;
  font-weight: 700;
}

.detail-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.detail-copy__notes {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.3rem;
  color: var(--ink-soft);
}

.shell-footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 680px;
  margin: 0;
  color: #ffffff;
  background: #3b52b1;
}

.shell-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 188px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1880 188' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 0H1880V0C1788 60 1698 98 1568 122C1410 152 1229 149 1082 109C918 65 826 8 639 35C480 58 407 151 260 122C153 101 67 61 0 110Z'/%3E%3C/svg%3E") top center / 100% 100% no-repeat;
}

.shell-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(320px, 440px) minmax(220px, 300px);
  column-gap: clamp(3.5rem, 7vw, 8.6rem);
  row-gap: 2rem;
  align-items: start;
  width: min(1060px, calc(100vw - 2rem));
  margin: 0 auto;
  padding-top: 16.8rem;
  padding-bottom: 1.7rem;
}

.footer-brand {
  padding-top: 2.15rem;
}

.footer-brand img {
  width: 154px;
  height: auto;
}

.footer-social {
  display: flex;
  gap: 0.72rem;
  margin-bottom: 4.15rem;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #ffffff;
  background: #61aefb;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
}

.footer-about h3,
.footer-stores h3 {
  position: relative;
  padding-left: 1rem;
  color: #ffffff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-about h3::before,
.footer-stores h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 3px;
  height: 22px;
  border-radius: 999px;
  background: #7ec6ff;
}

.footer-about p {
  max-width: 390px;
  margin-top: 1.48rem;
  color: #ffffff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  letter-spacing: 0.09em;
}

.footer-about p + p {
  margin-top: 1.05rem;
}

.footer-stores ul {
  display: grid;
  gap: 1.65rem;
  margin-top: 1.9rem;
}

.footer-stores li {
  color: #ffffff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 3.65rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-family: "Nunito", "Avenir Next", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

@media (max-width: 980px) {
  .grid--two-columns,
  .contact-panel,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: minmax(1rem, 1fr) minmax(0, 560px) minmax(1rem, 1fr);
    min-height: auto;
    padding: 118px 0 3rem;
  }

  .hero__copy,
  .hero__visual {
    grid-column: 2;
  }

  .benefits,
  .category-showcase,
  .contact-layout,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__doodles {
    top: -28px;
    left: 50%;
    right: auto;
    width: 620px;
    transform: translateX(-46%);
  }

  .hero__bottle {
    top: 104px;
    left: 58%;
    width: 74px;
  }

  .section--did-you-know {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .did-you-know__media img {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .did-you-know__copy {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .did-you-know__headline,
  .did-you-know__text {
    margin-right: auto;
    margin-left: auto;
  }

  .hydration-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 5rem 2rem;
  }

  .hydration-card__media {
    justify-self: center;
  }

  .hydration-card__copy {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .hydration-card__copy h2,
  .hydration-card__headline,
  .hydration-card__text {
    margin-right: auto;
    margin-left: auto;
  }

  .hydration-card__button {
    margin-left: 0;
  }

  .section--daily-requirement {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section--dehydration-signs {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section--vitamins {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .vitamins__copy {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .vitamins__copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .vitamins__button {
    margin-left: 0;
  }

  .vitamins__arrow {
    transform: none;
  }

  .vitamins__media {
    justify-self: center;
  }

  .section--formula {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 6rem;
  }

  .formula__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
  }

  .formula__copy {
    max-width: 660px;
    margin: 0 auto;
    padding-top: 0;
    text-align: center;
  }

  .formula__headline,
  .formula__text {
    margin-right: auto;
    margin-left: auto;
  }

  .formula__button {
    margin-left: 0;
  }

  .section--benefits-health {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4.5rem;
  }

  .benefits-health__icons,
  .benefits-health__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 3rem;
  }

  .benefits-health__details {
    margin-top: 3.5rem;
  }

  .benefit-detail {
    max-width: 300px;
    justify-self: center;
  }

  .section--flavors {
    min-height: auto;
    padding-top: 3.8rem;
    padding-bottom: 4rem;
  }

  .flavors__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .flavor-product img {
    height: min(520px, 55vw);
  }

  .section--contact {
    min-height: auto;
    padding-top: 3.8rem;
    padding-bottom: 4rem;
  }

  .contact-section__layout {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .contact-info-panel,
  .contact-form {
    min-height: auto;
  }

  .contact-paper-plane {
    position: static;
    margin: 2rem auto 0;
  }

  .detail-media {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .shell-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

  .shell-nav.is-open {
    display: flex;
  }

  .cart-link {
    align-self: flex-start;
  }

  .hero__stats,
  .benefits,
  .category-showcase,
  .contact-layout,
  .product-grid,
  .detail-specs {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero__visual {
    min-height: 310px;
  }

  .hero__bottle {
    top: 76px;
    left: 62%;
    width: 62px;
  }

  .hero__doodles {
    top: -54px;
    width: 520px;
  }

  .hero h1 {
    font-size: clamp(2.72rem, 15vw, 4rem);
  }

  .hero__lead {
    max-width: 320px;
    font-size: clamp(1.72rem, 9vw, 2.25rem);
  }

  .hero__cta {
    margin-left: 0;
  }

  .section--did-you-know {
    padding-top: 3.8rem;
    padding-bottom: 4rem;
  }

  .did-you-know__copy h2 {
    font-size: 2.35rem;
  }

  .did-you-know__headline {
    margin-top: 2rem;
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .did-you-know__text {
    margin-top: 1.6rem;
    font-size: 1rem;
  }

  .did-you-know__button {
    margin-top: 2rem;
  }

  .section--hydration {
    padding: 1rem;
  }

  .hydration-card {
    padding: 3.5rem 1.25rem;
  }

  .hydration-card__media img {
    width: min(100%, 340px);
  }

  .hydration-card__copy h2 {
    font-size: clamp(2rem, 8vw, 2.65rem);
  }

  .hydration-card__headline {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .hydration-card__text {
    margin-top: 1.7rem;
    font-size: 1.28rem;
  }

  .hydration-card__button {
    margin-top: 2.4rem;
  }

  .section--daily-requirement {
    padding: 2.8rem 1rem;
  }

  .section--dehydration-signs {
    padding: 2.8rem 1rem;
  }

  .section--dehydration-signs h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .section--dehydration-signs img {
    margin-top: 1.25rem;
  }

  .section--vitamins {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .vitamins__copy h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .vitamins__copy p {
    font-size: 1rem;
  }

  .vitamins__button {
    margin-top: 2.4rem;
  }

  .vitamins__media img {
    width: min(100%, 360px);
  }

  .section--formula {
    padding-top: 3.2rem;
    padding-bottom: 5rem;
  }

  .section--formula h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .formula__layout {
    margin-top: 2.25rem;
  }

  .formula__media img {
    height: min(430px, 118vw);
  }

  .formula__headline {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
  }

  .formula__text {
    margin-top: 1.8rem;
    font-size: 1rem;
  }

  .formula__button {
    margin-top: 2rem;
  }

  .section--benefits-health {
    padding-top: 3rem;
    padding-bottom: 3.6rem;
  }

  .section--benefits-health h2 {
    font-size: clamp(2rem, 9.2vw, 3rem);
    line-height: 1.18;
  }

  .benefits-health__icons,
  .benefits-health__details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-health__icons {
    margin-top: 3rem;
  }

  .benefit-icon__circle {
    width: 174px;
  }

  .benefit-icon__circle img {
    width: 76px;
    height: 76px;
  }

  .benefit-icon h3 {
    min-height: 0;
    font-size: 1.35rem;
  }

  .benefits-health__details {
    margin-top: 2.5rem;
  }

  .section--flavors {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .section--flavors h2 {
    font-size: clamp(2rem, 9.2vw, 3rem);
    line-height: 1.18;
  }

  .flavors__products {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    margin-top: 2.8rem;
  }

  .flavor-product img {
    height: min(520px, 130vw);
  }

  .flavor-product__button {
    margin-top: 1.1rem;
  }

  .section--contact {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .section--contact h2 {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }

  .contact-section__layout {
    gap: 1rem;
  }

  .contact-info-panel,
  .contact-form {
    padding: 2rem 1.35rem;
  }

  .contact-info-panel p {
    font-size: 1.05rem;
    line-height: 1.18;
  }

  .contact-features {
    gap: 2rem;
  }

  .contact-features li {
    grid-template-columns: 72px 1fr;
  }

  .contact-features img {
    width: 66px;
    height: 66px;
  }

  .contact-form textarea {
    min-height: 190px;
  }

  .contact-form__button {
    float: none;
    width: 100%;
  }

  .shell-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 12rem;
  }

  .footer-brand,
  .footer-about,
  .footer-stores {
    justify-self: center;
    max-width: 420px;
    width: 100%;
  }

  .footer-brand {
    padding-top: 0;
  }

  .footer-social {
    margin-bottom: 2rem;
  }

  .footer-copy {
    margin-top: 1.5rem;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    justify-content: stretch;
  }

  .search-field {
    width: 100%;
  }

  .page-hero {
    padding-top: 2rem;
  }
}
