:root {
  --bg: #090b11;
  --bg-elevated: #111522;
  --bg-soft: #161b2a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.1);

  --text: #f5f7fb;
  --text-soft: #a8b0c3;
  --text-muted: #7e879d;

  --white: #ffffff;
  --black: #000000;

  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.25);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1200px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --fs-200: 0.875rem;
  --fs-300: 1rem;
  --fs-400: 1.125rem;
  --fs-500: 1.25rem;
  --fs-600: 1.5rem;
  --fs-700: 2rem;
  --fs-800: clamp(2.5rem, 6vw, 4.75rem);

  --transition: 180ms ease;

  /* default flavor = berry */
  --accent: #c954ff;
  --accent-2: #7d5cff;
  --accent-rgb: 201, 84, 255;
  --accent-2-rgb: 125, 92, 255;
}

body.flavor-berry {
  --accent: #c954ff;
  --accent-2: #7d5cff;
  --accent-rgb: 201, 84, 255;
  --accent-2-rgb: 125, 92, 255;
}

body.flavor-lemon {
  --accent: #d7ff35;
  --accent-2: #65e865;
  --accent-rgb: 215, 255, 53;
  --accent-2-rgb: 101, 232, 101;
}

body.flavor-orange {
  --accent: #ff9a3d;
  --accent-2: #ff6a3d;
  --accent-rgb: 255, 154, 61;
  --accent-2-rgb: 255, 106, 61;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--fs-300);
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(var(--accent-rgb), 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(var(--accent-2-rgb), 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #0a0d15 0%, #080a10 100%);
  min-height: 100vh;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

body,
.btn,
.flavor-pill,
.flavor-card,
.price-card,
.hero__badge-card,
.mobile-buybar,
.nav a,
.site-header {
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

ul {
  padding-left: 1.25rem;
}

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

.page-shell {
  position: relative;
  overflow: clip;
}



.page-decor__fruit {
  position: absolute;
  width: clamp(100px, 12vw, 180px);
  filter: blur(0.2px) drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}



.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(9, 11, 17, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand__mark {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand__text {
  font-size: 0.95rem;
}

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

.nav a {
  color: var(--text-soft);
  font-size: var(--fs-200);
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  opacity: 0.9;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  color: #080a10;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 26px rgba(var(--accent-rgb), 0.26);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 18px 34px rgba(var(--accent-rgb), 0.34);
}

.btn--ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--accent-rgb), 0.08);
}

.btn--small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: var(--fs-200);
}

.cart-button {
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition:
    border-color var(--transition),
    background-color var(--transition);
}

.cart-button:hover,
.cart-button:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--accent-rgb), 0.08);
}

.cart-count {
  min-width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #080a10;
  font-size: 0.75rem;
  font-weight: 800;
}

section {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto var(--space-12);
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.section-heading p:last-child {
  color: var(--text-soft);
}

.hero {
  padding: var(--space-20) 0 var(--space-16);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-12);
  align-items: center;
}

.hero__content {
  max-width: 42rem;
  position: relative;
  z-index: 5;
}

.hero__title {
  font-size: var(--fs-800);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 1.25rem;
}

.hero__text {
  max-width: 40rem;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero__flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.flavor-pill {
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  transition: all var(--transition);
}

.flavor-pill:hover,
.flavor-pill:focus-visible,
.flavor-pill.is-active {
  color: var(--white);
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(var(--accent-rgb), 0.12);
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.14);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1.5rem;
}

.hero__price-label {
  display: block;
  color: var(--text-muted);
  font-size: var(--fs-200);
  margin-bottom: 0.25rem;
}

.hero__price-value {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
}

.hero__points li {
  position: relative;
  padding-left: 1rem;
}

.hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.65);
}

.hero__media {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
  z-index: 2;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0.6);
  background: radial-gradient(
    circle,
    rgba(var(--accent-rgb), 0.28) 0%,
    rgba(var(--accent-rgb), 0.12) 35%,
    transparent 72%
  );
  opacity: 0;
  pointer-events: none;
  filter: blur(18px);
  z-index: 0;
}

.hero__media.is-rippling::before {
  animation: heroRipple 0.65s ease-out;
}

@keyframes heroRipple {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.55);
  }
  20% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.9);
  }
}

