:root {
  --green: #d8f2ff;
  --green-deep: #063f73;
  --matcha: #7fd8ff;
  --cream: #f3fbff;
  --white: #ffffff;
  --orange: #ff9b2f;
  --blue: #176fe8;
  --ink: #062f55;
  --muted: #4d7895;
  --line: rgba(6, 63, 115, 0.16);
  --shadow: 0 28px 80px rgba(18, 111, 232, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--green);
  color: var(--ink);
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--blue), #7fd8ff);
  transform: scaleX(0);
  transform-origin: left;
}

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

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

button,
input {
  font: inherit;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 650;
  line-height: 1.55;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--green-deep);
}

.loader span {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 950;
}

.loader i {
  position: absolute;
  bottom: 9vh;
  width: min(280px, 60vw);
  height: 5px;
  border-radius: 99px;
  background: var(--green-deep);
  transform-origin: left;
}

.site-nav {
  position: fixed;
  inset: 20px 28px auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 52px rgba(18, 111, 232, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--green-deep);
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: 0;
}

.site-nav nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.shop-link,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--green-deep);
  color: var(--white);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.shop-link:hover,
.button:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 112px clamp(18px, 5vw, 72px) 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 45%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(180deg, #e7f8ff, var(--green));
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.42) 28%, transparent 38%),
    linear-gradient(290deg, transparent 62%, rgba(255, 255, 255, 0.26) 72%, transparent 82%);
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-35%);
  animation: hero-shine 8s ease-in-out infinite;
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bubbles span {
  position: absolute;
  width: clamp(18px, 3vw, 42px);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 111, 232, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.82), transparent 24%),
    rgba(255, 255, 255, 0.22);
  animation: float-bubble 9s ease-in-out infinite;
}

.hero-bubbles span:nth-child(1) {
  left: 12%;
  top: 36%;
}

.hero-bubbles span:nth-child(2) {
  left: 24%;
  top: 68%;
  animation-delay: -2s;
}

.hero-bubbles span:nth-child(3) {
  right: 18%;
  top: 31%;
  animation-delay: -4s;
}

.hero-bubbles span:nth-child(4) {
  right: 27%;
  bottom: 18%;
  animation-delay: -1s;
}

.hero-bubbles span:nth-child(5) {
  left: 54%;
  top: 19%;
  animation-delay: -5s;
}

.hero-bubbles span:nth-child(6) {
  left: 7%;
  bottom: 18%;
  width: clamp(12px, 2vw, 28px);
  animation-delay: -6.2s;
}

.hero-bubbles span:nth-child(7) {
  right: 8%;
  bottom: 34%;
  width: clamp(14px, 2.3vw, 34px);
  animation-delay: -3.3s;
}

.hero-bubbles span:nth-child(8) {
  right: 39%;
  top: 67%;
  width: clamp(10px, 1.8vw, 24px);
  animation-delay: -7.4s;
}

.citrus-slice,
.leaf {
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
}

.citrus-slice {
  --citrus-rotate: -10deg;
  --citrus-scale: 1;
  width: clamp(58px, 7.2vw, 112px);
  aspect-ratio: 1;
  border: clamp(4px, 0.55vw, 7px) solid rgba(255, 248, 190, 0.96);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 239, 0.96) 0 14%, transparent 15%),
    repeating-conic-gradient(
      from -8deg,
      rgba(255, 249, 180, 0.96) 0 17deg,
      rgba(255, 214, 64, 0.92) 17deg 34deg
    );
  box-shadow:
    inset 0 0 0 2px rgba(247, 191, 34, 0.26),
    inset 0 -10px 18px rgba(241, 171, 18, 0.16),
    0 14px 24px rgba(6, 63, 115, 0.12);
  opacity: 0.9;
  animation: citrus-drift 10s ease-in-out infinite;
}

.citrus-slice::after {
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(255, 255, 236, 0.74);
  border-radius: inherit;
  content: "";
}

.leaf {
  width: clamp(42px, 6vw, 92px);
  aspect-ratio: 1.75;
  border-radius: 100% 0 100% 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 42%),
    #5bbd64;
  box-shadow: inset 0 -10px 20px rgba(6, 63, 115, 0.12);
  transform: rotate(-28deg);
  animation: leaf-float 8s ease-in-out infinite;
}

