:root {
  --bg: #081933;
  --surface: #0e2748;
  --soft: #eef6ff;
  --ink: #f7fbff;
  --muted: rgba(238, 246, 255, 0.72);
  --accent: #ff8b24;
  --accent-alt: #4dd0ff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 92%, white 8%), var(--bg));
  color: var(--ink);
  font-family: "Sora", sans-serif;
  min-height: 100vh;
}

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

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

.concept-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  display: grid;
  gap: 0.75rem;
  width: min(22rem, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(5, 12, 24, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

body[data-variant="v2"] .concept-switcher {
  background: rgba(255, 252, 246, 0.86);
}

.switcher-label,
.eyebrow,
.meta-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-alt);
}

body[data-variant="v2"] .switcher-label,
body[data-variant="v2"] .eyebrow,
body[data-variant="v2"] .meta-label {
  color: var(--accent);
}

.concept-switcher strong,
.concept-switcher span {
  display: block;
}

.concept-switcher strong {
  margin-top: 0.2rem;
  font-size: 1rem;
}

.concept-switcher span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.switcher-nav {
  display: flex;
  gap: 0.55rem;
}

.switcher-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.switcher-nav a:hover,
.switcher-nav a:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--ink);
}

.switcher-nav a.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.site-shell {
  width: min(100%, 1800px);
  margin: 0 auto;
}

.announcement-bar {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.announcement-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: 0.85rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-alt);
  animation: marquee 18s linear infinite;
}

.announcement-track span {
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 2rem clamp(1.4rem, 4vw, 4rem) 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
    radial-gradient(circle at 20% 10%, rgba(77, 208, 255, 0.18), transparent 34%),
    radial-gradient(circle at 86% 24%, rgba(255, 139, 36, 0.16), transparent 28%);
  pointer-events: none;
}

body[data-variant="v2"] .hero::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 32%),
    radial-gradient(circle at 26% 22%, rgba(245, 129, 5, 0.14), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(122, 77, 232, 0.12), transparent 26%);
}

body[data-variant="v3"] .hero::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
    radial-gradient(circle at 18% 14%, rgba(255, 116, 51, 0.18), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(74, 217, 199, 0.15), transparent 26%);
}

.hero-header,
.hero-grid,
.support-band,
.rail-section,
.story-split,
.feature-banner,
.cta-panel {
  position: relative;
  z-index: 1;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: contain;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 180ms ease;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(2rem, 7vh, 5rem);
}

.hero-copy h1,
.support-copy h2,
.section-heading h2,
.story-copy h2,
.feature-copy h2,
.cta-copy h2,
.hero-feature h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.94;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 9vw, 7.9rem);
}

.hero-body,
.support-copy p:last-child,
.story-copy p:last-of-type,
.feature-copy p,
.cta-copy p,
.hero-feature p {
  max-width: 38rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 1.8rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.button--ghost {
  background: transparent;
  color: var(--ink);
}

.hero-stats,
.story-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-stats li,
.story-list li {
  padding: 1rem 1rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-feature {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

body[data-variant="v2"] .hero-feature {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
}

.hero-feature a,
.section-heading a,
.cta-meta a {
  color: var(--accent);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: min(78vh, 880px);
}

.hero-visual--surge .hero-poster {
  position: absolute;
  inset: 10% 6% 16% 4%;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-visual--surge .hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bottle {
  position: absolute;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
}

.hero-bottle--left {
  width: min(18vw, 240px);
  left: 0;
  bottom: 6%;
  animation: floatSlow 6.5s ease-in-out infinite;
}

.hero-bottle--center {
  width: min(28vw, 360px);
  right: 16%;
  bottom: 2%;
  animation: floatMedium 5.4s ease-in-out infinite;
}

.hero-bottle--right {
  width: min(24vw, 340px);
  right: -2%;
  top: 8%;
  animation: floatSlow 7.2s ease-in-out infinite reverse;
}

.hero-visual--ritual {
  display: grid;
  place-items: center;
  min-height: min(78vh, 880px);
}

.hero-visual--ritual .halo {
  position: absolute;
  inset: 9% 14% 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 129, 5, 0.22) 0%, rgba(245, 129, 5, 0.05) 38%, transparent 62%),
    radial-gradient(circle at 58% 48%, rgba(122, 77, 232, 0.15), transparent 36%);
  filter: blur(2px);
}

.hero-bottle--jar {
  width: min(32vw, 410px);
  right: 12%;
  bottom: 2%;
  animation: floatMedium 6s ease-in-out infinite;
}

.hero-bottle--side {
  width: min(16vw, 210px);
  left: 8%;
  bottom: 16%;
  animation: floatSlow 6.8s ease-in-out infinite reverse;
}

.ingredient-panel {
  position: absolute;
  left: 0;
  bottom: 10%;
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  color: #0f3855;
}

.ingredient-panel span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.ingredient-panel span::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-visual--culture {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.7fr);
  gap: 1rem;
  align-items: end;
}

.community-card {
  min-height: min(70vh, 720px);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.community-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-stack {
  position: relative;
  min-height: min(70vh, 720px);
}

.hero-bottle--wide {
  width: min(31vw, 440px);
  right: 0;
  bottom: 0;
  animation: floatMedium 5.7s ease-in-out infinite;
}

.hero-bottle--narrow {
  width: min(14vw, 190px);
  left: 4%;
  top: 5%;
  animation: floatSlow 7s ease-in-out infinite reverse;
}

.support-band,
.feature-banner,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 0 clamp(1.4rem, 4vw, 4rem) 2rem;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border-radius: 2rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

body[data-variant="v2"] .support-band,
body[data-variant="v2"] .feature-banner,
body[data-variant="v2"] .cta-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.78));
}

.support-media,
.feature-media {
  min-height: 20rem;
}

.rail-section,
.story-split {
  margin: 4rem clamp(1.4rem, 4vw, 4rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.section-heading h2,
.support-copy h2,
.story-copy h2,
.feature-copy h2,
.cta-copy h2,
.hero-feature h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-tile {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  transition: transform 180ms ease, border-color 180ms ease;
}

body[data-variant="v2"] .product-tile {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 241, 0.74));
}

