:root {
  --bg-page: #f8efe3;
  --bg-page-2: #f6e8d3;
  --bg-page-3: #f2d3a1;
  --bg-section-warm: #f0c786;
  --text-main: #3f1c12;
  --text-soft: #6b3422;
  --text-muted: #8f4b20;
  --text-on-dark: #fff7ec;
  --border-soft: rgba(92, 36, 22, 0.14);
  --card-bg: rgba(255, 251, 245, 0.78);
  --shadow-heavy: 0 28px 70px rgba(24, 8, 5, 0.18);
  --shadow-soft: 0 16px 36px rgba(27, 11, 7, 0.12);
  --shadow-card: 0 18px 36px rgba(74, 30, 19, 0.12);
  --font-main: 'Manrope', sans-serif;
  --font-display: 'Bungee', cursive;
  --font-script: 'Caveat', cursive;
  --card-radius: 24px;
  --app-vh: 100vh;
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  line-height: 1.45;
  background: linear-gradient(
    180deg,
    var(--bg-page) 0%,
    var(--bg-page-2) 38%,
    var(--bg-page-3) 100%
  );
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.035;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
}

main {
  position: relative;
  z-index: 2;
}

main section {
  position: relative;
}

.section-kicker {
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

section h2 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.button.primary {
  color: #210f09;
  background: linear-gradient(140deg, #ff9f37 0%, #f06b1a 100%);
  box-shadow: 0 14px 28px rgba(224, 106, 37, 0.3);
}

.button.ghost {
  color: #4f2214;
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(95, 39, 23, 0.16);
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  min-height: var(--app-vh);
  padding: 2rem 6vw;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 173, 112, 0.28) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(93, 216, 197, 0.18) 0%,
      transparent 42%
    ),
    linear-gradient(160deg, #f7ead7 0%, #f0c786 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.18),
    rgba(255, 245, 232, 0.22)
  );
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 12% 84%,
      rgba(255, 255, 255, 0.35),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 36%,
      rgba(255, 191, 123, 0.16),
      transparent 30%
    );
}

.hero-drips {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 190px;
  z-index: 2;
  pointer-events: none;
}

.drip {
  position: absolute;
  top: 0;
  width: 70px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(to bottom, #b96b3d 0%, #8f4b20 100%);
  animation: dripPulse 4s ease-in-out infinite;
}

.drip::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #8f4b20;
}

.drip-1 {
  left: 10%;
  height: 110px;
  animation-delay: -0.4s;
}

.drip-2 {
  left: 32%;
  height: 150px;
  animation-delay: -1.2s;
}

.drip-3 {
  left: 58%;
  height: 130px;
  animation-delay: -1.9s;
}

.drip-4 {
  left: 80%;
  height: 170px;
  animation-delay: -0.9s;
}

@keyframes dripPulse {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.08);
  }
}

#three-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

.blob {
  position: absolute;
  width: 190px;
  aspect-ratio: 1;
  opacity: 0.45;
  filter: blur(1px);
  border-radius: 44% 56% 63% 37% / 44% 39% 61% 56%;
  background: radial-gradient(
    circle at 30% 25%,
    rgba(255, 185, 124, 0.72),
    rgba(112, 33, 19, 0.55)
  );
  transform: translate3d(
    calc(var(--mx, 0px) * 0.3),
    calc(var(--my, 0px) * 0.3),
    0
  );
  transition: transform 0.35s ease;
}

.blob:nth-child(1) {
  top: 20%;
  left: 8%;
}

.blob:nth-child(2) {
  top: 62%;
  left: 74%;
  width: 160px;
}

.blob:nth-child(3) {
  top: 15%;
  left: 78%;
  width: 130px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 2.1rem;
  color: var(--text-main);
  border-radius: 22px;
  backdrop-filter: blur(6px);
  background: linear-gradient(
    165deg,
    rgba(255, 251, 245, 0.78),
    rgba(255, 239, 217, 0.74)
  );
  box-shadow: var(--shadow-card);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 0.9rem;
  color: #4a2014;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

.hero-subtext {
  max-width: 56ch;
  color: #663020;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.hero-points {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
  list-style: none;
}

.hero-points li {
  display: grid;
  gap: 0.05rem;
  padding: 0.56rem 0.7rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(95, 39, 23, 0.12);
}

.hero-points strong {
  color: #4f2214;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.hero-points span {
  color: #6b3422;
  font-size: 0.8rem;
}

.hero-stickers {
  position: absolute;
  top: 21%;
  right: 4vw;
  z-index: 4;
  display: grid;
  gap: 0.55rem;
  pointer-events: none;
}

.hero-stickers span {
  padding: 0.38rem 0.72rem;
  color: #5e2d1f;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(95, 39, 23, 0.14);
  transform: rotate(-3deg);
}

.hero-stickers span:nth-child(2) {
  transform: rotate(2deg);
}

.hero-stickers span:nth-child(3) {
  transform: rotate(-2deg);
}

/* ===== BUZZ ===== */
.buzz-section {
  position: relative;
  padding: 0.9rem 0;
  overflow: hidden;
  color: var(--text-main);
  background: linear-gradient(90deg, #f3d9b1, #efc984 50%, #f3d9b1);
  border-top: 1px solid rgba(95, 39, 23, 0.12);
  border-bottom: 1px solid rgba(95, 39, 23, 0.12);
}

.buzz-marquee {
  display: inline-flex;
  width: max-content;
  animation: buzzMarquee 22s linear infinite;
}

.buzz-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  flex-shrink: 0;
  padding-right: 1.2rem;
}

.buzz-track span {
  padding: 0.32rem 0.74rem;
  white-space: nowrap;
  color: #5f2d1f;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(95, 39, 23, 0.12);
}

@keyframes buzzMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.buzz-section:hover .buzz-marquee {
  animation-play-state: paused;
}

/* ===== PRODUCT GRID ===== */
.product-grid-section {
  position: relative;
  padding: 7rem 6vw;
  overflow: hidden;
  color: var(--text-main);
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 174, 92, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 84% 72%,
      rgba(104, 222, 210, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #f8ecdb 0%, #f1cf98 46%, #f6e7d0 100%);
}

.product-grid-section::before,
.product-grid-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.18;
}

.product-grid-section::before {
  top: 8%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: #ffb561;
}

.product-grid-section::after {
  right: -60px;
  bottom: 10%;
  width: 260px;
  height: 260px;
  background: #5de1d2;
}

.product-grid-header {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.product-grid-header h2 {
  margin-bottom: 0.85rem;
  color: #4a2014;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.product-grid-header p {
  color: #6b3422;
}

.product-grid-floating-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  width: min(980px, 100%);
  margin: 1.5rem auto 0;
}

.product-grid-floating-tags span {
  padding: 0.45rem 0.9rem;
  color: #5f2d1f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(95, 39, 23, 0.12);
}

.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 1180px;
  margin: 2rem auto 0;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 530px;
  padding: 1rem;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  outline: none;
  border-radius: 28px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 240, 219, 0.82)
  );
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
}