.leaf::after {
  position: absolute;
  left: 12%;
  top: 50%;
  width: 76%;
  height: 2px;
  background: rgba(255, 255, 255, 0.58);
  content: "";
  transform: rotate(-8deg);
  transform-origin: left;
}

.hero-bubbles .lemon-one {
  left: 4%;
  top: 52%;
  --citrus-rotate: -16deg;
}

.hero-bubbles .lemon-two {
  right: 7%;
  top: 56%;
  animation-delay: -3.5s;
  --citrus-rotate: 18deg;
  --citrus-scale: 0.92;
}

.hero-bubbles .leaf-one {
  left: 33%;
  top: 23%;
  animation-delay: -1.8s;
}

.hero-bubbles .leaf-two {
  right: 31%;
  bottom: 20%;
  animation-delay: -5.4s;
  transform: rotate(32deg);
}

.hero-product {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 2;
  width: clamp(440px, 50vw, 680px);
  transform: translate(-50%, -50%);
}

.hero-product img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 28px 42px rgba(6, 63, 115, 0.18));
  transform: rotate(-2deg);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.hero-product::after,
.intro-card::after,
.flavour-stage::after,
.product-card::after,
.closing::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.46) 48%, transparent 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%);
}

.hero-product::after {
  z-index: 3;
  border-radius: 34px;
}

.hero-product:hover::after,
.intro-card:hover::after,
.flavour-stage:hover::after {
  animation: card-shimmer 850ms ease;
}

.hero-orbit {
  position: absolute;
  inset: 6%;
  border: 3px solid rgba(23, 111, 232, 0.22);
  border-radius: 999px;
  transform: scale(1.24) rotate(-8deg);
}

.stat {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: end;
  color: var(--green-deep);
  will-change: transform;
}

.stat strong {
  font-size: clamp(3.8rem, 8vw, 8rem);
  font-weight: 950;
  line-height: 0.78;
}

.stat span {
  padding-bottom: 0.3em;
  color: var(--green-deep);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.stat-left {
  left: 12vw;
  top: 21vh;
}

.stat-right {
  right: 10vw;
  top: 20vh;
}

.stat-bottom {
  left: 15vw;
  bottom: 36vh;
  transform: scale(0.82);
  transform-origin: left bottom;
}

.hero-title {
  position: absolute;
  left: 50%;
  bottom: 8vh;
  z-index: 4;
  width: min(980px, 86vw);
  text-align: center;
  transform: translateX(-50%);
}

.hero-title p,
.kicker {
  margin-bottom: 14px;
  color: var(--green-deep);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title h1,
.intro h2,
.love h2,
.flavours h2,
.compare h2,
.shop h2,
.closing h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(3.1rem, 8.5vw, 9.5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.86;
}

.hero-title h1 span {
  display: block;
}

.underline {
  width: min(380px, 58vw);
  margin-top: 8px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10;
}

.ribbon {
  overflow: hidden;
  background: var(--cream);
}

.ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbon 18s linear infinite;
  will-change: transform;
}

.ribbon-group {
  display: flex;
  flex: 0 0 auto;
}

.ribbon span {
  padding: 22px 0;
  color: var(--green-deep);
  font-size: clamp(1.4rem, 4vw, 4rem);
  font-weight: 950;
  white-space: nowrap;
}

@keyframes ribbon {
  to {
    transform: translateX(-50%);
  }
}

section:not(.hero) {
  padding: clamp(78px, 10vw, 150px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  background: var(--cream);
}

.intro-copy p:not(.kicker) {
  max-width: 720px;
  margin-top: 24px;
}

.intro-copy .button {
  margin-top: 28px;
}

.intro-card {
  position: relative;
  padding: 18px;
  border-radius: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
  overflow: hidden;
}

.intro-card:hover,
.benefit-card:hover,
.flavour-stage:hover {
  box-shadow: 0 34px 92px rgba(18, 111, 232, 0.22);
}

.intro-card img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 40px rgba(6, 63, 115, 0.14));
}