.product-tile:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 16rem;
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 42%),
    color-mix(in srgb, var(--surface) 92%, white 8%);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-copy {
  display: grid;
  gap: 0.55rem;
}

.product-name,
.product-note,
.product-price {
  margin: 0;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
}

.product-note {
  min-height: 2.6rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.45rem;
  border-top: 1px solid var(--line);
}

.product-price {
  font-weight: 800;
}

.product-meta a {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.story-media {
  min-height: 32rem;
}

.media-frame {
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
}

.media-frame--cover img {
  object-fit: cover;
}

.media-frame--contain {
  display: grid;
  place-items: center;
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--surface) 88%, white 12%),
      color-mix(in srgb, var(--surface) 96%, black 4%)
    );
}

body[data-variant="v2"] .media-frame--contain {
  background:
    radial-gradient(circle at top, rgba(245, 129, 5, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 240, 0.88));
}

.media-frame--contain img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.support-media.media-frame--contain img,
.feature-media.media-frame--contain img {
  max-width: min(100%, 25rem);
  max-height: 18rem;
}

.story-media.media-frame--contain img {
  max-width: min(100%, 30rem);
  max-height: 28rem;
}

.story-list {
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}

.story-list li {
  padding: 0.95rem 0 0;
}

.cta-meta {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.cta-meta p,
.cta-meta a {
  margin: 0.35rem 0 0;
  color: var(--ink);
  line-height: 1.6;
}

body[data-layout="storefront"] {
  background: #fff;
  color: #0b2234;
  font-family: "Sora", sans-serif;
}

body[data-layout="storefront"] a {
  color: inherit;
}

.store-shell {
  min-height: 100vh;
  background: #fff;
}

.store-topline {
  display: flex;
  justify-content: center;
  padding: 0.36rem 1rem;
  background: linear-gradient(90deg, #d82912, #d52887);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 5.4rem;
  padding: 0 0.75rem;
  border-bottom: 1px solid #e5e8ea;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.store-logo,
.store-nav,
.store-tools {
  display: flex;
  align-items: center;
}

.store-logo {
  grid-column: 1;
  gap: 0.7rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #0d3851;
}

.store-logo img {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: contain;
}

.store-nav {
  grid-column: 2;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
}

.store-tools {
  grid-column: 3;
  justify-content: flex-end;
  gap: 1rem;
}

.store-nav a,
.store-tools a {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.store-nav a {
  color: #4f6573;
}

.store-nav a:hover,
.store-nav a:focus-visible,
.store-nav a.is-active {
  color: #0d3851;
}

.store-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.45fr) minmax(0, 0.55fr);
  align-items: center;
  min-height: clamp(20rem, 49vw, 39rem);
  margin: 0 0.75rem;
  overflow: hidden;
  background: #0d3851;
}

.store-hero-bg {
  position: absolute;
  inset: 0;
}

.store-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 19, 31, 0.82) 0%, rgba(5, 19, 31, 0.54) 38%, rgba(5, 19, 31, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
}

.store-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 20rem;
  padding: clamp(1.5rem, 5vw, 3.2rem) 0 clamp(1.5rem, 5vw, 3.2rem) clamp(1.5rem, 4vw, 3rem);
  color: #fff;
}

.store-hero-copy p {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-hero-copy h1 {
  margin: 0 0 1.35rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3.1vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1.15rem;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #0d3851;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-2px);
}

.store-button--light {
  border-color: #0b2234;
  background: #fff;
  color: #0b2234;
}

.store-hero-products {
  position: relative;
  z-index: 2;
  min-height: clamp(20rem, 42vw, 36rem);
}

.store-hero-product {
  position: absolute;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.24));
}

.store-hero-product--case {
  width: min(38vw, 35rem);
  right: 10%;
  bottom: 10%;
  transform: rotate(-2deg);
}

.store-hero-product--jar {
  width: min(20vw, 18rem);
  right: 34%;
  bottom: 5%;
  transform: rotate(5deg);
}

.store-hero-product--drink {
  width: min(13vw, 11rem);
  right: 9%;
  bottom: 14%;
  transform: rotate(-5deg);
}

.store-rail {
  padding: clamp(2.2rem, 4vw, 4rem) clamp(1rem, 3.5vw, 3.25rem);
}

.store-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.3rem;
}

.store-section-heading p {
  margin: 0 0 0.3rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-section-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.store-section-heading a,
.store-retailer a {
  color: #0d3851;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.store-product-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.store-product-card {
  min-width: 0;
}

.store-product-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(20rem, 45vw, 40rem);
  padding: 1rem;
  background: #f4f5f3;
  overflow: hidden;
}

.store-product-image::after {
  content: "";
  position: absolute;
  inset: auto 16% 14% 16%;
  height: 18%;
  border-radius: 50%;
  background: rgba(13, 56, 81, 0.1);
  filter: blur(16px);
}

.store-product-image img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: clamp(17rem, 35vw, 34rem);
  object-fit: contain;
  transition: transform 180ms ease;
}

.store-product-card:hover .store-product-image img {
  transform: scale(1.035);
}

.store-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-product-info {
  padding: 0.9rem 0.1rem 0;
}

.store-product-name {
  display: inline-block;
  min-height: 2.4rem;
  color: #0b2234;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

.store-product-note {
  margin: 0.28rem 0 0;
  min-height: 2.5rem;
  color: #5b6b74;
  font-size: 0.75rem;
  line-height: 1.45;
}

.store-swatches {
  display: flex;
  gap: 0.34rem;
  margin: 0.65rem 0;
}

.store-swatches span {
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(11, 34, 52, 0.12);
}

.store-product-price {
  margin: 0;
  color: #0b2234;
  font-size: 0.82rem;
  font-weight: 900;
}

.store-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  min-height: clamp(18rem, 38vw, 34rem);
  margin: 0 0.75rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 48%, rgba(245, 129, 5, 0.18), transparent 30%),
    linear-gradient(110deg, #e8f0ed 0%, #f6f7f2 100%);
}