.hero__media.is-pulsing .hero__glow {
  animation: heroGlowPulse 0.45s ease;
}

@keyframes heroGlowPulse {
  0% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
}

.hero__media.is-switching {
  opacity: 0;
  filter: blur(10px);
  transform: scale(0.985);
}

.hero__splash-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__splash {
  position: absolute;
  will-change: transform;
  transform-origin: center;
  filter: drop-shadow(0 16px 30px rgba(var(--accent-rgb), 0.18))
    drop-shadow(0 0 34px rgba(var(--accent-rgb), 0.16));
}

.hero__splash--a {
  width: min(86%, 450px);
  left: 6%;
  top: 16%;
  transform: rotate(-24deg);
  opacity: 0.84;

  animation: splashFloatA 8s ease-in-out infinite;
}

.hero__glow,
.hero__bg--aura,
.story-product__glow,
.flavors__media-glow {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(var(--accent-rgb), 0.28) 0%,
    rgba(var(--accent-2-rgb), 0.18) 30%,
    transparent 70%
  );
  filter: blur(38px);
  pointer-events: none;
}

.hero__glow {
  width: 440px;
  height: 440px;
  z-index: 0;
  opacity: 0.92;
  background: radial-gradient(
    circle,
    rgba(var(--accent-rgb), 0.3) 0%,
    rgba(var(--accent-2-rgb), 0.18) 32%,
    transparent 72%
  );
  filter: blur(52px);
}
.hero__bg--aura {
  width: min(900px, 90vw);
  height: 420px;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}

.hero__product {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 24px rgba(var(--accent-rgb), 0.08));
  animation: productFloat 6.5s ease-in-out infinite;
}

.hero__product-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  aspect-ratio: 0.82 / 1;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(var(--accent-rgb), 0.12),
      transparent 52%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01)
    ),
    linear-gradient(180deg, rgba(5, 7, 12, 0.92), rgba(3, 4, 8, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 60px rgba(0, 0, 0, 0.34),
    0 0 40px rgba(var(--accent-rgb), 0.08);
  overflow: hidden;
}

.hero__product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22),
    rgba(var(--accent-rgb), 0.16),
    rgba(255, 255, 255, 0.04)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.75;
}

.hero__product-stage::after {
  content: "";
  position: absolute;
  inset: 10% 12% auto 12%;
  height: 42%;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02),
    transparent
  );
  opacity: 0.28;
  filter: blur(10px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero__fruit {
  position: absolute;
  z-index: 3;
  width: clamp(90px, 12vw, 150px);
  opacity: 0.96;
  pointer-events: none;
  will-change: transform;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.28));
}

.hero__fruit--1 {
  top: 10%;
  right: 9%;
  transform: rotate(10deg);
  animation: fruitFloatA 7s ease-in-out infinite;
}

.hero__fruit--2 {
  left: 8%;
  bottom: 15%;
  transform: rotate(-18deg) scale(0.92);
  animation: fruitFloatB 8.5s ease-in-out infinite;
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes splashFloatA {
  0%,
  100% {
    transform: translate(-52%, -56%) scale(1) rotate(-10deg);
  }
  50% {
    transform: translate(-50%, -54%) scale(1.035) rotate(-7deg);
  }
}

@keyframes splashFloatB {
  0%,
  100% {
    transform: translate(-46%, -44%) scale(1) rotate(8deg);
  }
  50% {
    transform: translate(-48%, -46%) scale(1.03) rotate(4deg);
  }
}

@keyframes fruitFloatA {
  0%,
  100% {
    transform: translateY(0) rotate(10deg);
  }
  50% {
    transform: translateY(-10px) rotate(16deg);
  }
}

@keyframes fruitFloatB {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(8px) rotate(-14deg);
  }
}

.hero__badge-wrap {
  position: absolute;
  right: 0;
  bottom: 6%;
  z-index: 5;
}