.intro-card div {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.intro-card span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.intro-card strong {
  color: var(--green-deep);
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  line-height: 0.95;
}

.nutrition-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--green-deep);
}

.nutrition-strip article {
  display: grid;
  align-content: end;
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.nutrition-strip article:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px);
}

.nutrition-strip strong {
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 950;
  line-height: 0.82;
}

.nutrition-strip span {
  margin-top: 12px;
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
}

.love {
  position: relative;
  background: var(--green);
  overflow: hidden;
}

.natural-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.natural-decor .lemon-one {
  left: 4vw;
  top: 12%;
  width: clamp(48px, 6vw, 82px);
}

.natural-decor .lemon-two {
  right: 4vw;
  bottom: 8%;
  width: clamp(50px, 7vw, 96px);
  animation-delay: -2.7s;
}

.natural-decor .leaf-one {
  right: 18vw;
  top: 18%;
}

.natural-decor .leaf-two {
  left: 18vw;
  bottom: 11%;
  animation-delay: -4.2s;
}

.natural-decor span {
  position: absolute;
  width: 28px;
  aspect-ratio: 1;
  border: 2px solid rgba(23, 111, 232, 0.2);
  border-radius: 999px;
  animation: float-bubble 7s ease-in-out infinite;
}

.natural-decor span:nth-of-type(1) {
  left: 44%;
  top: 13%;
}

.natural-decor span:nth-of-type(2) {
  right: 34%;
  bottom: 10%;
  animation-delay: -3s;
}

.love-head {
  position: relative;
  max-width: 1020px;
  margin: 0 auto 58px;
  text-align: center;
}

.love h2 {
  font-size: clamp(3.3rem, 8vw, 8.2rem);
}