.store-promo--custom {
  background:
    radial-gradient(circle at 38% 50%, rgba(45, 114, 206, 0.18), transparent 32%),
    linear-gradient(110deg, #0d3851 0%, #173f5c 100%);
  color: #fff;
}

.store-promo--left .store-promo-copy {
  grid-column: 2;
}

.store-promo--left .store-promo-media {
  grid-column: 1;
  grid-row: 1;
}

.store-promo-copy {
  position: relative;
  z-index: 2;
  max-width: 28rem;
  padding: clamp(1.8rem, 5vw, 4rem);
}

.store-promo-copy h2 {
  margin: 0 0 0.75rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.store-promo-copy p {
  margin: 0 0 1.25rem;
  color: currentColor;
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.82;
}

.store-promo-media {
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: clamp(1rem, 4vw, 3rem);
}

.store-promo-media img {
  width: auto;
  max-width: min(100%, 42rem);
  max-height: clamp(17rem, 34vw, 31rem);
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.18));
}

.store-retailer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 clamp(1rem, 3.5vw, 3.25rem);
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  border-top: 1px solid #e6e8e8;
  border-bottom: 1px solid #e6e8e8;
}

.store-retailer h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.store-footer {
  padding: 0 clamp(1rem, 3.5vw, 3.25rem) clamp(1.2rem, 2vw, 2rem);
  color: #0b2234;
}

.store-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  border-bottom: 1px solid #e6e8e8;
}

.store-footer-row h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 900;
}

.store-footer-row span {
  font-size: 1.1rem;
}

.store-wordmark {
  margin-top: clamp(2.5rem, 8vw, 6rem);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(7rem, 23vw, 25rem);
  line-height: 0.72;
  letter-spacing: 0.02em;
  color: #050505;
}

.store-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.1rem;
  color: #31383c;
  font-size: 0.72rem;
}

.store-footer-bottom p {
  margin: 0;
}

.store-footer-bottom nav {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-weight: 800;
}

body[data-layout="gatorade-exact"] {
  background: #fff;
  color: #050505;
  font-family: "Sora", sans-serif;
}

body[data-layout="gatorade-exact"] a {
  color: inherit;
}

.g4-shell {
  background: #fff;
  min-height: 100vh;
}

.g4-dealbar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 1.2rem;
  padding: 0.2rem 2rem;
  background: linear-gradient(90deg, #d72c12 0%, #d6208f 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.g4-dealbar a {
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.g4-dealbar span {
  position: absolute;
  right: 0.75rem;
  font-size: 0.65rem;
}

.g4-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.75rem;
  padding: 0 0.55rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #efefef;
  backdrop-filter: blur(14px);
}

.g4-logo {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
}

.g4-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.g4-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1;
}

.g4-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  min-height: clamp(19rem, 49vw, 33rem);
  margin: 0 0.38rem;
  overflow: hidden;
  background: #0d3851;
}

.g4-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g4-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%);
}

.g4-hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  width: min(17rem, 90%);
  padding: clamp(1.7rem, 5vw, 3.2rem) 0 0 clamp(1.5rem, 4vw, 3rem);
  color: #fff;
}

.g4-hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3.1vw, 2.05rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.g4-hero-copy a,
.g4-promo-copy a {
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  font-size: 0.72rem;
  font-weight: 900;
}

.g4-hero-products {
  position: relative;
  z-index: 2;
  grid-column: 2;
  min-height: inherit;
}

.g4-hero-products img {
  position: absolute;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.22));
}

.g4-hero-case {
  width: min(41vw, 29rem);
  right: 7%;
  bottom: 11%;
}

.g4-hero-jar {
  width: min(19vw, 14rem);
  right: 34%;
  bottom: 5%;
  transform: rotate(4deg);
}

.g4-hero-drink {
  width: min(13vw, 9rem);
  right: 3%;
  bottom: 10%;
  transform: rotate(-5deg);
}

.g4-section {
  padding: 1.55rem 0.38rem 0;
}

.g4-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.g4-section-title h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(1rem, 2.35vw, 1.38rem);
  font-weight: 900;
  letter-spacing: 0;
}

.g4-section-title span {
  font-size: 1.2rem;
  transform: translateY(-0.04rem);
}

.g4-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.38rem;
}

.g4-product {
  min-width: 0;
}

.g4-product-media {
  display: grid;
  place-items: center;
  min-height: clamp(20rem, 60vw, 39rem);
  padding: 1rem;
  background: #f7f7f7;
  overflow: hidden;
}

.g4-product-media img {
  width: auto;
  height: auto;
  max-width: 95%;
  max-height: clamp(18rem, 52vw, 35rem);
  object-fit: contain;
  transition: transform 180ms ease;
}

.g4-product:hover .g4-product-media img {
  transform: scale(1.025);
}

.g4-product-copy {
  min-height: 5.35rem;
  padding: 0.48rem 0 0.9rem;
}

.g4-product-label,
.g4-product-copy a,
.g4-product-copy p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.34;
}

.g4-product-label {
  color: #cf1717;
}

.g4-product-copy a {
  display: block;
  color: #111;
}

.g4-product-copy p:not(.g4-product-label) {
  color: #050505;
}

.g4-product-copy s {
  color: #666;
}

.g4-product-copy p span {
  font-weight: 900;
}

.g4-product-square {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.42rem;
  color: #5a6166;
  font-size: 0.64rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.g4-swatches {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  margin-top: 0.72rem;
}

.g4-swatches span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.g4-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  align-items: center;
  min-height: clamp(18rem, 42vw, 33rem);
  margin: 1.3rem 0.38rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 55%, rgba(45, 114, 206, 0.08), transparent 32%),
    linear-gradient(110deg, #e9eee9 0%, #f8f9f6 100%);
}