.product-card:focus-visible {
  border-color: rgba(255, 180, 117, 0.4);
  box-shadow:
    0 0 0 3px rgba(255, 211, 158, 0.18),
    var(--shadow-card);
}

.product-card-glow {
  position: absolute;
  top: 28%;
  left: 50%;
  z-index: 0;
  width: 190px;
  height: 190px;
  opacity: 0.2;
  border-radius: 50%;
  background: var(--product-accent);
  filter: blur(56px);
  transform: translate(-50%, -50%);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.38rem 0.72rem;
  color: #5e2d1f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(95, 39, 23, 0.14);
}

.product-card-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 275px;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 50% 28%,
      rgba(255, 255, 255, 0.32),
      transparent 34%
    ),
    linear-gradient(
      160deg,
      rgba(255, 249, 241, 0.22),
      rgba(255, 192, 128, 0.12)
    );
  border: 1px solid rgba(95, 39, 23, 0.12);
}

.product-card-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.product-card-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(95, 39, 23, 0.14);
}

.product-card-rings span:nth-child(1) {
  width: 180px;
  height: 180px;
}

.product-card-rings span:nth-child(2) {
  width: 240px;
  height: 240px;
}

.product-card-rings span:nth-child(3) {
  width: 300px;
  height: 300px;
}

.product-card-jar {
  position: relative;
  z-index: 2;
  width: min(72%, 260px);
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.18));
}

.product-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card-topline {
  display: flex;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  color: #5f2d1f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0.6rem;
  color: #4a2014;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.product-card p {
  color: #6b3422;
}

.product-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.product-card-chips span {
  padding: 0.38rem 0.75rem;
  color: #5f2d1f;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(95, 39, 23, 0.12);
}

.product-card-bundles {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(95, 39, 23, 0.12);
}

.product-card-bundles-title {
  margin-bottom: 0.6rem;
  color: #4a2014;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card-bundle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-card-bundle-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.4rem 0.72rem;
  color: #5f2d1f;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.78);
  border: 1px solid rgba(95, 39, 23, 0.1);
}

.product-card-bundle-list strong {
  color: #3f1c12;
  font-family: var(--font-main);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}

.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.product-card-link {
  color: #5f2d1f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card .button {
  flex-shrink: 0;
}

/* ===== PRODUCT MODAL ===== */
body.product-modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 5, 4, 0.4);
  backdrop-filter: blur(10px);
}

.product-modal-dialog {
  --product-accent: #ff9f37;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.92fr);
  gap: 1rem;
  width: min(1080px, 100%);
  max-height: min(90vh, 860px);
  padding: 1rem;
  overflow: auto;
  color: var(--text-main);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.72),
      transparent 30%
    ),
    linear-gradient(160deg, #fff8ef 0%, #f8e8d1 100%);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.2);
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  width: 46px;
  height: 46px;
  color: #3c1a12;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: rgba(47, 18, 12, 0.08);
}

.product-modal-media,
.product-modal-copy {
  min-width: 0;
}

.product-modal-main-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 50% 22%,
      rgba(255, 255, 255, 0.85),
      transparent 28%
    ),
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.75),
      rgba(244, 220, 191, 0.82)
    );
  border: 1px solid rgba(85, 37, 25, 0.12);
}

.product-modal-main-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.22),
      transparent 42%
    ),
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.24),
      transparent 45%,
      rgba(255, 255, 255, 0.14),
      transparent 70%
    );
}

.product-modal-main-image {
  position: relative;
  z-index: 2;
  width: min(76%, 360px);
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, 0.12));
}

.product-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.product-modal-thumb {
  padding: 0.35rem;
  cursor: pointer;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(85, 37, 25, 0.12);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.product-modal-thumb.is-active {
  border-color: var(--product-accent);
  box-shadow: 0 10px 24px rgba(25, 10, 6, 0.12);
}

.product-modal-thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
}

.product-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0.4rem 0.2rem;
}

.product-modal-kicker {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-modal-copy h3 {
  margin-bottom: 0.7rem;
  color: #3f1d14;
  font-size: clamp(2rem, 3.7vw, 3rem);
  line-height: 1.02;
}

.product-modal-subtext {
  margin-bottom: 1rem;
  color: #5d2d1e;
}

.product-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.product-modal-meta span {
  padding: 0.45rem 0.85rem;
  color: #4d2418;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(88, 38, 24, 0.08);
}

.product-modal-bundles {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.68),
    rgba(255, 239, 216, 0.82)
  );
  border: 1px solid rgba(95, 39, 23, 0.12);
  box-shadow: 0 12px 26px rgba(41, 18, 11, 0.08);
}

.product-modal-bundles-title {
  margin-bottom: 0.7rem;
  color: #4a2014;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.product-modal-bundle-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem 0.7rem;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(95, 39, 23, 0.1);
}

.product-modal-bundle-item span {
  color: #6b3422;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-modal-bundle-item strong {
  color: #3f1c12;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.product-modal-bundle-item.is-selected {
  border-color: rgba(255, 159, 55, 0.5);
  box-shadow: 0 10px 22px rgba(255, 159, 55, 0.14);
  background: rgba(255, 248, 239, 0.9);
}

.product-modal-qty-wrap {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.68),
    rgba(255, 239, 216, 0.82)
  );
  border: 1px solid rgba(95, 39, 23, 0.12);
  box-shadow: 0 12px 26px rgba(41, 18, 11, 0.08);
}