.hero__badge-card {
  position: relative;
  z-index: 2;
  min-width: 170px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(15, 18, 27, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.hero__badge-wrap .hero__splash--b {
  position: absolute;
  left: 70%;
  top: 100%;
  width: 100%;
  transform: translate(-50%, -42%) rotate(-6deg);
  transform-origin: center;
  opacity: 0.92;
  pointer-events: none;
  mix-blend-mode: screen;

  z-index: 3;
}

.hero__badge-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.benefits-strip {
  padding: 0 0 var(--space-16);
}

.benefits-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.benefit,
.formula-card,
.review-card,
.price-card,
.flavor-card,
.final-cta__box,
.story-step,
.faq-item,
.cart-drawer__panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.benefit {
 position: relative;
  padding: 1.1rem 1.1rem 1.2rem;
  min-height: 150px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.benefit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.65;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(var(--accent-rgb), 0.14) 42%,
      transparent 72%
    );

  filter:
    blur(0.5px)
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.08))
    drop-shadow(0 0 22px rgba(var(--accent-rgb), 0.12));

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.benefit:nth-child(1)::after {
  -webkit-mask-image: url("assets/icon-hydration.svg");
  mask-image: url("assets/icon-hydration.svg");
}

.benefit:nth-child(2)::after {
  -webkit-mask-image: url("assets/icon-recovery.svg");
  mask-image: url("assets/icon-recovery.svg");
}

.benefit:nth-child(3)::after {
  -webkit-mask-image: url("assets/icon-performance.svg");
  mask-image: url("assets/icon-performance.svg");
}

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

.benefit h2 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 18px rgba(var(--accent-rgb), 0.08);
}

.benefit p {
  max-width: 24ch;
  color: var(--text-soft);
  margin-bottom: 0;
  text-wrap: balance;
}




.story-scroll,
.formula,
.flavors,
.pricing,
.social-proof,
.faq,
.final-cta {
  padding: var(--space-16) 0;
}

.story-scroll__grid,
.flavors__grid,
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.story-scroll__media {
  position: sticky;
  top: 6.5rem;
}

.story-product {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(var(--accent-rgb), 0.12),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.story-product__glow {
  width: 260px;
  height: 260px;
  z-index: 0;
}

.story-product__image {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.35));
}

.story-scroll__steps {
  display: grid;
  gap: 1rem;
}

.story-step {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  opacity: 0.72;
}

.story-step.is-active {
  opacity: 1;
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 18px 38px rgba(var(--accent-rgb), 0.12);
}

.story-step__index {
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.story-step h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.story-step p:last-child {
  color: var(--text-soft);
  margin-bottom: 0;
}

.formula__grid,
.reviews-grid,
.pricing__grid {
  display: grid;
  gap: var(--space-6);
}
.formula__grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.formula-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

.formula-card__label,
.price-card__label,
.price-card__meta {
  color: var(--text-muted);
  font-size: var(--fs-200);
}

.formula-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.formula-card p:last-child {
  color: var(--text-soft);
  margin-bottom: 0;
}

.flavors__media-shell {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(var(--accent-rgb), 0.14),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.015)
    );
  overflow: hidden;
}

.flavors__media-glow {
  width: 280px;
  height: 280px;
  z-index: 0;
}

.flavors__product {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.35));
}

.flavor-cards {
  display: grid;
  gap: 1rem;
}

.flavor-card {
  text-align: left;
  padding: 1.25rem 1.25rem;
  border-radius: var(--radius-md);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.flavor-card:hover,
.flavor-card:focus-visible,
.flavor-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.35);
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.12),
    rgba(255, 255, 255, 0.03)
  );
}

.flavor-card__top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.flavor-card__dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.4);
}

.flavor-card__name {
  font-weight: 700;
  color: var(--text);
}

.flavor-card__desc {
  color: var(--text-soft);
}

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

.price-card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card--featured {
  border-color: rgba(var(--accent-rgb), 0.42);
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.14),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: 0 22px 46px rgba(var(--accent-rgb), 0.15);
}

.price-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #080a10;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.price-card h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  margin: 0.35rem 0 0.6rem;
}

.price-card__list {
  margin: 1rem 0 1.4rem;
  color: var(--text-soft);
}

.price-card__list li + li {
  margin-top: 0.45rem;
}

.add-pack-btn {
  width: 100%;
  margin-top: auto;
}

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

.review-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

.review-card__stars {
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.review-card p {
  color: var(--text-soft);
}

.review-card strong {
  display: inline-block;
  margin-top: 0.8rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-soft);
  margin-bottom: 0;
}