.g4-promo--blue {
  background:
    radial-gradient(circle at 68% 55%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(110deg, #0b1abf 0%, #2d72ce 58%, #9cc9ff 100%);
  color: #fff;
}

.g4-promo--left .g4-promo-copy {
  grid-column: 1;
}

.g4-promo-copy {
  position: relative;
  z-index: 2;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.g4-promo-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.35rem, 3.1vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.g4-promo--blue .g4-promo-copy a {
  color: #050505;
}

.g4-promo-media {
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: 0.7rem;
}

.g4-promo-media img {
  width: auto;
  height: auto;
  max-width: min(100%, 36rem);
  max-height: clamp(16rem, 34vw, 29rem);
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.16));
}

.g4-top {
  display: inline-flex;
  position: sticky;
  bottom: 1.2rem;
  left: 100%;
  z-index: 10;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 1.6rem 0.6rem 0 auto;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.g4-retailer {
  padding: 2.2rem 0.38rem 1.6rem;
}

.g4-retailer p {
  margin: 0 0 0.5rem;
  color: #59636a;
  font-size: 0.76rem;
}

.g4-retailer a {
  color: #050505;
  font-size: 1.05rem;
  font-weight: 900;
}

.g4-footer {
  padding: 0 0.38rem 1.1rem;
  background: #f8f8f8;
}

.g4-footer button {
  display: flex;
  width: 100%;
  min-height: 3.35rem;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #e2e2e2;
  background: transparent;
  color: #050505;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.g4-wordmark {
  margin-top: clamp(2.7rem, 8vw, 5.5rem);
  color: #050505;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.7rem, 19vw, 15rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
}

.g4-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #222;
  font-size: 0.68rem;
}

.g4-legal p {
  margin: 0;
}

.g4-legal nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  font-weight: 900;
}

.g4-buying-flow {
  margin: 2.2rem 0.38rem 0;
  padding: clamp(1rem, 2.8vw, 2rem);
  background: #f3f5f2;
  color: #050505;
  scroll-margin-top: 3.4rem;
}

.g4-flow-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(12rem, 0.28fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.g4-flow-heading p,
.g4-pdp-kicker,
.g4-option-group p,
.g4-checkout-top p,
.g4-cross-sell p {
  margin: 0;
  color: #d12b18;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.g4-flow-heading h2 {
  grid-column: 1;
  margin: 0;
  max-width: 20ch;
  font-size: clamp(1.55rem, 3.4vw, 3.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.g4-flow-heading span {
  grid-column: 2;
  color: #5b6368;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.55;
}

.g4-pdp {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(21rem, 0.62fr) minmax(18rem, 0.48fr);
  gap: clamp(0.8rem, 2vw, 1.4rem);
  align-items: start;
}

.g4-pdp-gallery,
.g4-pdp-copy,
.g4-checkout-card,
.g4-cross-sell {
  background: #fff;
}

.g4-pdp-gallery {
  display: grid;
  gap: 0.6rem;
}

.g4-pdp-stage {
  display: grid;
  place-items: center;
  min-height: clamp(24rem, 48vw, 42rem);
  padding: clamp(1rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 48% 54%, rgba(245, 129, 5, 0.1), transparent 32%),
    #f8f8f8;
  overflow: hidden;
}

.g4-pdp-stage img {
  max-width: 96%;
  max-height: clamp(21rem, 42vw, 38rem);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.13));
}

.g4-pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.38rem;
}

.g4-pdp-thumbs button,
.g4-cross-grid button {
  border: 0;
  background: #fff;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.g4-pdp-thumbs button {
  display: grid;
  place-items: center;
  min-height: 5.4rem;
  padding: 0.35rem;
  background: #f8f8f8;
  box-shadow: inset 0 0 0 1px transparent;
}

.g4-pdp-thumbs button.is-active {
  box-shadow: inset 0 0 0 2px #050505;
}

.g4-pdp-thumbs img {
  max-width: 100%;
  max-height: 4.6rem;
  object-fit: contain;
}

.g4-pdp-copy {
  min-height: clamp(24rem, 48vw, 42rem);
  padding: clamp(1rem, 2.4vw, 1.8rem);
}

.g4-breadcrumb {
  margin-bottom: 1.5rem;
  color: #60676b;
  font-size: 0.72rem;
  font-weight: 800;
}