.product-modal-qty-label {
  margin-bottom: 0.7rem;
  color: #4a2014;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-modal-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.product-modal-qty-btn {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  color: #4a2014;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  border: 1px solid rgba(95, 39, 23, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.product-modal-qty-btn:hover,
.product-modal-qty-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(20, 8, 5, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.product-modal-qty-input {
  width: 100%;
  max-width: 120px;
  height: 46px;
  padding: 0 0.85rem;
  color: #3f1c12;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  border: 1px solid rgba(95, 39, 23, 0.14);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.82);
  appearance: textfield;
  -moz-appearance: textfield;
}

.product-modal-qty-input::-webkit-outer-spin-button,
.product-modal-qty-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.product-modal-qty-input:focus {
  border-color: rgba(255, 159, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 187, 124, 0.18);
}

.product-modal-features {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  list-style: none;
}

.product-modal-features li {
  position: relative;
  padding-left: 1.1rem;
  color: #5e2d1f;
}

.product-modal-features li::before {
  content: '';
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--product-accent);
}

.product-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1rem;
}

.product-modal-price {
  display: none !important;
}

.product-modal-add.is-added {
  color: #f6fff9;
  background: linear-gradient(140deg, #44c1a1 0%, #28a781 100%);
}

/* ===== EXPERIENCE ===== */
.experience-section {
  position: relative;
  padding: 7rem 6vw;
  color: var(--text-main);
  background: linear-gradient(180deg, #f7ead7 0%, #f0c786 100%);
}

.experience-section::before,
.comparison-section::before,
.story-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 85px;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 120%,
    rgba(255, 255, 255, 0.35),
    transparent 64%
  );
}

.experience-header {
  margin: 0 auto 2.6rem;
  text-align: center;
}

.experience-header h2 {
  color: #4a2014;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 1150px;
  margin: 0 auto;
}

.experience-card {
  position: relative;
  min-height: 280px;
  padding: 1rem;
  overflow: hidden;
  border-radius: 24px;
  backdrop-filter: blur(4px);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 240, 219, 0.82)
  );
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 15px;
  right: 15px;
  height: 80px;
  opacity: 0.25;
  border-radius: 40px;
  background: radial-gradient(
    circle at 50% 80%,
    rgba(118, 47, 29, 0.55),
    rgba(67, 24, 15, 0.4)
  );
}

.experience-card::after {
  content: attr(data-count);
  position: absolute;
  top: 0.5rem;
  right: 0.9rem;
  color: rgba(95, 39, 23, 0.18);
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.experience-card h3 {
  position: relative;
  margin-top: 0.75rem;
  color: #4a2014;
  font-size: 1.4rem;
}

.experience-card p {
  position: relative;
  color: #6b3422;
}

.experience-visual {
  position: relative;
  height: 165px;
  overflow: hidden;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  transition: transform 0.45s ease;
}

.experience-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.32),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.experience-card:hover .experience-visual::before {
  transform: translateX(100%);
}

.experience-card:hover .experience-visual {
  transform: scale(1.04);
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.experience-tags span {
  padding: 0.25rem 0.6rem;
  color: #5f2d1f;
  font-size: 0.74rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(95, 39, 23, 0.12);
}

.toast {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 190, 124, 0.68),
      rgba(88, 36, 21, 0.32)
    ),
    url('assets/images/swirl.png');
}

.pancakes {
  background-image:
    linear-gradient(
      135deg,
      rgba(247, 210, 129, 0.7),
      rgba(145, 67, 34, 0.3)
    ),
    url('assets/images/jar.png');
}

.smoothie {
  background-image:
    linear-gradient(
      135deg,
      rgba(80, 194, 178, 0.72),
      rgba(61, 42, 99, 0.28)
    ),
    url('assets/images/swirl.png');
}

.spoon {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 145, 125, 0.76),
      rgba(86, 24, 17, 0.28)
    ),
    url('assets/images/jar.png');
}

/* ===== COMPARISON ===== */
.comparison-section {
  position: relative;
  padding: 7rem 6vw;
  overflow: hidden;
  color: var(--text-main);
  background: linear-gradient(160deg, #f6e8d4 0%, #f3be72 100%);
}

.comparison-header {
  margin-bottom: 2rem;
  text-align: center;
}

.comparison-header h2 {
  color: #4a1f14;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.compare-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto 1.2rem;
}

.compare-col {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(83, 33, 21, 0.2);
  box-shadow: var(--shadow-card);
}

.compare-col h3 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.compare-col.good {
  background: linear-gradient(
    150deg,
    rgba(97, 228, 213, 0.22),
    rgba(255, 247, 235, 0.76)
  );
}

.compare-col.good h3 {
  color: #184740;
}

.compare-col.bad {
  background: linear-gradient(
    150deg,
    rgba(189, 116, 78, 0.16),
    rgba(255, 241, 222, 0.76)
  );
}

.compare-col.bad h3 {
  color: #5a2415;
}

.comparison-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.6rem;
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
}

.metric {
  margin-bottom: 1rem;
}

.metric-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  color: #522317;
  font-weight: 800;
}

.bars {
  display: grid;
  gap: 0.4rem;
}

.bar {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(70, 31, 22, 0.2);
}

.bar .fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  transition: width 1.2s cubic-bezier(0.17, 0.84, 0.44, 1);
}