.sketch-arrow {
  position: absolute;
  right: -10%;
  bottom: -70px;
  width: 180px;
  fill: none;
  stroke: var(--green-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
  animation: arrow-wiggle 3.6s ease-in-out infinite;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 360px;
  padding: 26px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.benefit-card:nth-child(even) {
  margin-top: 0;
}

.smiley {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--green-deep);
  color: var(--green);
  font-weight: 950;
}

.benefit-card h3 {
  margin: 72px 0 16px;
  color: var(--green-deep);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 0.86;
}

.benefit-card p {
  position: relative;
  z-index: 2;
}

.doodle {
  position: absolute;
  right: 20px;
  top: 78px;
  width: 86px;
  aspect-ratio: 1;
  border: 7px solid var(--orange);
  border-radius: 999px;
  opacity: 0.78;
  animation: doodle-float 4.8s ease-in-out infinite;
}

.doodle.small {
  width: 62px;
  border-color: var(--blue);
}

.doodle.bolt {
  width: 74px;
  border: 0;
  background: var(--orange);
  clip-path: polygon(48% 0, 100% 0, 64% 43%, 100% 43%, 35% 100%, 52% 56%, 10% 56%);
  animation-delay: -1.3s;
}

.doodle.slash {
  width: 116px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(-18deg);
  animation-delay: -2.1s;
}

.flavours {
  --moment-bg: #eefaff;
  --moment-panel: #d8f2ff;
  --moment-ink: #063f73;
  --moment-muted: #4d7895;
  --moment-accent: #7fd8ff;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.7), transparent 26%),
    var(--moment-bg);
  transition:
    background 420ms ease,
    color 420ms ease;
}

.flavours[data-moment-theme="move"] {
  --moment-bg: #d7ecff;
  --moment-panel: #b8ddff;
  --moment-ink: #063f73;
  --moment-muted: #386f9c;
  --moment-accent: #176fe8;
}

.flavours[data-moment-theme="after"] {
  --moment-bg: #082f58;
  --moment-panel: #0d4775;
  --moment-ink: #f3fbff;
  --moment-muted: #b8ddff;
  --moment-accent: #ff9b2f;
}

.flavours .kicker,
.flavours h2 {
  color: var(--moment-ink);
  transition: color 280ms ease;
}

.flavour-copy p:not(.kicker) {
  max-width: 620px;
  margin-top: 22px;
  color: var(--moment-muted);
  transition: color 280ms ease;
}

.flavour-stage {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 24px;
  border-radius: 40px;
  background: var(--moment-panel);
  box-shadow: 0 28px 80px color-mix(in srgb, var(--moment-accent) 24%, transparent);
  transition:
    background 320ms ease,
    box-shadow 320ms ease,
    transform 220ms ease;
  overflow: hidden;
  transform-style: preserve-3d;
}

.moment-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.moment-scene span,
.moment-scene i {
  position: absolute;
  display: block;
  pointer-events: none;
}

.moment-sun {
  left: 12%;
  bottom: 54%;
  width: clamp(86px, 12vw, 138px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 32%, rgba(255, 255, 255, 0.68), transparent 16%),
    radial-gradient(circle, #ffe86e 0 46%, #ffb52f 68%, rgba(255, 181, 47, 0) 70%);
  box-shadow:
    0 0 0 18px rgba(255, 232, 110, 0.14),
    0 22px 50px rgba(255, 181, 47, 0.26);
  transition:
    left 340ms ease,
    top 340ms ease,
    bottom 340ms ease,
    opacity 340ms ease,
    transform 340ms ease;
}

.moment-cloud {
  width: clamp(118px, 17vw, 198px);
  height: clamp(44px, 6vw, 74px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    34px -14px 0 rgba(255, 255, 255, 0.64),
    72px 2px 0 rgba(255, 255, 255, 0.5);
  filter: blur(0.2px);
  animation: cloud-drift 11s ease-in-out infinite;
  transition:
    opacity 300ms ease,
    transform 340ms ease;
}

.cloud-one {
  left: 8%;
  top: 18%;
}

.cloud-two {
  right: 20%;
  top: 29%;
  opacity: 0.74;
  transform: scale(0.72);
  animation-delay: -4s;
}

.moment-bubble {
  width: clamp(18px, 3vw, 44px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.72), transparent 24%),
    rgba(255, 255, 255, 0.12);
  opacity: 0.55;
  animation: float-bubble 8s ease-in-out infinite;
}

.bubble-one {
  right: 10%;
  top: 16%;
}

.bubble-two {
  left: 18%;
  bottom: 18%;
  width: clamp(12px, 2vw, 28px);
  animation-delay: -2.7s;
}

.bubble-three {
  right: 20%;
  bottom: 25%;
  width: clamp(14px, 2.4vw, 34px);
  animation-delay: -5.1s;
}

.moment-citrus {
  right: 8%;
  bottom: 12%;
  width: clamp(52px, 8vw, 94px);
  opacity: 0;
}

.flavour-stage img,
.flavour-tabs,
.flavour-stage p {
  position: relative;
  z-index: 1;
}

.flavours[data-moment-theme="move"] .moment-sun {
  left: 50%;
  top: 8%;
  bottom: auto;
  transform: translateX(-50%) scale(1.12);
}

.flavours[data-moment-theme="move"] .moment-cloud {
  opacity: 0.32;
  transform: translateY(18px) scale(0.86);
}

.flavours[data-moment-theme="move"] .moment-bubble {
  border-color: rgba(23, 111, 232, 0.18);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.82), transparent 24%),
    rgba(255, 255, 255, 0.22);
  opacity: 0.72;
}

.flavours[data-moment-theme="after"] .moment-sun {
  left: 10%;
  top: 10%;
  bottom: auto;
  width: clamp(54px, 7vw, 88px);
  background:
    radial-gradient(circle at 62% 34%, var(--moment-panel) 0 34%, transparent 35%),
    #f7f0cb;
  box-shadow: 0 0 0 16px rgba(247, 240, 203, 0.1);
  opacity: 0.88;
}

.flavours[data-moment-theme="after"] .moment-cloud {
  opacity: 0;
  transform: translateY(34px) scale(0.7);
}

.flavours[data-moment-theme="after"] .moment-bubble {
  border-color: rgba(127, 216, 255, 0.28);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.62), transparent 24%),
    rgba(127, 216, 255, 0.12);
  opacity: 0.8;
}

.flavours[data-moment-theme="after"] .moment-citrus {
  opacity: 0.72;
}

.flavour-stage img {
  width: min(360px, 100%);
  filter: drop-shadow(0 24px 40px rgba(6, 63, 115, 0.14));
}