.g4-pdp-copy h2 {
  margin: 0.38rem 0 0.6rem;
  max-width: 12ch;
  font-size: clamp(1.9rem, 4vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.g4-pdp-price {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  font-weight: 900;
}

.g4-pdp-desc {
  margin: 0 0 1.3rem;
  color: #4f585d;
  font-size: 0.92rem;
  line-height: 1.7;
}

.g4-option-group {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.g4-stepper,
.g4-segments {
  display: flex;
  width: fit-content;
  border: 1px solid #d8dcdd;
  border-radius: 999px;
  overflow: hidden;
}

.g4-stepper button,
.g4-segments button,
.g4-pdp-actions button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.g4-stepper button,
.g4-stepper output {
  display: grid;
  place-items: center;
  min-width: 2.5rem;
  min-height: 2.4rem;
}

.g4-segments button {
  min-height: 2.4rem;
  padding: 0 1rem;
}

.g4-segments button.is-active {
  background: #050505;
  color: #fff;
}

.g4-pdp-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1.3rem 0;
}

.g4-pdp-actions button,
.g4-pdp-actions a,
.g4-checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.g4-pdp-actions button,
.g4-checkout-button {
  background: #050505;
  color: #fff;
}

.g4-pdp-actions a {
  box-shadow: inset 0 0 0 1px #cfd5d7;
}

.g4-pdp-facts {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.g4-pdp-facts div {
  padding-top: 0.8rem;
  border-top: 1px solid #e4e7e8;
}

.g4-pdp-facts dt {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.g4-pdp-facts dd {
  margin: 0.28rem 0 0;
  color: #555f64;
  font-size: 0.78rem;
  line-height: 1.55;
}

.g4-checkout-card {
  position: sticky;
  top: 3.3rem;
  padding: 1rem;
  box-shadow: inset 0 0 0 1px #e1e4e5;
}

.g4-checkout-top,
.g4-cart-line,
.g4-totals,
.g4-checkout-path {
  display: grid;
  gap: 0.75rem;
}

.g4-checkout-top {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #e5e8e9;
}

.g4-cart-line {
  grid-template-columns: 4.8rem 1fr auto;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e8e9;
}

.g4-cart-line img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
  background: #f5f6f5;
}

.g4-cart-line strong,
.g4-cart-line span {
  display: block;
}

.g4-cart-line strong {
  font-size: 0.82rem;
  line-height: 1.35;
}

.g4-cart-line span,
.g4-payment-note {
  color: #667176;
  font-size: 0.72rem;
  line-height: 1.45;
}

.g4-totals {
  grid-template-columns: 1fr auto;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e8e9;
  font-size: 0.78rem;
}

.g4-totals span {
  color: #626b70;
}

.g4-checkout-path {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.32rem;
  margin: 1rem 0;
}

.g4-checkout-path div {
  min-height: 2.2rem;
  padding: 0.56rem 0.35rem;
  background: #f1f3f3;
  color: #5d666b;
  font-size: 0.64rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.g4-checkout-path div.is-active {
  background: #f58105;
  color: #fff;
}

.g4-checkout-button {
  width: 100%;
}

.g4-payment-note {
  margin: 0.85rem 0 0;
}

.g4-cross-sell {
  display: grid;
  grid-template-columns: minmax(12rem, 0.28fr) minmax(0, 0.72fr);
  gap: 1rem;
  margin-top: 0.7rem;
  padding: 1rem;
}

.g4-cross-sell h3 {
  margin: 0.35rem 0 0;
  max-width: 12ch;
  font-size: clamp(1.15rem, 2.1vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.g4-cross-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.g4-cross-grid button {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding: 0.7rem;
  background: #f7f8f7;
  text-align: left;
  box-shadow: inset 0 0 0 1px transparent;
}

.g4-cross-grid button.is-active {
  box-shadow: inset 0 0 0 2px #050505;
}

.g4-cross-grid img {
  width: 100%;
  height: 8rem;
  object-fit: contain;
}

.g4-cross-grid span {
  min-height: 2.2rem;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35;
}

.g4-cross-grid strong {
  font-size: 0.76rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.draft-page-hero {
  display: grid;
  grid-template-columns: minmax(18rem, 0.46fr) minmax(0, 0.54fr);
  align-items: center;
  gap: clamp(1rem, 4vw, 4rem);
  min-height: clamp(28rem, 52vw, 44rem);
  margin: 0 0.75rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: #0d3851;
  color: #fff;
  overflow: hidden;
}

.draft-page-hero--content {
  background:
    linear-gradient(135deg, rgba(13, 56, 81, 0.96), rgba(13, 56, 81, 0.78)),
    url("/assets/yaow-banner.png") center / cover;
}

.draft-page-hero--shop {
  background:
    linear-gradient(135deg, rgba(13, 56, 81, 0.96), rgba(245, 129, 5, 0.72)),
    url("/assets/yaow-banner.png") center / cover;
}

.draft-page-hero__copy {
  max-width: 38rem;
}

.draft-page-hero__copy > p:first-child,
.draft-story-panel > p:first-child,
.draft-package-card > div:last-child > p:first-child,
.draft-contact-band > div > p:first-child,
.draft-cart__items > p:first-child {
  margin: 0 0 0.75rem;
  color: #f58105;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.draft-page-hero__copy h1,
.draft-contact-band h2,
.draft-cart h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.draft-page-hero__body,
.draft-story-panel p,
.draft-contact-band p,
.draft-package-card p,
.draft-testimonial p,
.draft-cart-row p {
  line-height: 1.65;
}

.draft-page-hero__body {
  color: rgba(255, 255, 255, 0.82);
}

.draft-page-hero__media {
  display: grid;
  place-items: center;
  min-height: 24rem;
}

.draft-page-hero__media img {
  width: min(100%, 34rem);
  max-height: 32rem;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.26));
}

.draft-catalog,
.draft-story-grid,
.draft-package-grid,
.draft-testimonials,
.draft-contact-band,
.draft-cart {
  padding: clamp(2.2rem, 4vw, 4rem) clamp(1rem, 3.5vw, 3.25rem);
}

.draft-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.draft-callout {
  margin: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 3.5vw, 3.25rem) 0;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: #f58105;
  color: #fff;
  text-align: center;
}

.draft-callout p {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0;
}

.draft-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.draft-story-panel,
.draft-package-card,
.draft-testimonial,
.draft-contact-band,
.draft-cart__items,
.draft-cart__summary {
  border: 1px solid #e5e8ea;
  background: #fff;
  box-shadow: 0 18px 60px rgba(15, 56, 85, 0.08);
}

.draft-story-panel {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.draft-story-panel h2,
.draft-package-card h2,
.draft-testimonials h2,
.draft-cart-row h2,
.draft-cart__summary h2 {
  margin: 0 0 0.85rem;
  color: #0d3851;
  letter-spacing: 0;
}

.draft-story-panel p {
  color: #526673;
}

.draft-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.draft-package-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.draft-package-card__image {
  display: grid;
  place-items: center;
  min-height: 20rem;
  background: #f4f5f3;
}

.draft-package-card__image img {
  max-width: 86%;
  max-height: 18rem;
  object-fit: contain;
}

.draft-package-card > div:last-child {
  padding: 1.2rem;
}

.draft-package-card a,
.draft-testimonials a,
.draft-cart__summary a {
  color: #0d3851;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.draft-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.55fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  margin: clamp(1rem, 3vw, 2rem) clamp(1rem, 3.5vw, 3.25rem);
}

.draft-contact-form {
  display: grid;
  gap: 0.8rem;
}

.draft-contact-form label {
  display: grid;
  gap: 0.35rem;
  color: #4f6573;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.draft-contact-form input,
.draft-contact-form select {
  width: 100%;
  min-height: 2.9rem;
  border: 1px solid #d9e0e4;
  border-radius: 8px;
  padding: 0 0.85rem;
  color: #0b2234;
  font: 600 0.9rem "Sora", sans-serif;
}

.draft-contact-form button,
.draft-cart__summary button {
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  background: #0d3851;
  color: #fff;
  font: 900 0.82rem "Sora", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.draft-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.draft-testimonial {
  padding: 1.2rem;
}

.draft-testimonial p {
  color: #526673;
}

.draft-testimonial strong {
  color: #0d3851;
  font-size: 0.82rem;
}

.draft-cart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.38fr);
  gap: 1rem;
  align-items: start;
}

.draft-cart__items,
.draft-cart__summary {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.draft-cart-row {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid #e5e8ea;
}

.draft-cart-row img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  background: #f4f5f3;
}

.draft-cart-row h2 {
  font-size: 1rem;
}

.draft-cart__summary {
  position: sticky;
  top: 6.2rem;
  display: grid;
  gap: 1rem;
}

.draft-cart__summary dl {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.draft-cart__summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #e5e8ea;
  padding-top: 0.7rem;
}

.draft-cart__summary dt {
  color: #526673;
}

.draft-cart__summary dd {
  margin: 0;
  color: #0d3851;
  font-weight: 900;
  text-align: right;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

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

@keyframes floatMedium {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1.4deg);
  }
}

@media (max-width: 1180px) {
  .g4-pdp {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.5fr);
  }

  .g4-pdp-copy {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .g4-checkout-card {
    grid-column: 2;
    grid-row: 1;
  }

  .store-header {
    grid-template-columns: auto 1fr auto;
  }

  .store-hero-product--case {
    width: min(43vw, 31rem);
  }

  .store-hero-product--jar {
    width: min(24vw, 17rem);
  }

  .store-hero-product--drink {
    width: min(15vw, 10rem);
  }

  .hero-grid,
  .support-band,
  .story-split,
  .feature-banner,
  .cta-panel,
  .hero-visual--culture {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-visual {
    min-height: 38rem;
  }

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

  .section-heading {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .g4-flow-heading,
  .g4-pdp,
  .g4-cross-sell {
    grid-template-columns: 1fr;
  }

  .g4-flow-heading h2,
  .g4-flow-heading span,
  .g4-pdp-copy,
  .g4-checkout-card {
    grid-column: auto;
    grid-row: auto;
  }

  .g4-pdp-stage {
    min-height: 22rem;
  }

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

  .g4-checkout-card {
    position: relative;
    top: auto;
  }

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

  .g4-cross-grid img {
    height: 6.8rem;
  }

  .g4-top {
    display: none;
  }

  .store-topline {
    font-size: 0.64rem;
  }

  .store-header {
    min-height: 4.2rem;
    gap: 0.75rem;
  }

  .store-logo {
    font-size: 1.45rem;
  }

  .store-logo img {
    width: 2.15rem;
    height: 2.15rem;
  }

  .store-tools {
    gap: 0.72rem;
  }

  .store-tools a {
    font-size: 0.62rem;
  }

  .store-nav {
    display: none;
  }

  .store-hero {
    grid-template-columns: 0.48fr 0.52fr;
    min-height: 19.5rem;
    margin: 0 0.45rem;
  }

  .store-hero-copy {
    padding-left: 1.55rem;
  }

  .store-hero-copy p {
    font-size: 0.64rem;
  }

  .store-hero-copy h1 {
    font-size: clamp(1.35rem, 6vw, 2.15rem);
  }

  .store-hero-products {
    min-height: 19.5rem;
  }

  .store-hero-product--case {
    width: 17rem;
    right: 3%;
    bottom: 18%;
  }

  .store-hero-product--jar {
    width: 8.5rem;
    right: 30%;
    bottom: 5%;
  }

  .store-hero-product--drink {
    width: 5.8rem;
    right: 2%;
    bottom: 10%;
  }

  .store-rail {
    padding: 1.8rem 0.45rem;
  }

  .store-section-heading {
    margin-bottom: 0.8rem;
  }

  .store-product-row {
    gap: 0.62rem;
  }

  .store-product-image {
    min-height: 19rem;
    padding: 0.8rem;
  }

  .store-product-name {
    font-size: 0.78rem;
  }

  .store-product-note {
    display: none;
  }

  .store-promo {
    grid-template-columns: 0.44fr 0.56fr;
    min-height: 20rem;
    margin: 0 0.45rem;
  }

  .store-promo-copy {
    padding: 1.5rem;
  }

  .store-promo-copy h2 {
    font-size: clamp(1.45rem, 7vw, 2.35rem);
  }

  .store-promo-copy p {
    display: none;
  }

  .store-promo-media {
    padding: 1rem;
  }

  .store-retailer {
    margin: 0 0.45rem;
  }

  .store-footer {
    padding-right: 0.45rem;
    padding-left: 0.45rem;
  }

  .store-footer-bottom {
    display: block;
  }

  .store-footer-bottom nav {
    justify-content: start;
    margin-top: 0.8rem;
  }

  .concept-switcher {
    position: static;
    width: auto;
    margin: 1rem;
  }

  .hero-header {
    align-items: start;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 18vw, 5.8rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 30rem;
  }

  .hero-visual--surge .hero-poster {
    inset: 0 0 8rem;
  }

  .hero-bottle--left {
    width: 8rem;
    bottom: 0;
  }

  .hero-bottle--center {
    width: 12rem;
    right: 8%;
    bottom: -1rem;
  }

  .hero-bottle--right {
    width: 10rem;
    right: -2%;
    top: 4%;
  }

  .hero-bottle--jar {
    width: 13rem;
    right: 10%;
  }

  .hero-bottle--side {
    width: 7rem;
  }

  .ingredient-panel {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 1rem;
  }

  .hero-bottle--wide {
    width: 14rem;
  }

  .hero-bottle--narrow {
    width: 6.5rem;
  }

  .draft-page-hero,
  .draft-story-grid,
  .draft-package-grid,
  .draft-contact-band,
  .draft-cart {
    grid-template-columns: 1fr;
  }

  .draft-page-hero {
    min-height: auto;
    margin: 0 0.45rem;
    padding: 1.6rem;
  }

  .draft-page-hero__media {
    min-height: 16rem;
  }

  .draft-page-hero__copy h1,
  .draft-contact-band h2,
  .draft-cart h1 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .draft-catalog,
  .draft-story-grid,
  .draft-package-grid,
  .draft-testimonials,
  .draft-contact-band,
  .draft-cart {
    padding: 1.8rem 0.45rem;
  }

  .draft-catalog__grid,
  .draft-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .draft-contact-band {
    margin-right: 0.45rem;
    margin-left: 0.45rem;
  }

  .draft-cart-row {
    grid-template-columns: 4.5rem 1fr;
  }

  .draft-cart-row strong {
    grid-column: 2;
  }

  .draft-cart-row img {
    width: 4.5rem;
    height: 4.5rem;
  }

  .draft-cart__summary {
    position: relative;
    top: auto;
  }
}

/* ============================================================
 * V2 Product Spotlight Band
 * Port of yaow-woocommerce V2 Gatorade-style PDP into the
 * v2 mockup. Inline band between store-hero and starter rail.
 * Spec: 2026-05-09-v2-mockup-product-spotlight-design.md
 * Uses v2 palette via :root vars set in renderStorefront().
 * ============================================================ */
.v2-pdp {
  background: var(--bg);
  color: var(--ink);
  padding: 4rem 0 0;
  font-family: "Sora", sans-serif;
}

.v2-pdp .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.v2-pdp__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* 1. HERO ─────────────────────────────────────────────── */
.v2-pdp__hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(15, 56, 85, 0.08);
}

.v2-pdp__breadcrumb {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.v2-pdp__breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.v2-pdp__breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.v2-pdp__breadcrumb a:hover {
  color: var(--accent);
}

.v2-pdp__media {
  position: relative;
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.v2-pdp__media img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(15, 56, 85, 0.18));
}

.v2-pdp__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

.v2-pdp__thumbs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
}

.v2-pdp__thumbs li {
  aspect-ratio: 1 / 1;
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.v2-pdp__thumbs img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

/* Buybox */
.v2-pdp__buybox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.v2-pdp__eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.v2-pdp__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.v2-pdp__tagline {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
}

.v2-pdp__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.v2-pdp__stars {
  color: var(--accent);
  letter-spacing: 0.1em;
}

.v2-pdp__rating-num {
  font-weight: 700;
}

.v2-pdp__rating a {
  color: var(--accent-alt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Purchase mode (subscribe / one-time) */
.v2-pdp__purchase-mode {
  border: 0;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.v2-pdp__pmode {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  background: var(--surface);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.v2-pdp__pmode:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
}

.v2-pdp__pmode--active {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}

.v2-pdp__pmode input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--ink) 30%, transparent);
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.v2-pdp__pmode input[type="radio"]:checked {
  border-color: var(--accent);
}

.v2-pdp__pmode input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.v2-pdp__pmode-title {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.v2-pdp__pmode-tag {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
}

.v2-pdp__pmode-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

/* Qty stepper + AtC pill */
.v2-pdp__qty-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: 0.5rem;
}

.v2-pdp__qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 0.2rem;
}

.v2-pdp__qty button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.v2-pdp__qty button:hover {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.v2-pdp__qty span {
  min-width: 2rem;
  text-align: center;
  font-weight: 700;
}

.v2-pdp a.v2-pdp__atc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.15s ease;
}

.v2-pdp a.v2-pdp__atc:hover {
  background: color-mix(in srgb, var(--ink) 88%, var(--accent));
  transform: translateY(-1px);
}

.v2-pdp__atc-dot {
  opacity: 0.5;
}

/* Trust strip */
.v2-pdp__trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line);
}

.v2-pdp__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.v2-pdp__trust svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Section titles */
.v2-pdp__section-title {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0 0 1.5rem;
  letter-spacing: 0;
  color: var(--ink);
}

.v2-pdp__section-title--light {
  color: #fff;
}

/* 2. HOW TO USE ────────────────────────────────────────── */
.v2-pdp__howto-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.v2-pdp__step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.v2-pdp__step-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.v2-pdp__step h4,
.v2-pdp__step h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.v2-pdp__step p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* 3. WHY YAOW (dark band) ─────────────────────────────── */
.v2-pdp__why {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 3rem 2rem;
}

.v2-pdp__why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.v2-pdp__why-card {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.v2-pdp__why-card:last-child {
  border-right: 0;
}

.v2-pdp__why-stat {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}

.v2-pdp__why-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

/* 4. TABS ─────────────────────────────────────────────── */
.v2-pdp__tabbar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.v2-pdp__tab {
  background: transparent;
  border: 0;
  padding: 0.9rem 1.4rem;
  font: inherit;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.v2-pdp__tab:hover {
  color: var(--ink);
}

.v2-pdp__tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.v2-pdp__panel {
  display: none;
  color: var(--ink);
  line-height: 1.6;
}

.v2-pdp__panel.is-active {
  display: block;
}

.v2-pdp__panel ul {
  padding-left: 1.2rem;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
}

.v2-pdp__nutri {
  width: 100%;
  max-width: 420px;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.v2-pdp__nutri caption {
  padding: 0.8rem;
  font-weight: 700;
  text-align: left;
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  color: var(--ink);
  caption-side: top;
}

.v2-pdp__nutri th,
.v2-pdp__nutri td {
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.v2-pdp__nutri th {
  text-align: left;
  font-weight: 500;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
}

.v2-pdp__nutri td {
  text-align: right;
  font-weight: 700;
  color: var(--ink);
}

.v2-pdp__review {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.v2-pdp__review:first-child {
  padding-top: 0;
}

.v2-pdp__review header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.v2-pdp__review header strong {
  color: var(--ink);
}

.v2-pdp__review p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 82%, transparent);
}

.v2-pdp__review-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

/* 5. BULK BAND ────────────────────────────────────────── */
.v2-pdp__bulk {
  background: var(--soft);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.v2-pdp__bulk-copy h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--ink);
}

.v2-pdp__bulk-copy p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 75%, transparent);
  line-height: 1.55;
}

.v2-pdp__bulk-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.v2-pdp__bulk-btn {
  display: inline-block;
  text-align: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease;
}

.v2-pdp a.v2-pdp__bulk-btn--primary {
  background: var(--ink);
  color: #fff;
}

.v2-pdp a.v2-pdp__bulk-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.v2-pdp__bulk-btn:hover {
  transform: translateY(-1px);
}

/* 6. RELATED ──────────────────────────────────────────── */
.v2-pdp__related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.v2-pdp__rel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.v2-pdp__rel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 56, 85, 0.1);
}

.v2-pdp__rel-img {
  aspect-ratio: 1 / 1;
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.v2-pdp__rel-img img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
}

.v2-pdp__rel-name {
  margin: 0.4rem 0 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.3;
}

.v2-pdp__rel-price {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .v2-pdp {
    padding-top: 2.5rem;
  }

  .v2-pdp__inner {
    gap: 2.5rem;
    padding: 0 1rem;
  }

  .v2-pdp__hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.25rem;
    border-radius: 18px;
  }

  .v2-pdp__howto-grid,
  .v2-pdp__why-grid,
  .v2-pdp__related-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .v2-pdp__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-pdp__why {
    padding: 2rem 1.25rem;
  }

  .v2-pdp__why-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 1rem;
  }

  .v2-pdp__why-card:last-child {
    border-bottom: 0;
  }

  .v2-pdp__bulk {
    grid-template-columns: 1fr;
    padding: 1.75rem;
  }

  .v2-pdp__trust {
    grid-template-columns: 1fr;
  }

  .v2-pdp__qty-row {
    grid-template-columns: 1fr;
  }
}