.bar.good .fill {
  background: linear-gradient(90deg, #53c7ba, #7ef0d7);
}

.bar.ordinary .fill {
  background: linear-gradient(90deg, #9e6140, #b17c51);
}

.comparison-section.animate .metric {
  --ordinary-size: var(--ordinary);
  --good-size: var(--good);
}

.comparison-section.animate .metric .bar.good .fill {
  width: var(--good-size);
}

.comparison-section.animate .metric .bar.ordinary .fill {
  width: var(--ordinary-size);
}

.flip-zone {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 1rem;
}

.flip-card {
  min-height: 210px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  font-weight: 800;
  border-radius: 18px;
  backface-visibility: hidden;
}

.good-card .front {
  color: #0f3533;
  background: linear-gradient(145deg, #5be2d1, #2f9d95);
}

.bad-card .front {
  color: #fff1e2;
  background: linear-gradient(145deg, #be764e, #8a4829);
}

.flip-face.back {
  color: #4a2014;
  background: linear-gradient(145deg, #fff5e8, #f2d3a1);
  border: 1px solid rgba(95, 39, 23, 0.12);
  transform: rotateY(180deg);
}

.floating-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.floating-badges span {
  padding: 0.45rem 0.9rem;
  color: #4f2015;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(84, 36, 23, 0.12);
}

/* ===== FLAVOR SHOW ===== */
.flavors-section {
  --orbit-scale: 1;
  position: relative;
  height: var(--app-vh);
  min-height: var(--app-vh);
  margin-top: -2px;
  overflow: hidden;
  color: var(--text-main);
  background: linear-gradient(180deg, #f8ecdb 0%, #f2d19a 100%);
}

.flavors-sticky {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 6vw;
  overflow: hidden;
  isolation: isolate;
  z-index: 6;
  --mood-color: #7d2f1a;
  touch-action: pan-y;
  overscroll-behavior: auto;
}

.flavor-mood {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(255, 255, 255, 0.32),
      transparent 30%
    ),
    radial-gradient(
      circle at 78% 72%,
      rgba(159, 249, 238, 0.14),
      transparent 35%
    ),
    linear-gradient(
      140deg,
      color-mix(in srgb, var(--mood-color) 20%, #f8ecdb 80%) 0%,
      #f7ead7 100%
    );
  transition: background 0.8s ease;
}

.flavor-swipe {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 25%,
    rgba(255, 233, 201, 0.24) 50%,
    transparent 75%
  );
  transform: translateX(-120%);
}

.flavors-sticky.is-switching .flavor-swipe {
  animation: flavorSwipe 0.6s ease;
}

@keyframes flavorSwipe {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

.flavor-progress {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 3.4vw, 3rem);
  z-index: 8;
  display: grid;
  gap: 0.72rem;
  transform: translateY(-50%);
}

.flavor-progress .dot {
  width: 10px;
  height: 10px;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(95, 39, 23, 0.22);
  transition:
    transform 0.35s ease,
    background-color 0.35s ease;
}

.flavor-progress .dot.active {
  background: #8f4b20;
  transform: scale(1.35);
}

.flavor-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 4rem);
  width: min(1180px, calc(100% - 2rem));
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0)
    perspective(1300px)
    translateX(12%)
    scale(0.92)
    rotateY(-10deg);
  transform-origin: center center;
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.flavor-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0)
    perspective(1300px)
    translateX(0)
    scale(1)
    rotateY(0deg);
}

.flavor-panel.previous {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0)
    perspective(1300px)
    translateX(-12%)
    scale(0.92)
    rotateY(10deg);
}

.flavor-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.flavor-jar-wrap {
  position: relative;
  width: min(46vw, 440px);
  transform-style: preserve-3d;
}

.flavor-jar {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.22));
  transform: perspective(1200px) rotateY(-12deg);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  padding: 0.35rem 0.8rem;
  white-space: nowrap;
  color: #5f2d1f;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(95, 39, 23, 0.12);
  transform-origin: center;
}

.orbit-a {
  animation: orbitA 10s linear infinite;
}

.orbit-b {
  animation: orbitB 11.5s linear infinite;
}

.orbit-c {
  animation: orbitC 9.4s linear infinite;
}

@keyframes orbitA {
  from {
    transform: rotate(0deg)
      translateX(calc(170px * var(--orbit-scale)))
      rotate(0deg);
  }
  to {
    transform: rotate(360deg)
      translateX(calc(170px * var(--orbit-scale)))
      rotate(-360deg);
  }
}

@keyframes orbitB {
  from {
    transform: rotate(120deg)
      translateX(calc(190px * var(--orbit-scale)))
      rotate(-120deg);
  }
  to {
    transform: rotate(480deg)
      translateX(calc(190px * var(--orbit-scale)))
      rotate(-480deg);
  }
}

@keyframes orbitC {
  from {
    transform: rotate(240deg)
      translateX(calc(165px * var(--orbit-scale)))
      rotate(-240deg);
  }
  to {
    transform: rotate(600deg)
      translateX(calc(165px * var(--orbit-scale)))
      rotate(-600deg);
  }
}

.flavor-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: clamp(1rem, 2vw, 2rem);
  text-align: left;
  border-radius: 20px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 240, 213, 0.85)
  );
  border: 1px solid rgba(95, 39, 23, 0.12);
  box-shadow: var(--shadow-card);
}