.final-cta__box {
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.final-cta__content h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.final-cta__content p:last-child {
  color: var(--text-soft);
  margin-bottom: 0;
  max-width: 44rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 8, 0.62);
  backdrop-filter: blur(6px);
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100dvh;
  border-radius: 0;
  background: rgba(12, 15, 24, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 220ms ease;
  overflow: hidden;
}

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

.cart-drawer__header,
.cart-footer {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-footer {
  margin-top: auto;
  border-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--white);
  font-size: 1.3rem;
}

.cart-items {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1.25rem;
  display: grid;
  gap: 1rem;

}

.cart-items::-webkit-scrollbar {
  width: 10px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.cart-items::-webkit-scrollbar-track {
  background: transparent;
}

.cart-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item--empty {
  text-align: center;
  color: var(--text-soft);
}

.cart-item--empty span {
  display: block;
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: var(--fs-200);
}

.cart-total {
  margin-bottom: 1rem;
  color: var(--text-soft);
}

.cart-total strong {
  color: var(--white);
}

.checkout-btn {
  width: 100%;
}

.mobile-buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(10, 12, 18, 0.9);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  
}

.mobile-buybar__inner {
  width: min(var(--container), 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
 
}

.mobile-buybar__label {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.mobile-buybar__price {
  font-size: 1.1rem;
}

@media (max-width: 1080px) {
  .hero__grid,
  .story-scroll__grid,
  .flavors__grid,
  .faq__grid,
  .reviews-grid,
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .benefits-strip__grid {
    grid-template-columns: 1fr;
  }

  .story-scroll__media {
    position: static;
  }

  .hero__media,
  .story-product,
  .flavors__media-shell {
    min-height: 440px;
  }

  .final-cta__box {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-decor {
    display: none;
  }
}

@media (max-width: 820px) {
  .nav,
  .site-header__actions .btn--small {
    display: none;
  }


  .site-header__actions {
    gap: 0.5rem;
  }

  .hero {
    padding-top: var(--space-16);
  }

  .hero__title {
    line-height: 1;
  }

  .hero__media {
    min-height: 400px;
  }

  .hero__splash--a {
    width: min(78%, 300px);
    left: -2%;
    top: 10%;
    opacity: 0.72;
  }

  .hero__splash--b {
    width: min(38%, 140px);
  }

  .hero__badge-card {
    right: 1rem;
    bottom: 1rem;
  }

  .mobile-buybar {
    display: block;
  }

  body {
    padding-bottom: 88px;
  }
}

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

  .site-header__inner {
    min-height: 70px;
  }

  .brand__text {
    font-size: 0.86rem;
  }

  .hero__actions,
  .hero__meta,
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .cart-button {
    width: 100%;
  }

  .hero__flavors {
    gap: 0.5rem;
  }

  .flavor-pill {
    width: 100%;
    justify-content: center;
  }

  .hero__product,
  .story-product__image,
  .flavors__product {
    width: min(100%, 320px);
  }

  .hero__fruit {
    width: 84px;
  }

  .hero__splash--a {
    width: min(100%, 340px);
  }

  .hero__splash--b {
    width: min(92%, 310px);
  }

  .hero__badge-card {
    min-width: auto;
    padding: 0.85rem 0.95rem;
  }

  .price-card h3 {
    font-size: 2.2rem;
  }

  .benefit {
    padding: 1.1rem;
  }


  .benefit h2 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
  }

  .benefit p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}

.hero__glow {
  z-index: 0;
}

.hero__splash-layer--under {
  z-index: 1;
}

.hero__product-stage {
  z-index: 2;
}

.hero__splash-layer--over {
  z-index: 3;
}

.hero__fruit {
  z-index: 4;
}


.cart-item__top,
.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item__top {
  margin-bottom: 0.85rem;
}

.cart-item__meta {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cart-item__remove {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-weight: 600;
  cursor: pointer;
}

.cart-item__remove:hover,
.cart-item__remove:focus-visible {
  color: var(--white);
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-qty button {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--white);
  display: grid;
  place-items: center;
  padding: 0;
}

.cart-qty button:hover,
.cart-qty button:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--accent-rgb), 0.08);
}



.cart-item__select {
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121725;
  color: #f5f7fb;
  padding: 0.65rem 0.8rem;
  appearance: none;
}

.cart-item__select option {
  background: #121725;
  color: #f5f7fb;
}

.cart-item__select:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}



.cart-item__info {
  min-width: 0;
  flex: 1;
}