/* UX, readability, and accessibility pass */
body[data-layout="storefront"] {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-layout="storefront"] *,
body[data-layout="storefront"] *::before,
body[data-layout="storefront"] *::after {
  letter-spacing: 0;
}

body[data-layout="storefront"] p,
body[data-layout="storefront"] li,
body[data-layout="storefront"] dd,
body[data-layout="storefront"] dt,
body[data-layout="storefront"] label,
body[data-layout="storefront"] input,
body[data-layout="storefront"] select,
body[data-layout="storefront"] button,
body[data-layout="storefront"] a {
  overflow-wrap: anywhere;
}

body[data-layout="storefront"] a:focus-visible,
body[data-layout="storefront"] button:focus-visible,
body[data-layout="storefront"] input:focus-visible,
body[data-layout="storefront"] select:focus-visible {
  outline: 3px solid #2d72ce;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(45, 114, 206, 0.2);
}

.store-nav a,
.store-tools a,
.store-button,
.draft-contact-form button,
.draft-cart__summary button,
.v2-pdp__tab,
.v2-pdp__bulk-btn,
.v2-pdp__atc,
.v2-pdp__qty button {
  min-height: 44px;
}

.store-nav a,
.store-tools a,
.v2-pdp__bulk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-section-heading,
.draft-page-hero__copy,
.draft-story-panel,
.draft-contact-band,
.v2-pdp__buybox,
.v2-pdp__panel,
.v2-pdp__review,
.draft-cart-row {
  min-width: 0;
}