.flavor-tag {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flavor-copy h2 {
  margin-bottom: 0.8rem;
  color: #4a2014;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}

.flavor-copy .line {
  margin-top: 0.6rem;
  color: #5f2d1f;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}

.flavor-notes {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.95rem;
  list-style: none;
}

.flavor-notes li {
  position: relative;
  padding-left: 1rem;
  color: #5f2d1f;
  font-size: 0.84rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}

.flavor-notes li::before {
  content: '';
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c06d2f;
}

.flavor-panel.active .line,
.flavor-panel.active .flavor-notes li {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STORY ===== */
.story-section {
  position: relative;
  padding: 5rem 6vw 3rem;
  overflow: hidden;
  color: var(--text-main);
  background: linear-gradient(160deg, #f4e6d0 0%, #f5d9ad 100%);
}

.story-intro {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto 1.8rem;
  text-align: center;
}

.story-intro h2 {
  margin-bottom: 0.75rem;
  color: #4e2416;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-wrap: balance;
}

.story-intro p {
  max-width: 62ch;
  margin: 0.75rem auto 0;
  color: #5e3020;
}

.story-scroll {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  height: auto;
}

.story-sticky {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: visible;
}

.story-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  width: 100%;
  padding: 0;
  transform: none !important;
  will-change: auto;
}

.story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 1.2rem;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, #fff3e2, #ffd9a6);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.story-card::before,
.story-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.46;
}

.story-card::before {
  top: -42px;
  right: -32px;
  width: 120px;
  height: 120px;
  background: #ff9d74;
}

.story-card::after {
  left: -30px;
  bottom: -28px;
  width: 90px;
  height: 90px;
  background: #5dd8c5;
}

.script {
  margin-bottom: 0.55rem;
  color: #b33e20;
  font-family: var(--font-script);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.story-card h3 {
  margin-bottom: 0.8rem;
  color: #3f1a10;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.05;
  text-wrap: balance;
}

.story-card p {
  color: #582b1d;
  font-size: 0.96rem;
  line-height: 1.55;
}

.sticker {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.35rem 0.7rem;
  color: #663020;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 10px;
  background: #fff7ec;
  border: 2px dashed rgba(143, 68, 36, 0.4);
}

/* ===== REVIEWS ===== */
.reviews-section {
  position: relative;
  padding: 7rem 6vw;
  overflow: hidden;
  color: var(--text-main);
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(255, 177, 103, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 72%,
      rgba(92, 217, 198, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #f8ecdb 0%, #f1cf98 46%, #f6e7d0 100%);
}

.reviews-section::before,
.reviews-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.18;
}

.reviews-section::before {
  top: 10%;
  left: -70px;
  width: 280px;
  height: 280px;
  background: #ffab62;
}

.reviews-section::after {
  right: -50px;
  bottom: 12%;
  width: 240px;
  height: 240px;
  background: #5dd8c5;
}

.reviews-header {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.reviews-header h2 {
  margin-bottom: 0.85rem;
  color: #4a2014;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.reviews-header p {
  color: #6b3422;
}

.reviews-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  max-width: 1000px;
  margin: 1.5rem auto 0;
}

.reviews-stats span {
  padding: 0.48rem 0.95rem;
  color: #5f2d1f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(95, 39, 23, 0.12);
}

.reviews-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  max-width: 1240px;
  margin: 2rem auto 0;
}

.reviews-viewport {
  overflow: hidden;
  padding: 0.2rem;
}

.reviews-track {
  --reviews-gap: 1rem;
  --reviews-per-view: 3;
  display: flex;
  gap: var(--reviews-gap);
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.2, 0.9, 0.24, 1);
}

.review-card {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 1rem;
  width: calc(
    (100% - (var(--reviews-gap) * (var(--reviews-per-view) - 1))) /
      var(--reviews-per-view)
  );
  min-height: 340px;
  padding: 1.1rem;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 240, 219, 0.82)
  );
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  transition:
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.review-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  opacity: 0.9;
  background: linear-gradient(180deg, #ffb15f 0%, #5dd8c5 100%);
}

.review-card.is-active {
  border-color: rgba(255, 180, 117, 0.28);
  box-shadow: 0 24px 46px rgba(9, 4, 3, 0.16);
}

.review-stars {
  color: #d98a27;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.review-quote {
  color: #4f2214;
  font-size: 1rem;
  line-height: 1.65;
  text-wrap: balance;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff7ec;
  font-size: 0.9rem;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffb15f, #ef6c26);
  box-shadow: 0 10px 22px rgba(230, 108, 38, 0.18);
}

.review-person {
  display: grid;
  gap: 0.15rem;
}

.review-person strong {
  color: #4a2014;
  font-size: 0.96rem;
}

.review-person span {
  color: #6b3422;
  font-size: 0.8rem;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.review-tags span {
  padding: 0.35rem 0.7rem;
  color: #5f2d1f;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(95, 39, 23, 0.12);
}

.reviews-nav {
  width: 56px;
  height: 56px;
  color: #4a2014;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(95, 39, 23, 0.12);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.reviews-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.reviews-dots {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.reviews-dot {
  width: 11px;
  height: 11px;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: rgba(95, 39, 23, 0.24);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.reviews-dot.is-active {
  background: #8f4b20;
  transform: scale(1.28);
}

/* ===== GALLERY ===== */
.gallery-carousel-section {
  position: relative;
  padding: 7rem 6vw;
  overflow: hidden;
  color: var(--text-main);
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(255, 180, 110, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 84% 76%,
      rgba(93, 216, 197, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #f7ead7 0%, #f1cf98 48%, #f8ecdb 100%);
}

.gallery-carousel-section::before,
.gallery-carousel-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.18;
}

.gallery-carousel-section::before {
  top: 8%;
  left: -60px;
  width: 260px;
  height: 260px;
  background: #ffb66f;
}

.gallery-carousel-section::after {
  right: -40px;
  bottom: 12%;
  width: 220px;
  height: 220px;
  background: #5dd8c5;
}

.gallery-carousel-header {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.gallery-carousel-header h2 {
  margin-bottom: 0.85rem;
  color: #4a2014;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.gallery-carousel-header p {
  color: #6b3422;
}

.gallery-carousel {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.gallery-viewport {
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 240, 219, 0.75)
  );
  border: 1px solid rgba(95, 39, 23, 0.12);
  box-shadow: var(--shadow-card);
}

.gallery-track {
  display: flex;
  will-change: transform;
  transition: transform 0.72s cubic-bezier(0.2, 0.9, 0.24, 1);
}

.gallery-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(260px, 0.92fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
}

.gallery-slide-media {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 50% 22%,
      rgba(255, 255, 255, 0.34),
      transparent 28%
    ),
    linear-gradient(
      160deg,
      rgba(255, 249, 241, 0.26),
      rgba(255, 192, 128, 0.16)
    );
  border: 1px solid rgba(95, 39, 23, 0.12);
}

.gallery-slide-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.08),
      transparent 35%,
      rgba(255, 255, 255, 0.16),
      transparent 68%
    ),
    linear-gradient(to top, rgba(28, 11, 6, 0.18), transparent 35%);
}

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

.gallery-slide-copy {
  position: relative;
  padding: 1.35rem;
  border-radius: 26px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 240, 219, 0.82)
  );
  border: 1px solid rgba(95, 39, 23, 0.12);
  box-shadow: var(--shadow-card);
}

.gallery-slide-kicker {
  margin-bottom: 0.7rem;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-slide-copy h3 {
  margin-bottom: 0.7rem;
  color: #4a2014;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.gallery-slide-copy p:last-child {
  color: #6b3422;
  font-size: 1rem;
  line-height: 1.65;
}

.gallery-nav {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  color: #4a2014;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(95, 39, 23, 0.12);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-carousel-bottom {
  display: grid;
  gap: 0.9rem;
  max-width: 980px;
  margin: 1rem auto 0;
}

.gallery-progress-bar {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(95, 39, 23, 0.14);
}

.gallery-progress-bar span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9f37, #ef6c26, #5dd8c5);
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: rgba(95, 39, 23, 0.24);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.gallery-dot.is-active {
  background: #8f4b20;
  transform: scale(1.28);
}

/* ===== FAQ ===== */
.faq-section {
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(2.5rem, 6vw, 5rem) auto 0;
  padding: clamp(2rem, 3.4vw, 3rem);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(255, 208, 166, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 84%,
      rgba(93, 216, 197, 0.16),
      transparent 32%
    ),
    linear-gradient(
      150deg,
      rgba(255, 244, 226, 0.9),
      rgba(254, 236, 209, 0.84)
    );
  border: 1px solid rgba(95, 39, 23, 0.12);
  box-shadow: var(--shadow-card);
}

.faq-header {
  max-width: 760px;
}

.faq-header h2 {
  margin: 0.25rem 0 0.7rem;
  color: #4a2014;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.faq-header p {
  margin: 0;
  color: #6d3925;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(95, 39, 23, 0.12);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: #4a2014;
  font-family: inherit;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.faq-trigger::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.24s ease;
}

.faq-item.open .faq-trigger::after {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  color: #63311f;
  line-height: 1.65;
}

/* ===== FINAL CTA / FOOTER ===== */
.final-cta {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  width: min(1040px, calc(100% - 2rem));
  margin: clamp(2rem, 5vw, 4rem) auto 1.35rem;
  padding: clamp(2.8rem, 4vw, 3.8rem) clamp(1.2rem, 4vw, 3rem);
  overflow: hidden;
  text-align: center;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 209, 154, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 78%,
      rgba(93, 216, 197, 0.14),
      transparent 26%
    ),
    linear-gradient(
      140deg,
      rgba(255, 230, 196, 0.78),
      rgba(255, 244, 227, 0.82)
    );
  border: 1px solid rgba(95, 39, 23, 0.12);
  box-shadow: var(--shadow-card);
}