.cart-item__label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.cart-item__select:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.cart-item__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.3rem;
}

.cart-item__submeta {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.checkout-btn:disabled,
.checkout-btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

@media (max-width: 560px) {
  .cart-item__top,
  .cart-item__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item__remove {
    padding-inline: 0;
  }
}

.cart-quick-add {
  padding: 1rem 1.25rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.cart-quick-add__toggle {
  width: 100%;
  min-height: 46px;

  border-radius: 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.55);

  background: transparent;
  color: var(--text);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0.8rem 1rem;
  font-weight: 700;

  transition: all .18s ease;
}

.cart-quick-add__toggle:hover {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.9);
}

.cart-quick-add__toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.2);
}
.cart-quick-add__chevron {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.cart-quick-add__toggle[aria-expanded="true"] .cart-quick-add__chevron {
  transform: rotate(45deg);
}

.cart-quick-add__panel {
  padding-top: 0.9rem;
}

.cart-quick-add__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.cart-quick-add__field {
  display: grid;
  gap: 0.35rem;
}

.cart-quick-add__field span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-quick-add__field select {
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121725;
  color: #f5f7fb;
  padding: 0.65rem 0.8rem;
  appearance: none;
}

.cart-quick-add__field select option {
  background: #121725;
  color: #f5f7fb;
}

.cart-quick-add__field select:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.cart-quick-add__button {
  width: 100%;
}

@media (max-width: 560px) {
  .cart-quick-add {
    padding: 0.85rem 1rem 0.4rem;
  }

  .cart-quick-add__grid {
    grid-template-columns: 1fr;
  }
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 22px;

  width: 46px;
  height: 46px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);

  background: rgba(12,15,24,0.85);
  backdrop-filter: blur(10px);

  display: grid;
  place-items: center;

  opacity: 0;
  pointer-events: none;

  transform: translateY(10px);
  transition: all .25s ease;

  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* daszek /\ */

.back-to-top .roof {
  width: 14px;
  height: 14px;

  border-top: 2px solid white;
  border-right: 2px solid white;

  transform: rotate(-45deg);
}

.back-to-top:hover {
  border-color: rgba(var(--accent-rgb),0.45);
}


@media (max-width: 768px) {
  .back-to-top {
    bottom: 100px;
  }
}


html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero {
  overflow-x: hidden;
}

.mobile-buybar__meta {
  min-width: 0;
  flex: 1 1 auto;
}

.mobile-buybar__inner > * {
  min-width: 0;
}

@media (max-width: 560px) {
  .mobile-buybar .btn {
    width: auto;
    flex: 0 0 auto;
  }
}

@media (max-width: 560px) {
  .final-cta__actions {
    flex-direction: row;
    align-items: stretch;
    gap: 0.75rem;
  }

  .final-cta__actions .btn--primary {
    flex: 1.2 1 0;
    width: auto;
  }

  .final-cta__actions .btn--ghost {
    flex: 0.9 1 0;
    width: auto;
  }
}

.final-cta__actions .btn {
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__title-mobile {
  display: none;
}

.hero__eyebrow-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero__media {
    order: -1;
    display: grid;
    align-content: end;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: -38px;
    z-index: 5;
  }

  .hero__fruit {
    width: 7em;
  }

  .hero__title-desktop {
    display: none;
  }

  .hero__title-mobile {
    display: inline;
  }

  .hero__content .eyebrow {
    display: none;
  }

  .hero__eyebrow-mobile {
    display: inline-block;
    justify-self: start;
    align-self: end;
    margin: 0 0 0.75rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(10, 10, 20, 0.55);
    backdrop-filter: blur(6px);
    z-index: 6;
  }

  .hero__title {
    margin-top: 0;
    margin-bottom: 14px;
    line-height: 1.05;
  }

}

.cart-summary {
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cart-label {
    display: none;
  }
}

.cart-button{
  display:flex;
  align-items:center;
  gap:8px;
}

.cart-icon{
  display:flex;
  align-items:center;
  opacity:.9;
}

.cart-summary{
  font-weight:700;
  white-space:nowrap;
}

@media (max-width:768px){

  .cart-label{
    display:none;
  }

  .cart-icon{
    margin-right:2px;
  }

}

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

.site-header{
  position: fixed;
  width: 100%;
}


  .hero{
    padding-top: 6rem;
  }