:root {
  --font-sans: "Segoe UI", "Inter", Arial, sans-serif;
  --ink: #070707;
  --text: #333333;
  --muted: #6f6f6f;
  --paper: #ffffff;
  --soft: #f5f5f3;
  --soft-2: #eeeeec;
  --line: #dededb;
  --black: #000000;
  --green: #15803d;
  --green-soft: #edf7ef;
  --gold: #b88b4a;
  --rose: #eab0ad;
  --blue: #dce9f4;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --container: 1500px;
  --gutter: clamp(16px, 4vw, 44px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 92px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  cursor: pointer;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

:focus-visible {
  outline: 3px solid rgba(21, 128, 61, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 90;
  transform: translateY(-140%);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.store-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.ticker {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 70px);
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  line-height: 0.85;
  transform: skew(-8deg);
}

.brand span {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  font-style: italic;
}

.brand small {
  padding-left: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 46px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.cart-chip {
  min-width: 56px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
}

.cart-chip svg {
  width: 20px;
  height: 20px;
}

.cart-chip span {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.cart-chip--link {
  min-width: auto;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-shell {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(430px, 600px);
  gap: clamp(28px, 4vw, 50px);
  align-items: start;
}

.gallery {
  display: grid;
  gap: 10px;
}

.gallery-stage {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.gallery-thumbnails {
  display: grid;
  align-content: start;
  gap: 8px;
}

.gallery-thumb {
  width: 82px;
  aspect-ratio: 1;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gallery-thumb:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.gallery-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(14, 125, 83, 0.14);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.main-media {
  min-height: 640px;
  border-radius: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 72% 86%, rgba(255, 255, 255, 0.95), transparent 0 15px, rgba(255, 255, 255, 0.5) 16px, transparent 34px),
    linear-gradient(145deg, #f8f8f7, #eeeeeb);
}

.main-media img {
  width: auto;
  max-width: 92%;
  max-height: 620px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.14));
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-media.is-switching img {
  opacity: 0.62;
  transform: scale(0.985);
}

.gallery-loading {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(14, 24, 20, 0.86);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.product-performance .main-media,
.main-media--performance {
  background:
    radial-gradient(circle at 52% 18%, rgba(52, 183, 231, 0.58), transparent 0 190px),
    radial-gradient(circle at 48% 70%, rgba(43, 150, 184, 0.28), transparent 0 250px),
    linear-gradient(145deg, #02060a, #0f3f54 55%, #020407);
}

.product-performance .main-media img {
  width: min(88%, 820px);
}

.product-gourmet .main-media,
.main-media--gourmet {
  background: #fff;
}

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

.story-grid--single {
  grid-template-columns: 1fr;
}

.story-grid article {
  min-height: 220px;
  padding: 34px 36px;
  background: var(--soft);
}

.story-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.story-grid h2 {
  max-width: 390px;
  margin: 24px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.story-grid p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

/* Video showcase carousel: one active video with neighboring slides visible. */
.video-showcase__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  height: min(620px, 64vw);
}

.video-showcase__controls {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.video-showcase__rail {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-showcase__active {
  position: relative;
  z-index: 3;
  width: min(330px, 54vw);
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0e1714;
  box-shadow: 0 22px 50px rgba(14, 23, 20, 0.22);
}

.video-showcase__active-media {
  max-height: none;
}

.video-showcase__thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 196px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  pointer-events: auto;
  opacity: 0.48;
  transform: translate(-50%, -50%) scale(0.86);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.video-showcase__thumb.is-active {
  opacity: 0;
  pointer-events: none;
}

.video-showcase__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  pointer-events: auto;
}

.video-showcase__nav[data-video-prev] {
  left: max(16px, calc(50% - 270px));
}

.video-showcase__nav[data-video-next] {
  right: max(16px, calc(50% - 270px));
}

@media (max-width: 760px) {
  .video-showcase {
    padding: 36px 0 40px;
  }

  .video-showcase__stage {
    height: 500px;
    min-height: 0;
  }

  .video-showcase__active {
    width: min(270px, 64vw);
  }

  .video-showcase__thumb {
    width: 132px;
  }

  .video-showcase__nav {
    width: 40px;
    height: 40px;
  }

  .video-showcase__nav[data-video-prev] {
    left: 10px;
  }

  .video-showcase__nav[data-video-next] {
    right: 10px;
  }
}

/* Final video carousel layout */
.video-showcase__intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.video-showcase__stage {
  position: relative;
  display: block;
  min-height: 430px;
  height: min(620px, 64vw);
}

.video-showcase__controls {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.video-showcase__rail {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-showcase__active {
  position: relative;
  z-index: 3;
  width: min(330px, 54vw);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #0e1714;
  box-shadow: 0 22px 50px rgba(14, 23, 20, 0.22);
}

.video-showcase__active-media {
  max-height: none;
}

.video-showcase__thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 196px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  pointer-events: auto;
  opacity: 0.48;
  transform: translate(-50%, -50%) scale(0.86);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.video-showcase__thumb.is-active {
  opacity: 0;
  pointer-events: none;
}

.video-showcase__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  pointer-events: auto;
}

.video-showcase__nav[data-video-prev] {
  left: max(16px, calc(50% - 270px));
}

.video-showcase__nav[data-video-next] {
  right: max(16px, calc(50% - 270px));
}

@media (max-width: 760px) {
  .video-showcase {
    padding: 36px 0 40px;
  }

  .video-showcase__stage {
    height: 500px;
    min-height: 0;
  }

  .video-showcase__active {
    width: min(270px, 64vw);
  }

  .video-showcase__thumb {
    width: 132px;
  }

  .video-showcase__nav {
    width: 40px;
    height: 40px;
  }

  .video-showcase__nav[data-video-prev] {
    left: 10px;
  }

  .video-showcase__nav[data-video-next] {
    right: 10px;
  }
}

.video-showcase {
  max-width: 1240px;
  margin: 48px auto;
  padding: clamp(32px, 6vw, 72px) clamp(16px, 5vw, 80px);
  background: #f4f5f2;
}

.video-showcase__intro {
  max-width: 680px;
  margin-bottom: 28px;
}

.video-showcase__eyebrow {
  color: #188c45;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-showcase__intro h2 {
  max-width: 700px;
  margin: 16px 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
}

.video-showcase__intro p {
  margin: 0;
  color: var(--muted);
}

.video-showcase__stage {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: 24px;
  align-items: end;
}

.video-showcase__active {
  width: 100%;
  max-width: 380px;
  justify-self: center;
  overflow: hidden;
  background: #0e1714;
  border-radius: 8px;
}

.video-showcase__active-media {
  display: block;
  width: 100%;
  max-height: 620px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #0e1714;
}

.video-showcase__caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.video-showcase__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.video-showcase__rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.video-showcase__thumb {
  position: relative;
  min-height: 150px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d6ddd8;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.video-showcase__thumb-media {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  background: #0e1714;
}

.video-showcase__thumb::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .18);
  content: "";
  pointer-events: none;
}

.video-showcase__thumb-index,
.video-showcase__thumb-title {
  position: absolute;
  z-index: 1;
  color: #fff;
}

.video-showcase__thumb-index {
  top: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: 800;
}

.video-showcase__thumb-title {
  right: 10px;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: 800;
}

.video-showcase__thumb.is-active {
  border-color: #18a451;
  box-shadow: 0 0 0 2px #18a451;
}

.video-showcase__nav {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid #cfd8d2;
  border-radius: 50%;
  background: #fff;
  color: #0e1714;
  cursor: pointer;
  font-size: 20px;
}

.video-showcase__nav:hover {
  border-color: #18a451;
  color: #18a451;
}

@media (max-width: 760px) {
  .video-showcase {
    margin: 32px 0;
    padding: 32px 16px;
  }

  .video-showcase__stage {
    grid-template-columns: 1fr;
  }

  .video-showcase__active {
    max-width: 300px;
  }

  .video-showcase__controls {
    align-items: stretch;
  }

  .video-showcase__rail {
    display: flex;
    overflow-x: auto;
    padding: 4px;
    scroll-snap-type: x mandatory;
  }

  .video-showcase__thumb {
    flex: 0 0 132px;
    scroll-snap-align: start;
  }
}

/* Video showcase carousel */
.video-showcase {
  max-width: 1240px;
  margin: 48px auto;
  padding: clamp(36px, 6vw, 72px) 0;
  overflow: hidden;
  background: #f4f5f2;
}

.video-showcase__intro {
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 0 24px;
  text-align: center;
}

.video-showcase__intro h2 {
  margin: 16px 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
}

.video-showcase__intro p {
  margin: 0;
  color: var(--muted);
}

.video-showcase__stage {
  position: relative;
  display: block;
  height: min(620px, 64vw);
  min-height: 430px;
}

.video-showcase__active {
  position: relative;
  z-index: 3;
  width: min(330px, 54vw);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #0e1714;
  box-shadow: 0 22px 50px rgba(14, 23, 20, .22);
}

.video-showcase__active-media {
  display: block;
  width: 100%;
  max-height: none;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #0e1714;
}

.video-showcase__caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.video-showcase__controls {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.video-showcase__rail {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-showcase__thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 196px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d6ddd8;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  pointer-events: auto;
  opacity: .48;
  transform: translate(-50%, -50%) scale(.86);
  transition: transform .24s ease, opacity .24s ease, box-shadow .24s ease;
}

.video-showcase__thumb-media {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  background: #0e1714;
}

.video-showcase__thumb::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .18);
  content: "";
  pointer-events: none;
}

.video-showcase__thumb-index,
.video-showcase__thumb-title {
  position: absolute;
  z-index: 1;
  color: #fff;
}

.video-showcase__thumb-index {
  top: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: 800;
}

.video-showcase__thumb-title {
  right: 10px;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: 800;
}

.video-showcase__thumb.is-active {
  opacity: 0;
  pointer-events: none;
  box-shadow: none;
}

.video-showcase__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  flex: none;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: 1px solid #cfd8d2;
  border-radius: 50%;
  background: #fff;
  color: #0e1714;
  cursor: pointer;
  font-size: 20px;
  pointer-events: auto;
}

.video-showcase__nav:hover {
  border-color: #18a451;
  color: #18a451;
}

.video-showcase__nav[data-video-prev] {
  left: max(16px, calc(50% - 270px));
}

.video-showcase__nav[data-video-next] {
  right: max(16px, calc(50% - 270px));
}

@media (max-width: 760px) {
  .video-showcase {
    margin: 32px 0;
    padding: 36px 0 40px;
  }

  .video-showcase__intro {
    padding: 0 16px;
  }

  .video-showcase__stage {
    height: 500px;
    min-height: 0;
  }

  .video-showcase__active {
    width: min(270px, 64vw);
  }

  .video-showcase__thumb {
    width: 132px;
  }

  .video-showcase__nav {
    width: 40px;
    height: 40px;
  }

  .video-showcase__nav[data-video-prev] {
    left: 10px;
  }

  .video-showcase__nav[data-video-next] {
    right: 10px;
  }
}

.buy-card {
  position: sticky;
  top: 124px;
  border: 1px solid #dfe5e2;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.11);
  overflow: hidden;
}

.social-proof {
  min-height: 42px;
  border-bottom: 1px solid #e8eeeb;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: #f7faf8;
  color: var(--text);
  font-size: 13px;
}

.social-proof p {
  margin: 0;
}

.avatar-carousel {
  width: 64px;
  min-width: 64px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
}

.avatar-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: buyerAvatarSlide 8s linear infinite;
}

.avatar-track span {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  flex: 0 0 22px;
  margin-left: -6px;
  background-image:
    var(--avatar-photo),
    radial-gradient(circle at 50% 36%, rgba(255, 238, 220, 0.98) 0 21%, transparent 22%),
    radial-gradient(circle at 50% 88%, var(--shirt, #166534) 0 36%, transparent 37%),
    linear-gradient(135deg, var(--avatar-a, #d9f99d), var(--avatar-b, #86efac));
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.avatar-track span:first-child {
  margin-left: 0;
}

.avatar-track span:nth-child(1),
.avatar-track span:nth-child(7) {
  --avatar-photo: url("https://i.pravatar.cc/64?img=12");
  --avatar-a: #d9f99d;
  --avatar-b: #4ade80;
  --shirt: #166534;
}

.avatar-track span:nth-child(2),
.avatar-track span:nth-child(8) {
  --avatar-photo: url("https://i.pravatar.cc/64?img=32");
  --avatar-a: #fde68a;
  --avatar-b: #fb923c;
  --shirt: #78350f;
}

.avatar-track span:nth-child(3),
.avatar-track span:nth-child(9) {
  --avatar-photo: url("https://i.pravatar.cc/64?img=48");
  --avatar-a: #bfdbfe;
  --avatar-b: #60a5fa;
  --shirt: #1e3a8a;
}

.avatar-track span:nth-child(4),
.avatar-track span:nth-child(10) {
  --avatar-photo: url("https://i.pravatar.cc/64?img=5");
  --avatar-a: #fecdd3;
  --avatar-b: #f472b6;
  --shirt: #831843;
}

.avatar-track span:nth-child(5),
.avatar-track span:nth-child(11) {
  --avatar-photo: url("https://i.pravatar.cc/64?img=56");
  --avatar-a: #ddd6fe;
  --avatar-b: #8b5cf6;
  --shirt: #4c1d95;
}

.avatar-track span:nth-child(6),
.avatar-track span:nth-child(12) {
  --avatar-photo: url("https://i.pravatar.cc/64?img=68");
  --avatar-a: #ccfbf1;
  --avatar-b: #14b8a6;
  --shirt: #134e4a;
}

@keyframes buyerAvatarSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-96px);
  }
}

.product-heading,
.addons,
.mini-benefits {
  padding-right: 18px;
  padding-left: 18px;
}

.product-heading {
  padding-top: 30px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 44px);
  line-height: 0.98;
  font-weight: 900;
}

.buy-card h1 {
  max-width: 100%;
  font-size: clamp(30px, 3.2vw, 36px);
  line-height: 1.08;
}

.rating {
  margin-top: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.rating strong {
  color: var(--ink);
}

.stars {
  display: inline-flex;
  gap: 2px;
}

.stars i {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 1px solid #b7e6be;
  background: #e9f8eb;
  color: #118b2e;
  font-size: 10px;
  font-style: normal;
  line-height: 1;
}

.price-line {
  margin: 18px 0 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text);
  font-size: 18px;
}

.price-line s {
  color: var(--muted);
}

.price-line strong {
  color: #2fca46;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0;
}

.stock-pill {
  min-height: 30px;
  margin: 28px 18px 0;
  border: 1px solid #dfe5e2;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  background: #ffffff;
  color: var(--text);
  font-size: 13px;
}

.stock-pill > span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #000;
}

.stock-pill--unavailable {
  border-color: #d9dedb;
  background: #f7f8f7;
}

.stock-pill--unavailable > span {
  background: #8a8a8a;
}

.product-copy {
  margin: 24px 18px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.check-list {
  margin: 24px 18px 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  color: var(--text);
  font-size: 14px;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
}

.check-list svg {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  padding: 3px;
  stroke-width: 3;
}

.addons {
  margin-top: 54px;
}

.addons h2 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.addon-card {
  min-height: 96px;
  border: 1px solid #e2e7e4;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f7f8f7;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.addon-card + .addon-card {
  margin-top: 10px;
}

.addon-card.is-selected {
  border-color: #8bdc96;
  background: #f0fbf2;
  box-shadow: inset 0 0 0 1px rgba(47, 202, 70, 0.22);
}

.addon-thumb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #101010;
  font-weight: 900;
}

.addon-thumb--blue {
  background: var(--blue);
}

.addon-thumb--green {
  background: #dff4d7;
}

.addon-thumb--rose {
  background: var(--rose);
}

.addon-thumb--product {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid #dfe7e2;
  border-radius: 14px;
  background: #fff;
}

.addon-thumb--product img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.addon-thumb--product span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #1289aa, #0c5169);
  font-size: 22px;
  font-weight: 900;
}

.addon-copy {
  min-width: 0;
}

.addon-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.addon-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  border-radius: 999px;
  background: #daf3dc;
  color: #106b24;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.addon-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.addon-card p {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.addon-card p del {
  margin-left: 5px;
  color: var(--muted);
  font-weight: 400;
}

.addon-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.addon-card p span {
  display: inline-flex;
  margin-left: 5px;
  border-radius: 4px;
  background: #e4ebe6;
  color: #51605a;
  padding: 2px 6px;
  font-size: 11px;
}

.addon-card.is-selected p span {
  background: #d8f4dc;
  color: #106b24;
}

.addon-flavor-picker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.addon-flavor-picker select {
  min-height: 30px;
  max-width: 220px;
  border: 1px solid #cbd8d0;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  padding: 4px 8px;
  font: inherit;
}

.addon-flavor-picker select:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.switch {
  width: 44px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  justify-self: end;
  background: #d9d9d9;
  padding: 3px;
  cursor: pointer;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.switch span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
  background: #aaa;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.switch[aria-checked="true"] {
  background: #2fca46;
  box-shadow: 0 0 0 3px rgba(47, 202, 70, 0.16);
}

.switch[aria-checked="true"] span {
  transform: translateX(20px);
  background: #fff;
}

.add-button,
.checkout-button {
  min-height: 62px;
  border: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #000;
  color: #fff;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.add-button {
  width: calc(100% - 32px);
  margin: 24px 16px 0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.add-button svg {
  width: 19px;
  height: 19px;
}

.add-button s {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.add-button:hover,
.checkout-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.add-button.is-loading {
  pointer-events: none;
  background: #222;
}

.mini-benefits {
  margin-top: 20px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.mini-benefits div {
  display: grid;
  justify-items: center;
  gap: 3px;
}

.mini-benefits svg {
  width: 23px;
  height: 23px;
}

.mini-benefits strong {
  margin-top: 5px;
  font-size: 15px;
}

.mini-benefits span {
  color: var(--muted);
  font-size: 13px;
}

.below-fold {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin: 10px auto 90px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.below-fold article {
  min-height: 250px;
  padding: 42px 44px;
  background: var(--soft);
}

.below-fold h2 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.below-fold p {
  max-width: 460px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.38);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(430px, 100vw);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  background: #fff;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
  transform: translateX(105%);
  transition: transform 240ms ease;
}

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

.cart-head {
  min-height: 86px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.cart-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-head h2 {
  margin: 3px 0 0;
  font-size: 25px;
  line-height: 1;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.cart-body {
  overflow: auto;
  padding: 18px 20px;
}

.cart-item,
.cart-addon-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
}

.cart-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.cart-item img {
  width: 72px;
  height: 62px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--soft);
}

.cart-item strong,
.cart-addon-row strong {
  display: block;
  font-size: 14px;
}

.cart-item span,
.cart-addon-row .cart-addon-copy span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.cart-item b,
.cart-addon-row b {
  font-size: 14px;
  white-space: nowrap;
}

.cart-addons {
  display: grid;
  gap: 14px;
  padding: 18px 0;
}

.cart-addon-row {
  grid-template-columns: 52px minmax(0, 1fr) auto;
}

.cart-addon-copy {
  min-width: 0;
}

.cart-addon-thumb {
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, var(--soft));
}

.cart-addon-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 4px;
}

.cart-addon-thumb--fallback {
  background: var(--green-soft);
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 420px) {
  .cart-addon-row {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .cart-addon-thumb {
    width: 48px;
    height: 48px;
  }

  .cart-addon-row b {
    font-size: 13px;
  }
}

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

.cart-total div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-total span {
  color: var(--muted);
}

.total-line {
  font-size: 22px;
}

.checkout-button {
  margin: 0 20px 14px;
}

.cart-status {
  min-height: 42px;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 100;
  min-width: min(340px, calc(100vw - 32px));
  border-radius: 999px;
  padding: 13px 18px;
  background: #000;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.cart-drawer.is-open + .toast {
  top: 18px;
  bottom: auto;
}

.price-each {
  color: #2fca46;
  font-size: 15px;
  font-weight: 800;
}

.installments {
  max-width: 510px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.launch-ribbon {
  margin: 18px 18px 0;
  border-radius: 0;
  padding: 8px 14px;
  background: #2f8f6f;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-gourmet .buy-card {
  border-color: #dfe5e2;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
  color: var(--ink);
}

.product-gourmet .social-proof,
.product-gourmet .addons {
  border-color: #e8eeeb;
}

.product-gourmet .social-proof {
  color: var(--text);
}

.product-gourmet h1,
.product-gourmet .rating strong,
.product-gourmet .check-list li {
  color: var(--ink);
}

.product-gourmet .rating,
.product-gourmet .product-copy,
.product-gourmet .installments {
  color: var(--muted);
}

.product-gourmet .eyebrow,
.product-gourmet .price-line strong,
.product-gourmet .price-each,
.product-gourmet .sticky-buybar strong {
  color: #2fca46;
}

.product-gourmet .price-line s {
  color: var(--muted);
}

.product-performance .buy-card {
  border-color: #dfe5e2;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
  color: var(--ink);
}

.product-performance .social-proof {
  border-color: #e8eeeb;
  color: var(--text);
}

.product-performance h1,
.product-performance .rating strong,
.product-performance .check-list li {
  color: var(--ink);
}

.product-performance .rating,
.product-performance .product-copy,
.product-performance .installments {
  color: var(--muted);
}

.product-performance .eyebrow,
.product-performance .price-line strong,
.product-performance .price-each,
.product-performance .sticky-buybar strong {
  color: #2fca46;
}

.product-performance .price-line s {
  color: var(--muted);
}

.product-performance .launch-ribbon {
  background: #2f8f6f;
}

.product-gourmet .launch-ribbon {
  background: #2f8f6f;
}

.notify-panel {
  margin: 12px 18px 0;
  border: 1px solid #e3e8e5;
  border-radius: var(--radius);
  padding: 14px;
  background: #f7faf8;
}

.notify-panel h2 {
  margin: 0 0 8px;
  font-size: 18px;
  text-transform: uppercase;
}

.notify-panel p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 14px;
}

.notify-panel form {
  display: grid;
  gap: 10px;
}

.notify-panel label {
  display: grid;
  gap: 5px;
}

.notify-panel label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.notify-panel input {
  min-height: 44px;
  border: 1px solid #dfe5e2;
  border-radius: var(--radius);
  padding: 0 12px;
  background: #fff;
}

.notify-panel button {
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  background: #8a8a8a;
  color: #fff;
  font-weight: 900;
}

.notify-panel small {
  min-height: 18px;
  color: var(--green);
  font-weight: 700;
}

.variation-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.variation-card--top {
  margin: 22px 18px 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.variation-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.variation-topline span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f8eb;
  color: var(--green);
}

.variation-card--top h2 {
  margin: 12px 0 0;
  font-size: 22px;
}

.variation-card--top .product-mini {
  margin-top: 14px;
  padding-top: 14px;
}

.product-mini {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding-top: 18px;
}

.product-mini img {
  width: 58px;
  height: 50px;
  object-fit: contain;
}

.product-mini strong {
  display: block;
  font-size: 14px;
}

.product-mini label {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.product-mini label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-mini select,
.nutrition-copy select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 12px;
}

.size-choice {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.size-choice-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.size-option {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.size-option strong,
.size-option span {
  display: block;
}

.size-option strong {
  font-size: 15px;
}

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

.size-option.is-selected {
  border-color: var(--green);
  background: #eef9f0;
  box-shadow: 0 0 0 1px var(--green);
}

.size-option:focus-visible {
  outline: 3px solid rgba(31, 145, 37, .2);
  outline-offset: 2px;
}

.product-mini--compact {
  grid-template-columns: 72px 1fr;
}

.creatine-product-image {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.14));
}

.mini-jar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #b8f15a, #1f7f36);
  color: #fff;
  font-weight: 900;
}

.mini-jar--multi {
  background: linear-gradient(135deg, #ffffff, #cfcfcf 45%, #101010);
  color: #111;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading span {
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--soft);
  color: var(--text);
  font-size: 13px;
}

.nutrition-section,
.promo-note,
.reviews-section,
.qa-section,
.site-footer {
  width: min(1320px, calc(100% - var(--gutter) * 2));
  margin-right: auto;
  margin-left: auto;
}

.nutrition-section {
  margin-top: 62px;
}

.nutrition-tabs {
  margin-top: 28px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}

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

.nutrition-tab {
  min-height: 78px;
  border: 0;
  background: #8b8b88;
  color: #fff;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
}

.nutrition-tab.is-active {
  background: #3ba0d4;
}

.nutrition-panel {
  border: 1px solid var(--line);
  border-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(26px, 5vw, 64px);
  padding: clamp(26px, 5vw, 64px);
  background: #fff;
}

.nutrition-table-card {
  align-self: start;
  border: 2px solid #101010;
  background: #fff;
  padding: 10px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
}

.nutrition-table-card--compact {
  max-width: 560px;
  justify-self: center;
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  color: #000;
  font-size: 15px;
}

.nutrition-table--dense {
  font-size: 14px;
}

.nutrition-table caption {
  border-bottom: 2px solid #111;
  padding: 4px 0 10px;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.nutrition-table th,
.nutrition-table td {
  border-bottom: 1px solid #111;
  padding: 7px 8px;
  text-align: left;
}

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

.table-note {
  margin: 10px 0 0;
  color: #000;
  font-size: 15px;
}

.nutrition-copy {
  align-self: start;
  color: #090909;
  font-size: 15px;
  line-height: 1.6;
}

.nutrition-copy label {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.nutrition-copy label span {
  font-size: 13px;
}

.nutrition-copy h3 {
  margin: 0 0 14px;
  font-size: 22px;
  text-transform: uppercase;
}

.nutrition-copy p {
  margin: 0 0 14px;
}

.warning-callout {
  margin-top: 22px;
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  background: #be1e32;
  color: #fff;
}

.warning-callout strong {
  text-transform: uppercase;
}

.warning-callout p {
  margin: 0;
}

.promo-note {
  margin-top: 42px;
  border-radius: 14px;
  padding: clamp(28px, 4vw, 42px);
  background: #f3f3f2;
}

.promo-note h2 {
  max-width: 1020px;
  margin: 0 0 22px;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.08;
  text-transform: uppercase;
}

.promo-note p {
  max-width: 1140px;
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 2vw, 21px);
}

.reviews-section {
  margin-top: 62px;
  padding-bottom: 36px;
}

.reviews-layout {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.review-score {
  display: grid;
  gap: 12px;
}

.review-score > strong {
  font-size: 48px;
  line-height: 1;
}

.review-score > strong span {
  color: var(--muted);
  font-size: 17px;
}

.review-score .stars i,
.review-content .stars i,
.store-rating .stars i {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: #118b2e;
  font-size: 18px;
}

.review-score p {
  margin: 0;
  color: var(--muted);
}

.rating-bars {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.rating-bars span {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: center;
  color: var(--text);
  font-size: 13px;
}

.rating-bars i {
  height: 8px;
  border: 1px solid #d2d2d0;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, #2fca46 var(--fill), transparent 0);
}

.recommend-meter {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  padding-top: 24px;
}

.recommend-meter strong {
  width: 62px;
  height: 62px;
  border: 5px solid #2fca46;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.recommend-meter span {
  color: var(--text);
  font-size: 14px;
}

.review-list {
  display: grid;
  gap: 0;
}

.review-card {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 30px 0;
}

.review-card:last-child {
  border-bottom: 1px solid var(--line);
}

.review-author {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.review-author > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef2f1;
  color: #526061;
  font-weight: 800;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.review-content h3 {
  margin: 8px 0 4px;
  font-size: 16px;
}

.review-content p {
  margin: 0 0 10px;
  color: var(--text);
}

.verified-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 14px;
  background: #eef7f1;
  color: #11763a;
  font-size: 13px;
}

.verified-pill--danger {
  background: #fff0f0;
  color: #b42318;
}

.brand-reply {
  margin-top: 16px;
  border-left: 3px solid #9ad7b5;
  padding-left: 18px;
  color: var(--muted);
}

.brand-reply strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.brand-reply p {
  margin: 0;
}

.qa-section {
  margin-top: 34px;
  padding: 58px 0 72px;
  text-align: center;
}

.qa-section h2 {
  margin: 0 0 20px;
  font-size: clamp(26px, 3vw, 34px);
}

.qa-section p {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--text);
  font-size: 21px;
}

.qa-section form {
  width: min(560px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
  text-align: left;
}

.qa-section label {
  font-weight: 800;
}

.qa-section textarea {
  min-height: 98px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.qa-section button,
.newsletter button,
.sticky-buybar button {
  border: 0;
  border-radius: var(--radius);
  background: #2f8a29;
  color: #fff;
  font-weight: 900;
}

.qa-section button {
  justify-self: end;
  min-height: 44px;
  padding: 0 22px;
}

.site-footer {
  width: 100%;
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.newsletter {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 32px var(--gutter);
  background: #050505;
  color: #fff;
  text-align: center;
}

.newsletter h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(18px, 3vw, 25px);
  line-height: 1.1;
  text-transform: uppercase;
}

.newsletter form {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 14px;
}

.newsletter input {
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 16px;
}

.newsletter button {
  min-height: 52px;
  background: #3ba0d4;
}

.footer-grid {
  width: min(1640px, calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 34px;
  padding: 42px 0;
}

.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.footer-grid a {
  display: block;
  margin: 0 0 10px;
  color: #374151;
  font-size: 14px;
}

.store-rating {
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.store-rating span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.store-rating strong {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 6px;
  font-size: 30px;
}

.store-rating small {
  font-size: 14px;
}

.payments {
  width: min(1640px, calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 34px 0 42px;
  text-align: center;
}

.payments h2 {
  flex-basis: 100%;
  margin: 0 0 8px;
  font-size: 28px;
}

.payment-logos {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.payments .payment-logo {
  width: 88px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 7px 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.05);
}

.payment-logo img {
  display: block;
  width: 64px;
  height: 36px;
  max-width: 100%;
  object-fit: contain;
}

.payment-logo--pix img {
  width: 30px;
  height: 30px;
}

.sticky-buybar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(130px, 0.65fr) minmax(120px, 0.55fr) minmax(230px, 1fr) minmax(180px, 260px);
  align-items: center;
  gap: 18px;
  padding: 10px max(var(--gutter), calc((100vw - 1500px) / 2));
  background: #13536b;
  color: #fff;
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.18);
}

.sticky-buybar a {
  color: #fff;
  font-weight: 800;
}

.sticky-buybar strong {
  color: #2fca46;
  font-size: 24px;
}

.sticky-buybar span {
  display: block;
  font-size: 13px;
}

.sticky-buybar button {
  min-height: 52px;
  text-transform: uppercase;
}

.sticky-buybar--unavailable button {
  background: #8a8a8a;
}

.hub-page {
  padding-bottom: 0;
  background: #f6f7f6;
}

.product-hub {
  width: min(1180px, calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 96px) 0;
}

.product-hub--single {
  min-height: calc(100dvh - 105px);
  display: grid;
  place-items: center;
}

.hub-hero {
  max-width: 760px;
}

.hub-hero p {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
}

.hub-hero span {
  display: block;
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
}

.hub-grid {
  margin-top: clamp(34px, 5vw, 58px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.hub-card {
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hub-card:hover {
  border-color: #b7b7b2;
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

.hub-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
  padding: 28px;
  background: linear-gradient(145deg, #fbfbfa, #ececea);
}

.hub-card > div:last-child {
  padding: 26px;
}

.hub-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.hub-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.hub-card--empty {
  background: #111;
  color: #fff;
}

.hub-card--empty p {
  color: #d4d4d0;
}

.hub-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(59, 160, 212, 0.24), transparent 55%),
    #050505;
  color: #25c438;
  font-size: clamp(86px, 12vw, 150px);
  font-weight: 900;
}

.hub-cta {
  min-height: 52px;
  margin-top: 28px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: #000;
  color: #fff;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .product-shell {
    grid-template-columns: 1fr;
  }

  .buy-card {
    position: static;
  }

  .main-media {
    min-height: 560px;
  }

  .nutrition-panel,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-score {
    max-width: 520px;
  }

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

@media (max-width: 760px) {
  :root {
    --gutter: 14px;
  }

  body {
    padding-bottom: 128px;
  }

  .ticker {
    justify-content: flex-start;
    overflow: hidden;
  }

  .ticker span:nth-child(n + 2) {
    display: none;
  }

  .topbar {
    min-height: 62px;
  }

  .brand span {
    font-size: 29px;
  }

  .nav-links {
    display: none;
  }

  .product-shell {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
  }

  .gallery {
    display: contents;
  }

  .gallery-stage {
    display: flex;
    flex-direction: column;
    gap: 10px;
    order: 1;
  }

  .gallery-thumbnails {
    display: flex;
    order: 2;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 6px;
    scrollbar-width: thin;
  }

  .gallery-thumb {
    flex: 0 0 68px;
    width: 68px;
    border-radius: 8px;
  }

  .main-media {
    order: 1;
    min-height: 390px;
  }

  .buy-card {
    order: 2;
  }

  .story-grid {
    order: 3;
  }

  .main-media img {
    width: min(94%, 520px);
  }

  .story-grid,
  .below-fold {
    grid-template-columns: 1fr;
  }

  .story-grid article,
  .below-fold article {
    min-height: 190px;
    padding: 28px 24px;
  }

  .buy-card {
    border-radius: var(--radius);
  }

  .social-proof {
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .product-heading {
    padding-top: 24px;
  }

  h1 {
    font-size: 35px;
  }

  .buy-card h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .price-line strong {
    font-size: 42px;
  }

  .stock-pill {
    align-items: flex-start;
    height: auto;
    min-height: 36px;
    border-radius: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .addons {
    margin-top: 38px;
  }

  .addon-card {
    grid-template-columns: 44px 1fr 54px;
    border-radius: 18px;
    align-items: start;
    padding: 12px 10px;
  }

  .addon-thumb--product {
    width: 44px;
    height: 44px;
  }

  .addon-title-row {
    align-items: flex-start;
  }

  .addon-flavor-picker {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .addon-flavor-picker select {
    width: 100%;
    max-width: none;
  }

  .add-button {
    min-height: 58px;
    border-radius: 16px;
    font-size: 14px;
  }

  .add-button s {
    display: none;
  }

  .mini-benefits {
    gap: 8px;
  }

  .mini-benefits span {
    font-size: 12px;
  }

  .below-fold {
    margin-bottom: 60px;
  }

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

  .nutrition-tab {
    min-height: 58px;
  }

  .nutrition-panel {
    padding: 20px 14px;
  }

  .nutrition-table {
    font-size: 12px;
  }

  .nutrition-table caption {
    font-size: 17px;
  }

  .promo-note {
    border-radius: var(--radius);
  }

  .reviews-layout {
    margin-top: 34px;
    gap: 24px;
  }

  .review-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-author {
    justify-items: start;
    grid-template-columns: 42px 1fr;
    text-align: left;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

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

  .sticky-buybar {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    min-height: 116px;
  }

  .sticky-buybar div {
    grid-column: 1;
  }

  .sticky-buybar button {
    grid-column: 2;
    grid-row: 2;
  }

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

  .hub-card {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .product-shell {
    width: 100%;
  }

  .gallery,
  .below-fold {
    width: calc(100% - var(--gutter) * 2);
    margin-right: auto;
    margin-left: auto;
  }

  .nutrition-section,
  .promo-note,
  .reviews-section,
  .qa-section {
    width: calc(100% - var(--gutter) * 2);
  }

  .buy-card {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .price-line strong {
    font-size: 38px;
  }

  .cart-drawer {
    width: 100vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* Final video carousel layout */
.video-showcase__intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.video-showcase__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  height: min(620px, 64vw);
}

.video-showcase__controls {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.video-showcase__rail {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-showcase__active {
  position: relative;
  z-index: 3;
  width: min(330px, 54vw);
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0e1714;
  box-shadow: 0 22px 50px rgba(14, 23, 20, 0.22);
}

.video-showcase__active-media {
  max-height: none;
}

.video-showcase__thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 196px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  pointer-events: auto;
  opacity: 0.48;
  transform: translate(-50%, -50%) scale(0.86);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.video-showcase__thumb.is-active {
  opacity: 0;
  pointer-events: none;
}

.video-showcase__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  pointer-events: auto;
}

.video-showcase__nav[data-video-prev] {
  left: max(16px, calc(50% - 270px));
}

.video-showcase__nav[data-video-next] {
  right: max(16px, calc(50% - 270px));
}

@media (max-width: 760px) {
  .video-showcase {
    padding: 36px 0 40px;
  }

  .video-showcase__stage {
    height: 500px;
    min-height: 0;
  }

  .video-showcase__active {
    width: min(270px, 64vw);
  }

  .video-showcase__thumb {
    width: 132px;
  }

  .video-showcase__nav {
    width: 40px;
    height: 40px;
  }

  .video-showcase__nav[data-video-prev] {
    left: 10px;
  }

  .video-showcase__nav[data-video-next] {
    right: 10px;
  }
}
/* Final video carousel layout */
.video-showcase__intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.video-showcase__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  height: min(620px, 64vw);
}

.video-showcase__controls {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.video-showcase__rail {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-showcase__active {
  position: relative;
  z-index: 3;
  width: min(330px, 54vw);
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0e1714;
  box-shadow: 0 22px 50px rgba(14, 23, 20, 0.22);
}

.video-showcase__active-media {
  max-height: none;
}

.video-showcase__thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 196px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  pointer-events: auto;
  opacity: 0.48;
  transform: translate(-50%, -50%) scale(0.86);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.video-showcase__thumb.is-active {
  opacity: 0;
  pointer-events: none;
}

.video-showcase__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  pointer-events: auto;
}

.video-showcase__nav[data-video-prev] {
  left: max(16px, calc(50% - 270px));
}

.video-showcase__nav[data-video-next] {
  right: max(16px, calc(50% - 270px));
}

@media (max-width: 760px) {
  .video-showcase {
    padding: 36px 0 40px;
  }

  .video-showcase__stage {
    height: 500px;
    min-height: 0;
  }

  .video-showcase__active {
    width: min(270px, 64vw);
  }

  .video-showcase__thumb {
    width: 132px;
  }

  .video-showcase__nav {
    width: 40px;
    height: 40px;
  }

  .video-showcase__nav[data-video-prev] {
    left: 10px;
  }

  .video-showcase__nav[data-video-next] {
    right: 10px;
  }
}
/* Final video carousel layout */
.video-showcase__intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.video-showcase__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  height: min(620px, 64vw);
}

.video-showcase__controls {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.video-showcase__rail {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-showcase__active {
  position: relative;
  z-index: 3;
  width: min(330px, 54vw);
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0e1714;
  box-shadow: 0 22px 50px rgba(14, 23, 20, 0.22);
}

.video-showcase__active-media {
  max-height: none;
}

.video-showcase__thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 196px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  pointer-events: auto;
  opacity: 0.48;
  transform: translate(-50%, -50%) scale(0.86);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.video-showcase__thumb.is-active {
  opacity: 0;
  pointer-events: none;
}

.video-showcase__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  pointer-events: auto;
}

.video-showcase__nav[data-video-prev] {
  left: max(16px, calc(50% - 270px));
}

.video-showcase__nav[data-video-next] {
  right: max(16px, calc(50% - 270px));
}

@media (max-width: 760px) {
  .video-showcase {
    padding: 36px 0 40px;
  }

  .video-showcase__stage {
    height: 500px;
    min-height: 0;
  }

  .video-showcase__active {
    width: min(270px, 64vw);
  }

  .video-showcase__thumb {
    width: 132px;
  }

  .video-showcase__nav {
    width: 40px;
    height: 40px;
  }

  .video-showcase__nav[data-video-prev] {
    left: 10px;
  }

  .video-showcase__nav[data-video-next] {
    right: 10px;
  }
}