.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
  opacity: 0.22;
}

.final-cta::before {
  top: -35px;
  left: -20px;
  width: 140px;
  height: 140px;
  background: #ffb46f;
}

.final-cta::after {
  right: -18px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  background: #54d7c4;
}

.final-cta h2,
.final-cta p,
.final-cta .hero-actions {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 12ch;
  margin: 0;
  color: #4a2014;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.final-cta p {
  max-width: 58ch;
  margin: 0;
  color: #663020;
  font-size: clamp(0.95rem, 1.2vw, 1.04rem);
  line-height: 1.6;
}

.final-cta .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin-top: 0.35rem;
}

.final-cta .button {
  min-width: 170px;
}

footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(1rem, 2vw, 1.6rem);
  padding: 1rem 1.25rem;
  color: #6b3422;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 248, 239, 0.88),
    rgba(255, 232, 203, 0.82)
  );
  border: 1px solid rgba(95, 39, 23, 0.12);
  box-shadow: var(--shadow-card);
}

/* ===== CART FAB ===== */
.cart-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 920;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: #fff7ec;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #3f1c12, #6d2b1e);
  box-shadow: 0 18px 34px rgba(33, 12, 7, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.92);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease;
}

.cart-fab.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.cart-fab:hover,
.cart-fab:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 42px rgba(33, 12, 7, 0.3);
}

.cart-fab-icon {
  width: 28px;
  height: 28px;
}

.cart-fab-icon svg {
  width: 100%;
  height: 100%;
}

.cart-fab-count {
  position: absolute;
  top: 5px;
  right: 4px;
  min-width: 24px;
  height: 24px;
  padding: 0 0.35rem;
  display: grid;
  place-items: center;
  color: #35140d;
  font-size: 0.74rem;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(145deg, #ffc86b, #ff9f37);
  box-shadow: 0 8px 16px rgba(255, 159, 55, 0.28);
}

.cart-fab.bump {
  animation: cartFabBump 0.48s ease;
}

@keyframes cartFabBump {
  0% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-6px) scale(1.08);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* ===== CHECKOUT MODAL ===== */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 980;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.checkout-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 5, 4, 0.44);
  backdrop-filter: blur(10px);
}

.checkout-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: 1rem;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 255, 255, 0.74),
      transparent 28%
    ),
    linear-gradient(160deg, #fff8ef 0%, #f8e8d1 100%);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
}

.checkout-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 46px;
  height: 46px;
  color: #3c1a12;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: rgba(47, 18, 12, 0.08);
}

.checkout-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-right: 3.4rem;
}

.checkout-modal-kicker,
.checkout-summary-kicker {
  margin-bottom: 0.45rem;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-modal-head h3 {
  color: #3f1d14;
  font-size: clamp(2rem, 3.7vw, 3rem);
  line-height: 1.02;
}

.checkout-modal-badge {
  padding: 0.55rem 0.9rem;
  color: #4d2418;
  font-size: 0.84rem;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(88, 38, 24, 0.08);
}

.checkout-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1rem;
}

.checkout-cart-panel,
.checkout-summary-card,
.checkout-form {
  border-radius: 24px;
  border: 1px solid rgba(85, 37, 25, 0.12);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.76),
    rgba(244, 220, 191, 0.78)
  );
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.checkout-cart-panel {
  padding: 1rem;
  min-height: 520px;
}

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

.checkout-empty {
  display: none;
  padding: 1rem;
  color: #6b3422;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(95, 39, 23, 0.12);
}

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

.checkout-cart-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(95, 39, 23, 0.1);
}

.checkout-cart-thumb {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

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

.checkout-cart-copy h4 {
  margin-bottom: 0.3rem;
  color: #4a2014;
  font-size: 1.02rem;
}

.checkout-cart-copy p {
  color: #6b3422;
  font-size: 0.84rem;
  line-height: 1.45;
}

.checkout-cart-breakdown {
  margin-top: 0.35rem;
  color: #8f4b20;
  font-size: 0.74rem;
  font-weight: 700;
}

.checkout-cart-side {
  display: grid;
  justify-items: end;
  gap: 0.55rem;
}

.checkout-cart-line-total {
  color: #2f120c;
  font-size: 1.05rem;
  font-weight: 900;
}

.checkout-cart-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.checkout-cart-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #4a2014;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  border: 1px solid rgba(95, 39, 23, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
}

.checkout-cart-qty {
  min-width: 32px;
  text-align: center;
  color: #4a2014;
  font-size: 0.92rem;
  font-weight: 900;
}

.checkout-cart-remove {
  color: #8f4b20;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.checkout-summary-panel {
  display: grid;
  gap: 1rem;
}

.checkout-summary-card,
.checkout-form {
  padding: 1rem;
}

.checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 0;
  color: #5d2d1e;
  border-bottom: 1px solid rgba(95, 39, 23, 0.08);
}

.checkout-summary-row strong {
  color: #3f1c12;
}

.checkout-summary-row.total {
  border-bottom: 0;
  padding-bottom: 0;
}

.checkout-summary-row.total strong {
  font-size: 1.35rem;
  font-weight: 900;
}

.checkout-summary-note {
  margin-top: 0.8rem;
  color: #8f4b20;
  font-size: 0.78rem;
  line-height: 1.45;
}

.checkout-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.checkout-field label {
  color: #4a2014;
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  color: #3f1c12;
  font-size: 0.95rem;
  border: 1px solid rgba(95, 39, 23, 0.14);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.82);
  resize: vertical;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  border-color: rgba(255, 159, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 187, 124, 0.18);
}