.flavour-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.flavour-tabs button {
  position: relative;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--moment-ink);
  cursor: pointer;
  font-weight: 950;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
  overflow: hidden;
}

.flavour-tabs button::after,
.button::after,
.shop-link::after,
.icon-button::after {
  position: absolute;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
  width: 10px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
}

.flavour-tabs button.is-rippling::after,
.button.is-rippling::after,
.shop-link.is-rippling::after,
.icon-button.is-rippling::after {
  animation: ripple 620ms ease-out;
}

.flavour-tabs button.is-active {
  background: var(--moment-ink);
  color: white;
  transform: translateY(-2px);
}

.flavours[data-moment-theme="after"] .flavour-tabs button.is-active {
  background: var(--orange);
  color: #082f58;
}

.flavour-stage p {
  max-width: 460px;
  color: var(--moment-ink);
  text-align: center;
  transition: color 280ms ease;
}

.compare {
  background: var(--green);
}

.compare-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.compare h2 {
  font-size: clamp(3.1rem, 7vw, 7.4rem);
}

.compare-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--green-deep);
  font-weight: 900;
}

.compare-table col.benefit-col {
  width: 46%;
}

.compare-table col.zoma-col,
.compare-table col.classic-col {
  width: 27%;
}

.compare-table thead {
  background: var(--cream);
}

.compare-table th,
.compare-table td {
  height: 72px;
  padding: 0 clamp(18px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.compare-table thead th {
  height: 92px;
  font-size: clamp(0.76rem, 1.2vw, 0.94rem);
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

.compare-table th:first-child {
  text-align: left;
}

.compare-table th:not(:first-child),
.compare-table td {
  text-align: center;
}

.compare-table tbody tr {
  transition: background 180ms ease;
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.34);
}

.compare-table td {
  color: var(--green-deep);
  font-size: 2rem;
}

.compare-table .negative {
  color: #d62828;
}

.shop {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 22%, rgba(255, 255, 255, 0.86), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(127, 216, 255, 0.42), transparent 24%),
    linear-gradient(180deg, #f3fbff, #d8f2ff 72%, #eaf8ff);
}

.shop h2 {
  font-size: clamp(3rem, 7.8vw, 8.2rem);
}

.home-products {
  scroll-margin-top: 132px;
}

.shop-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shop-bubbles span {
  position: absolute;
  width: clamp(18px, 3vw, 44px);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 111, 232, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.82), transparent 24%),
    rgba(255, 255, 255, 0.28);
  animation: float-bubble 8s ease-in-out infinite;
}

.shop-bubbles span:nth-child(1) {
  left: 8%;
  bottom: 20%;
}

.shop-bubbles span:nth-child(2) {
  right: 11%;
  top: 42%;
  width: clamp(28px, 5vw, 72px);
  animation-delay: -3s;
}

.shop-bubbles .lemon-one {
  left: 4vw;
  top: 8%;
  width: clamp(48px, 7vw, 104px);
}

.shop-bubbles .lemon-two {
  right: 5vw;
  bottom: 8%;
  width: clamp(58px, 8vw, 118px);
  animation-delay: -4.2s;
}

.shop-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.shop-head p:not(.kicker) {
  max-width: 760px;
  margin-top: 22px;
}