.v2-pdp__tabbar {
  overflow-x: auto;
  scrollbar-width: thin;
}

.v2-pdp__tab {
  flex: 0 0 auto;
  white-space: nowrap;
}

.v2-pdp__nutri {
  table-layout: fixed;
}

.v2-pdp__nutri th,
.v2-pdp__nutri td {
  overflow-wrap: anywhere;
  vertical-align: top;
}

@media (max-width: 860px) {
  .store-header {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0.4rem 0.75rem;
    padding: 0.55rem 0.75rem 0.7rem;
  }

  .store-logo {
    grid-column: 1;
  }

  .store-tools {
    grid-column: 2;
    justify-content: flex-end;
    gap: 0.45rem;
  }

  .store-tools a {
    padding: 0.35rem 0.25rem;
    font-size: 0.72rem;
  }

  .store-nav {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    overflow-x: auto;
    padding-top: 0.35rem;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .store-nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
  }
}

@media (max-width: 720px) {
  .store-nav {
    display: flex;
  }

  .store-topline {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .store-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.25rem;
    gap: 0;
  }

  .store-hero-copy {
    max-width: 100%;
    padding: 1.25rem 0 0;
  }

  .store-hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
    line-height: 1.04;
  }

  .store-hero-copy p {
    max-width: 34rem;
  }

  .store-hero-products {
    min-height: 16rem;
  }

  .store-hero-product--case {
    width: min(72vw, 20rem);
    right: 12%;
    bottom: 8%;
  }

  .store-hero-product--jar {
    width: min(38vw, 10rem);
    right: 44%;
    bottom: 0;
  }

  .store-hero-product--drink {
    width: min(28vw, 7rem);
    right: 6%;
    bottom: 8%;
  }

  .store-section-heading {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .store-section-heading h2 {
    font-size: clamp(1.45rem, 7vw, 2.05rem);
  }

  .store-product-row {
    grid-template-columns: 1fr;
  }

  .store-product-image {
    min-height: 15rem;
  }

  .store-product-note {
    display: block;
    min-height: auto;
  }

  .store-promo {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .store-promo-copy p {
    display: block;
  }

  .store-promo-media {
    min-height: 14rem;
  }

  .draft-page-hero {
    min-height: auto;
  }

  .draft-page-hero__media {
    order: -1;
    min-height: 12rem;
  }

  .draft-page-hero__media img {
    max-height: 14rem;
  }

  .draft-package-card__image {
    min-height: 14rem;
  }

  .draft-contact-form input,
  .draft-contact-form select {
    font-size: 16px;
  }

  .v2-pdp__hero-grid {
    padding: 1rem;
  }

  .v2-pdp__media {
    aspect-ratio: 4 / 3;
  }

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

  .v2-pdp__pmode {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .v2-pdp__pmode-price {
    grid-column: 2;
    justify-self: start;
  }

  .v2-pdp__bulk-cta,
  .v2-pdp__bulk-btn {
    width: 100%;
  }

  .v2-pdp__related-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-layout="storefront"] *,
  body[data-layout="storefront"] *::before,
  body[data-layout="storefront"] *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