.checkout-submit {
  width: 100%;
  margin-top: 0.2rem;
}

/* ===== TILT ===== */
[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-z: 0px;
  transform: perspective(980px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translateZ(var(--tilt-z));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .story-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-card {
    min-height: 300px;
  }

  .final-cta,
  .faq-section,
  footer {
    width: calc(100% - 1.5rem);
  }
}

@media (max-width: 1024px) {
  .hero-stickers {
    display: none;
  }

  .flavors-section {
    height: var(--app-vh);
    min-height: var(--app-vh);
  }

  .flavor-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    width: min(92vw, 720px);
    gap: 1rem;
    text-align: center;
  }

  .flavor-copy {
    max-width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .comparison-layout,
  .compare-columns,
  .product-modal-dialog,
  .checkout-modal-layout,
  .gallery-slide {
    grid-template-columns: 1fr;
  }

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

  .product-modal-main-frame {
    min-height: 360px;
  }

  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .reviews-nav {
    display: none;
  }

  .reviews-track {
    --reviews-per-view: 2;
  }

  .gallery-slide-media {
    min-height: 400px;
  }

  .checkout-cart-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 1.2rem 5vw;
  }

  .hero-copy {
    padding: 1.25rem;
  }

  .hero-actions {
    gap: 0.55rem;
  }

  .hero-actions .button,
  .final-cta .button,
  .product-card .button,
  .product-modal-add {
    width: 100%;
    text-align: center;
  }

  .hero-points {
    margin-top: 0.95rem;
  }

  .hero-points strong {
    font-size: 0.82rem;
  }

  .hero-points span {
    font-size: 0.74rem;
  }

  .flavors-section {
    --orbit-scale: 0.66;
    height: var(--app-vh);
    min-height: var(--app-vh);
  }

  .flavors-sticky {
    padding: 0 1rem;
  }

  .flavor-progress {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 1rem;
    display: flex;
    gap: 0.72rem;
    transform: translateX(-50%);
  }

  .flavor-panel {
    width: min(92vw, 560px);
    gap: 0.85rem;
  }

  .flavor-jar-wrap {
    width: min(78vw, 320px);
  }

  .orbit {
    padding: 0.3rem 0.6rem;
    font-size: 0.66rem;
  }

  .flavor-copy {
    padding: 1rem;
  }

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

  .reviews-section,
  .gallery-carousel-section {
    padding: 5rem 1rem;
  }

  .faq-section {
    width: calc(100% - 1rem);
    margin-top: 1.4rem;
    padding: 1.25rem 1rem;
    border-radius: 22px;
  }

  .faq-trigger {
    padding: 0.9rem 0.95rem;
    font-size: 0.96rem;
  }

  .faq-panel p {
    padding: 0 0.95rem 0.95rem;
    font-size: 0.92rem;
  }

  .reviews-stats,
  .product-grid-floating-tags {
    justify-content: flex-start;
  }

  .reviews-track {
    --reviews-per-view: 1;
  }

  .review-card,
  .product-card {
    min-height: auto;
  }

  .product-card-actions,
  .product-modal-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-modal {
    padding: 0.65rem;
  }

  .product-modal-dialog {
    padding: 0.8rem;
    border-radius: 24px;
  }

  .product-modal-main-frame {
    min-height: 280px;
  }

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

  .product-modal-thumb img {
    height: 72px;
  }

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

  .product-modal-qty-wrap {
    padding: 0.9rem;
    border-radius: 18px;
  }

  .product-modal-qty-controls {
    gap: 0.55rem;
  }

  .product-modal-qty-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .product-modal-qty-input {
    max-width: none;
    height: 42px;
    border-radius: 12px;
  }

  .story-section {
    padding: 4rem 1rem 2rem;
  }

  .story-intro {
    width: 100%;
    margin-bottom: 1.2rem;
    text-align: left;
  }

  .story-intro p {
    max-width: 100%;
    margin-inline: 0;
  }

  .story-track {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .story-card {
    min-height: auto;
    padding: 1rem;
    border-radius: 20px;
  }

  .story-card::before {
    top: -28px;
    right: -20px;
    width: 90px;
    height: 90px;
  }

  .story-card::after {
    left: -20px;
    bottom: -20px;
    width: 68px;
    height: 68px;
  }

  .story-card p {
    font-size: 0.92rem;
  }

  .gallery-carousel-shell {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .gallery-nav {
    display: none;
  }

  .gallery-slide {
    padding: 0.8rem;
  }

  .gallery-slide-media {
    min-height: 280px;
    border-radius: 22px;
  }

  .gallery-slide-copy {
    padding: 1rem;
    border-radius: 22px;
  }

  .gallery-slide-copy h3 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .final-cta {
    width: calc(100% - 1rem);
    margin-top: 1.4rem;
    margin-bottom: 0.9rem;
    padding: 2.4rem 1rem 2.8rem;
    gap: 0.8rem;
    border-radius: 22px;
  }

  .final-cta h2,
  .final-cta p {
    max-width: 100%;
  }

  .final-cta p {
    font-size: 0.92rem;
  }

  .final-cta .hero-actions {
    gap: 0.65rem;
  }

  footer {
    width: calc(100% - 1rem);
    margin-bottom: 0.75rem;
    padding: 0.95rem 0.9rem;
    border-radius: 15px;
    font-size: 0.82rem;
  }

  .cart-fab {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 62px;
    height: 62px;
  }

  .checkout-modal {
    padding: 0.7rem;
  }

  .checkout-modal-dialog {
    padding: 0.85rem;
    border-radius: 24px;
  }

  .checkout-modal-head {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 3rem;
  }

  .checkout-cart-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .checkout-cart-thumb {
    width: 76px;
    height: 76px;
  }

  .checkout-cart-side {
    width: 100%;
    justify-items: start;
  }
}

@media (max-width: 520px) {
  .product-card-bundle-list {
    flex-direction: column;
  }

  .product-card-bundle-list span {
    justify-content: space-between;
  }
}


.flavors-section {
  --orbit-scale: 1;
  position: relative;
  min-height: var(--app-vh);
  margin-top: -2px;
  overflow: visible;
  color: var(--text-main);
  background: linear-gradient(180deg, #f8ecdb 0%, #f2d19a 100%);
}

.flavors-sticky {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: var(--app-vh);
  min-height: var(--app-vh);
  padding: 0 6vw;
  overflow: hidden;
  isolation: isolate;
  z-index: 6;
  --mood-color: #7d2f1a;
  touch-action: auto;
  overscroll-behavior: contain;
}

/* ============================================================
   FLAVOR SECTION FIX
   Paste this at the very end of styles.css.
   Delete any previous flavor-fix overrides you added before.
   ============================================================ */

/* 1. Let the section grow to whatever height JS sets via inline style.
      The earlier block hard-codes height:var(--app-vh) and overflow:hidden
      which traps content and kills the scroll track. */
/* ============================================================
   FLAVOR SECTION — FINAL FIX
   Remove ALL previous flavor overrides you added and use only this.
   ============================================================ */

/* The section must be a normal block with no overflow clipping.
   overflow:clip (not visible, not hidden) is the only value that:
   - does NOT break position:sticky on children (unlike hidden/scroll)
   - DOES prevent horizontal bleed
   - works on all modern browsers */
#flavors.flavors-section {
  position: relative !important;
  height: auto !important;
  min-height: unset !important;
  overflow: clip !important;
}

/* The sticky panel pins to the top of the viewport while the
   parent section scrolls past it. overflow:hidden here is fine
   because it is on the CHILD not the scroll ancestor. */
#flavors .flavors-sticky {
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  height: var(--app-vh) !important;
  min-height: var(--app-vh) !important;
  max-height: var(--app-vh) !important;
  overflow: hidden !important;
  touch-action: auto !important;
  overscroll-behavior: auto !important;
}


.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #4a2014;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(95, 39, 23, 0.12);
  box-shadow: 0 10px 20px rgba(74, 30, 19, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-3px) scale(1.05);
  color: #fff7ec;
  background: linear-gradient(140deg, #ff9f37 0%, #f06b1a 100%);
  box-shadow: 0 14px 24px rgba(224, 106, 37, 0.22);
}

@media (max-width: 760px) {
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

/* ===== PRODUCT GRID: works cleanly for any product count ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
  justify-content: center;
  align-items: stretch;
  gap: 1.2rem;
  max-width: 1180px;
  margin: 2rem auto 0;
}

.product-card {
  width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Mobile */
@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   MOBILE FLAVORS SECTION FIX
   Put this at the VERY END of styles.css
   ============================================================ */

@media (max-width: 760px) {
  #flavors.flavors-section {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    padding: 3.5rem 0 3rem !important;
  }

  #flavors .flavors-sticky {
    position: relative !important;
    top: auto !important;
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 0 1rem !important;
    overflow: visible !important;
    touch-action: auto !important;
    overscroll-behavior: auto !important;
  }

  #flavors .flavor-mood,
  #flavors .flavor-swipe {
    display: none !important;
  }

  #flavors .flavor-progress {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    margin: 0 auto 1rem !important;
    transform: none !important;
  }

  #flavors .flavor-panel {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    z-index: 5 !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    gap: 1rem !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  #flavors .flavor-panel.active {
    display: grid !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  #flavors .flavor-panel.previous {
    display: none !important;
    opacity: 0 !important;
    transform: none !important;
  }

  #flavors .flavor-visual {
    order: 1 !important;
    width: 100% !important;
  }

  #flavors .flavor-jar-wrap {
    width: min(72vw, 260px) !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  #flavors .flavor-jar {
    width: 100% !important;
    max-width: 260px !important;
    margin: 0 auto !important;
    transform: none !important;
    animation: none !important;
  }

  #flavors .orbit {
    display: none !important;
  }

  #flavors .flavor-copy {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem !important;
    margin: 0 !important;
    text-align: left !important;
    overflow: visible !important;
    border-radius: 18px !important;
  }

  #flavors .flavor-tag {
    margin-bottom: 0.45rem !important;
    font-size: 0.68rem !important;
  }

  #flavors .flavor-copy h2 {
    margin-bottom: 0.55rem !important;
    font-size: clamp(1.55rem, 8vw, 2.15rem) !important;
    line-height: 1.08 !important;
  }

  #flavors .flavor-copy .line {
    margin-top: 0.45rem !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  #flavors .flavor-notes {
    display: grid !important;
    gap: 0.45rem !important;
    margin-top: 0.85rem !important;
    opacity: 1 !important;
    transform: none !important;
  }

  #flavors .flavor-notes li {
    padding-left: 1rem !important;
    color: #5f2d1f !important;
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  #flavors .flavor-notes li::before {
    top: 0.46rem !important;
  }
}