.shop-controls {
  display: flex;
  gap: 12px;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 999px;
  background: var(--green-deep);
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 950;
  overflow: hidden;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.icon-button:hover {
  background: var(--orange);
  transform: translateY(-2px) rotate(-3deg);
}

.product-carousel {
  position: relative;
  z-index: 1;
  margin-inline: calc(clamp(18px, 5vw, 72px) * -1);
}

.product-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  padding: 10px clamp(18px, 5vw, 72px) 24px;
  scroll-padding-inline: clamp(18px, 5vw, 72px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(292px, 31vw, 420px);
  min-height: 640px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 70px rgba(18, 111, 232, 0.12);
  scroll-snap-align: center;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
  overflow: hidden;
}

.product-track .product-card {
  height: 690px;
  scroll-snap-align: start;
}

.product-card.is-active {
  border-color: rgba(23, 111, 232, 0.24);
  box-shadow: 0 22px 70px rgba(18, 111, 232, 0.12);
}

.product-card::before {
  position: absolute;
  right: -72px;
  top: -72px;
  width: 190px;
  aspect-ratio: 1;
  border: 24px solid rgba(23, 111, 232, 0.1);
  border-radius: 999px;
  content: "";
}

.product-card::after {
  border-radius: 34px;
}

.product-badge {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 3;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-badge.orange {
  background: var(--orange);
}

.product-badge.blue {
  background: var(--blue);
}

.product-badge.dark {
  background: #042f56;
}

.product-visual {
  position: relative;
  display: grid;
  flex: 0 0 330px;
  place-items: center;
  min-height: 330px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.88), transparent 34%),
    #d8f2ff;
  overflow: hidden;
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.product-visual::before {
  width: 150px;
  aspect-ratio: 1;
  border: 18px solid rgba(255, 255, 255, 0.54);
  transform: translate(-72px, -40px);
}

.product-visual::after {
  right: 28px;
  bottom: 30px;
  width: 34px;
  aspect-ratio: 1;
  border: 2px solid rgba(6, 63, 115, 0.18);
  animation: float-bubble 6s ease-in-out infinite;
}

.product-visual.orange {
  background:
    radial-gradient(circle at 48% 18%, rgba(255, 255, 255, 0.88), transparent 34%),
    #ffe1bd;
}

.product-visual.mix {
  background:
    radial-gradient(circle at 48% 18%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(135deg, #d8f2ff 0 50%, #ffe1bd 50% 100%);
}

.product-visual.office {
  background:
    radial-gradient(circle at 48% 18%, rgba(255, 255, 255, 0.9), transparent 34%),
    #c8e8ff;
}

.product-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 78%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(6, 63, 115, 0.18));
  transition: transform 260ms ease;
}

.product-info {
  display: grid;
  flex: 1;
  gap: 14px;
  padding: 24px 8px 8px;
}

.product-track .product-info {
  grid-template-rows: auto minmax(6.7rem, auto) minmax(76px, 1fr) auto auto;
}

.flavour-label {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(2.2rem, 3.8vw, 3.7rem);
  font-weight: 950;
  line-height: 0.9;
  text-wrap: balance;
}

.product-info p {
  font-size: 1rem;
}

.product-track .product-info h3,
.product-track .product-info p {
  align-self: start;
}

.product-track .product-info p {
  max-width: 28ch;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}

.product-meta strong {
  color: var(--green-deep);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 950;
}

.product-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(6, 63, 115, 0.08);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 950;
  white-space: nowrap;
}

.product-info .button {
  align-self: end;
  width: 100%;
  margin-top: 4px;
}

.cart-toggle {
  gap: 10px;
}

.cart-toggle span {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding-inline: 7px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.76rem;
  line-height: 1;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(6, 47, 85, 0.26);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.cart-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  right: 18px;
  top: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 34px;
  background: rgba(243, 251, 255, 0.94);
  box-shadow: 0 34px 110px rgba(6, 47, 85, 0.26);
  backdrop-filter: blur(18px);
  transform: translateX(calc(100% + 32px));
  transition: transform 260ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
}

.cart-head span,
.cart-summary span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.cart-head h2 {
  margin: 4px 0 0;
  color: var(--green-deep);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.9;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding-right: 4px;
}

.cart-empty {
  display: none;
  align-self: start;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-deep);
}

.cart-empty.is-visible {
  display: block;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.cart-thumb {
  display: grid;
  place-items: center;
  width: 64px;
  aspect-ratio: 1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.9), transparent 36%),
    #d8f2ff;
  color: var(--green-deep);
  font-size: 1.4rem;
  font-weight: 950;
}

.cart-copy {
  display: grid;
  gap: 10px;
}

.cart-copy h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1.08rem;
  line-height: 1;
}

.cart-copy p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.2;
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-row strong {
  color: var(--green-deep);
  font-size: 1.15rem;
}

.quantity-control {
  display: grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(6, 63, 115, 0.08);
}

.quantity-control button {
  display: grid;
  place-items: center;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--green-deep);
  cursor: pointer;
  font-weight: 950;
}

.quantity-control span {
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 950;
  text-align: center;
}

.cart-summary {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.cart-summary strong {
  color: var(--green-deep);
  font-size: 2rem;
  line-height: 1;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.checkout-button.is-done {
  background: var(--orange);
}

.store-main {
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.86), transparent 24%),
    radial-gradient(circle at 14% 28%, rgba(127, 216, 255, 0.42), transparent 28%),
    linear-gradient(180deg, #e7f8ff, #f3fbff 48%, #d8f2ff);
}

.store-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  min-height: 360px;
  padding: 124px clamp(18px, 5vw, 72px) 24px;
  overflow: hidden;
}

.store-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.84;
}

.store-hero p:not(.kicker) {
  max-width: 680px;
  margin-top: 24px;
}

.store-hero img {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  justify-self: center;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.18));
  transform: rotate(-2deg);
}

.store-hero::before {
  position: absolute;
  right: 5vw;
  bottom: 74px;
  width: min(380px, 34vw);
  aspect-ratio: 1;
  border: 24px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  content: "";
  animation: slow-spin 18s linear infinite;
}

.store-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 0 clamp(18px, 5vw, 72px) 34px;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(78px, 10vw, 150px);
}

.store-grid .product-card {
  min-height: 0;
}

.store-grid .product-visual {
  min-height: 300px;
}

.store-grid .product-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.store-grid .product-card.featured .product-visual {
  min-height: 100%;
}

.store-grid .product-card.featured .product-visual img {
  max-width: 82%;
  max-height: 420px;
}

.store-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(78px, 9vw, 120px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background: var(--green-deep);
  color: var(--white);
  overflow: hidden;
}

.store-note h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.9;
}

.store-note p {
  max-width: 680px;
  margin-top: 14px;
  color: var(--green);
}

.store-note .button {
  background: var(--orange);
}

.closing h2 {
  font-size: clamp(3rem, 7vw, 7rem);
}

.closing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 0.95fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  background: var(--green-deep);
  overflow: hidden;
}

.closing::before {
  position: absolute;
  right: -12vw;
  top: 10%;
  width: min(520px, 46vw);
  aspect-ratio: 1;
  border: 28px solid rgba(216, 242, 255, 0.14);
  border-radius: 999px;
  content: "";
  animation: slow-spin 18s linear infinite;
}

.closing::after {
  border-radius: 0;
  mix-blend-mode: screen;
}

.closing img {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  justify-self: center;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.22));
}

.closing .kicker {
  position: relative;
  z-index: 1;
  color: var(--green);
}

.closing h2 {
  position: relative;
  z-index: 1;
  color: var(--cream);
}

.closing .button {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  background: var(--orange);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 72px);
  background: #042f56;
  color: var(--white);
}

@keyframes hero-shine {
  0%,
  38% {
    transform: translateX(-45%);
    opacity: 0;
  }

  52% {
    opacity: 0.8;
  }

  78%,
  100% {
    transform: translateX(45%);
    opacity: 0;
  }
}

@keyframes float-bubble {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(14px, -34px, 0) scale(1.18);
  }
}

@keyframes cloud-drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 18px -8px;
  }
}

@keyframes citrus-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--citrus-rotate)) scale(var(--citrus-scale));
  }

  50% {
    transform: translate3d(12px, -22px, 0) rotate(calc(var(--citrus-rotate) + 18deg)) scale(var(--citrus-scale));
  }
}

@keyframes leaf-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-28deg);
  }

  50% {
    transform: translate3d(12px, -18px, 0) rotate(-12deg);
  }
}

@keyframes card-shimmer {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  22% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes doodle-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(7deg);
  }
}

@keyframes arrow-wiggle {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(10px) rotate(2deg);
  }
}