/* ============================================================
   MOBILE FLAVOR PRODUCT TRANSITION
   Put this at the VERY END of styles.css
   ============================================================ */

@media (max-width: 760px) {
  #flavors .flavors-sticky {
    display: grid !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
  }

  #flavors .flavor-progress {
    grid-row: 1 !important;
    grid-column: 1 !important;
  }

  #flavors .flavor-panel {
    grid-row: 2 !important;
    grid-column: 1 !important;
    display: grid !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(14px) scale(0.985) !important;
    transition:
      opacity 0.38s ease,
      transform 0.38s ease,
      visibility 0s linear 0.38s !important;
  }

  #flavors .flavor-panel.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
    transition:
      opacity 0.38s ease,
      transform 0.38s ease,
      visibility 0s linear 0s !important;
  }

  #flavors .flavor-panel.previous {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-10px) scale(0.985) !important;
  }

  #flavors .flavor-copy,
  #flavors .flavor-jar {
    transition:
      opacity 0.38s ease,
      transform 0.38s ease !important;
  }

  #flavors .flavor-panel:not(.active) .flavor-copy {
    opacity: 0 !important;
    transform: translateY(10px) !important;
  }

  #flavors .flavor-panel.active .flavor-copy {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  #flavors .flavor-panel:not(.active) .flavor-jar {
    opacity: 0 !important;
    transform: translateY(8px) scale(0.96) !important;
  }

  #flavors .flavor-panel.active .flavor-jar {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }
}

.checkout-thank-you-message {
  margin: 0.75rem 0;
  padding: 0.85rem 1rem;
  color: #184740;
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
  border-radius: 16px;
  background: rgba(91, 226, 209, 0.18);
  border: 1px solid rgba(24, 71, 64, 0.16);
}



@media (max-width: 768px) {
  .buzz-marquee {
    animation-name: buzzMarquee !important;
    animation-duration: 22s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
  }

  .buzz-track {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .buzz-marquee {
    animation: none !important;
    transform: none !important;
  }
}