@keyframes ripple {
  0% {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(28);
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.footer-brand a {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 950;
  line-height: 0.78;
}

.footer-brand p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer nav,
.footer-meta {
  display: grid;
  gap: 12px;
  font-weight: 900;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-meta {
  color: rgba(255, 255, 255, 0.64);
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero {
    min-height: 980px;
    padding-top: 104px;
  }

  .hero-product {
    top: 43%;
    width: min(600px, 78vw);
  }

  .stat-left {
    left: 6vw;
    top: 18vh;
  }

  .stat-right {
    right: 6vw;
    top: 18vh;
  }

  .stat-bottom {
    left: 6vw;
    bottom: 34vh;
  }

  .intro,
  .flavours,
  .closing,
  .shop-head,
  .store-hero,
  .store-note,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .nutrition-strip {
    grid-template-columns: 1fr;
  }

  .nutrition-strip article {
    min-height: 170px;
  }

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

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

  .store-grid .product-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .benefit-card:nth-child(even) {
    margin-top: 0;
  }
}

@media (min-width: 981px) and (max-height: 1080px) {
  .hero-product {
    top: 43%;
    width: min(340px, 29vw);
  }

  .hero-title {
    bottom: 5vh;
  }

  .hero-title h1 {
    font-size: clamp(3.1rem, 7.4vw, 8rem);
  }
}

@media (max-width: 680px) {
  .hero-bubbles span {
    opacity: 0.55;
  }

  .hero-bubbles .lemon-one {
    left: -18px;
    top: 55%;
  }

  .hero-bubbles .lemon-two {
    right: -18px;
    top: 49%;
  }

  .hero-bubbles .leaf-one,
  .hero-bubbles .leaf-two,
  .natural-decor .leaf-one,
  .natural-decor .leaf-two,
  .natural-decor .lemon-two {
    display: none;
  }

  .moment-sun {
    left: 4%;
    width: 78px;
  }

  .moment-cloud {
    width: 108px;
    height: 40px;
    opacity: 0.54;
  }

  .cloud-two,
  .moment-citrus {
    display: none;
  }

  .moment-bubble {
    opacity: 0.5;
  }

  .site-nav {
    inset: 12px 14px auto;
    grid-template-columns: auto 1fr auto;
    padding-left: 18px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav nav {
    display: none;
  }

  .shop-link {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .cart-toggle {
    gap: 7px;
  }

  .hero {
    min-height: 940px;
    padding-inline: 16px;
  }

  .store-hero {
    min-height: 640px;
    padding: 118px 16px 56px;
  }

  .store-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.5rem);
  }

  .compare-table {
    border-radius: 24px;
  }

  .compare-table col.benefit-col {
    width: 44%;
  }

  .compare-table col.zoma-col,
  .compare-table col.classic-col {
    width: 28%;
  }

  .compare-table th,
  .compare-table td {
    height: 64px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .compare-table thead th {
    height: 76px;
    font-size: 0.66rem;
  }

  .compare-table td {
    font-size: 1.6rem;
  }

  .hero-product {
    top: 42%;
    width: min(92vw, 430px);
  }

  .stat {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .stat strong {
    font-size: 3.4rem;
  }

  .stat span {
    font-size: 0.68rem;
  }

  .stat-left {
    left: 18px;
    top: 108px;
  }

  .stat-right {
    right: 18px;
    top: 110px;
    text-align: right;
  }

  .stat-bottom {
    display: none;
  }

  .hero-title {
    bottom: 62px;
    width: calc(100% - 28px);
  }

  .hero-title h1,
  .intro h2,
  .love h2,
  .flavours h2,
  .compare h2,
  .shop h2,
  .closing h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  section:not(.hero) {
    padding-inline: 16px;
  }

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

  .store-toolbar {
    padding-inline: 16px;
  }

  .store-grid {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .store-grid .product-card.featured {
    grid-column: auto;
  }

  .store-note {
    margin-inline: 16px;
  }

  .cart-drawer {
    inset: 10px;
    width: auto;
    padding: 16px;
    border-radius: 26px;
  }

  .benefit-card {
    height: 300px;
  }

  .shop-head {
    gap: 22px;
  }

  .shop-controls {
    justify-content: space-between;
  }

  .product-card {
    flex-basis: min(86vw, 360px);
    min-height: 610px;
  }

  .product-track .product-card {
    height: 650px;
  }

  .product-track .product-visual {
    flex-basis: 300px;
    min-height: 300px;
  }

  .product-track .product-info {
    grid-template-rows: auto minmax(5.5rem, auto) minmax(86px, 1fr) auto auto;
  }

  .product-track .product-info h3 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .compare-head {
    display: block;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
