/** Shopify CDN: Minification failed

Line 2327:10 Expected identifier but found whitespace
Line 2327:11 Unexpected "var("

**/
/* ═══════════════════════════════════════════════════════════════
   MontSource — Design System (base.css)
   Phase 1: CSS custom properties, typography, buttons, layout
   Mobile-first. No section-specific styles yet.
   ═══════════════════════════════════════════════════════════════ */


/* ─── 1. CUSTOM PROPERTIES ──────────────────────────────────── */

:root {
  /* Colors — from rules.md (non-negotiable) */
  --color-bg-primary:      #1C1C1C;
  --color-bg-secondary:    #242424;
  --color-bg-tertiary:     #2C2C2C;
  --color-accent-red:      #A00000;  /* Updated from #8B0000 for better contrast */
  --color-accent-red-hover:#800000;  /* Updated from #6D0000 for consistency */
  --color-text-primary:    #EDEAE4;
  --color-text-secondary:  #9A9590;  /* Updated from #7A7570 for WCAG AA compliance */
  --color-text-muted:      #6D6863;  /* Updated from #3D3935 for WCAG AA compliance */
  --color-border:          #3D3935;  /* Updated from #222222 for better visibility */
  --color-border-subtle:   #2A2622;  /* New: For subtle dividers */
  --color-border-accent:   #4A4540;  /* New: For emphasis borders */
  --color-footer-cta-bg:   #0D0000;
  --color-star:            #D4C5A9;  /* muted gold/cream for star ratings */

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;

  /* Font Sizes — clamp() for responsive scaling */
  --text-hero:      clamp(2.5rem, 8vw, 5rem);
  --text-section:   clamp(1.8rem, 6vw, 3.5rem);
  --text-subhead:   clamp(1.2rem, 3vw, 1.5rem);
  --text-body:      1.125rem;   /* 18px (increased from 15px) */
  --text-small:     1rem;       /* 16px (increased from 13px) */
  --text-micro:     0.875rem;   /* 14px (increased from 11px) */
  --text-micro-sm:  0.75rem;    /* 12px (increased from 10px) */

  /* Line Heights */
  --leading-tight:    1.15;
  --leading-normal:   1.6;
  --leading-relaxed:  1.8;

  /* Spacing Scale */
  --space-2xs: 0.25rem;   /* 4px  */
  --space-xs:  0.5rem;    /* 8px  */
  --space-sm:  1rem;      /* 16px */
  --space-md:  1.5rem;    /* 24px */
  --space-lg:  3rem;      /* 48px */
  --space-xl:  5rem;      /* 80px */
  --space-2xl: 6rem;      /* 96px */

  /* Section Padding */
  --section-py-mobile:  48px;
  --section-px-mobile:  20px;
  --section-py-desktop: 80px;
  --section-px-desktop: 60px;

  /* Component Tokens */
  --btn-height:        52px;
  --btn-radius:        2px;
  --card-radius:       8px;
  --transition-default: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast:    300ms ease;

  /* Z-Index Scale */
  --z-sticky-bar: 100;
  --z-cart-drawer: 200;
  --z-overlay:     150;
}


/* ─── 2. MODERN CSS RESET ────────────────────────────────────── */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Disable smooth scroll if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* Selection */
::selection {
  background: rgba(139, 0, 0, 0.3);
  color: var(--color-text-primary);
}


/* ─── 3. TYPOGRAPHY ──────────────────────────────────────────── */

/* Display / Hero Headlines */
.text-hero {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

/* Section Headlines */
.text-section {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-primary);
  letter-spacing: -0.015em;
}

/* Sub-headlines */
.text-subhead {
  font-family: var(--font-display);
  font-size: var(--text-subhead);
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-text-primary);
}

/* Body */
.text-body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;  /* Enhanced from 1.6 for better readability */
  letter-spacing: 0.01em;  /* Subtle opening for dark backgrounds */
  color: var(--color-text-secondary);
}

/* Small body text */
.text-small {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 400;
  line-height: 1.7;  /* Enhanced from 1.6 for better readability */
  letter-spacing: 0.02em;  /* More open for lower contrast text */
  color: var(--color-text-secondary);
}

/* Micro-labels (eyebrow text) */
.micro-label {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1;
  color: var(--color-text-secondary);
}

/* Red micro-label variant */
.micro-label--red {
  color: var(--color-accent-red);
}

/* Italic accent treatment — for red italic words in headlines */
.text-italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--color-accent-red);
}

/* Quote / testimonial style */
.text-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-subhead);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-secondary);
}


/* ─── 4. BUTTONS ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding: 0 2rem;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast),
              opacity var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  border: none;
}

/* Primary — filled dark crimson */
.btn-primary {
  background-color: var(--color-accent-red);
  color: var(--color-text-primary);
  border: 1px solid var(--color-accent-red);
}

.btn-primary:hover {
  background-color: var(--color-accent-red-hover);
  border-color: var(--color-accent-red-hover);
}

.btn-primary:active {
  opacity: 0.9;
}

/* Secondary — ghost / outline */
.btn-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-text-secondary);
}

.btn-secondary:hover {
  border-color: var(--color-text-primary);
  background-color: rgba(245, 240, 235, 0.05);
}

.btn-secondary:active {
  background-color: rgba(245, 240, 235, 0.08);
}

/* Full-width modifier (mobile) */
.btn-full {
  width: 100%;
}

/* Disabled state */
.btn:disabled,
.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Button loading state */
.btn--loading {
  background-color: var(--color-text-muted);
  border-color: var(--color-text-muted);
  color: var(--color-text-secondary);
  cursor: wait;
}

/* Button success state */
.btn--success {
  background-color: #1a3d1a;
  border-color: #1a3d1a;
  color: var(--color-text-primary);
}

/* Focus states — accessibility */
.btn:focus-visible {
  outline: 2px solid var(--color-text-primary);
  outline-offset: 2px;
}

/* Text link style button */
.btn-text {
  display: inline;
  height: auto;
  padding: 0;
  font-size: var(--text-small);
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.btn-text:hover {
  color: var(--color-text-primary);
}


/* ─── 5. LAYOUT ──────────────────────────────────────────────── */

/* Section wrapper — mobile first */
.section {
  padding: var(--section-py-mobile) var(--section-px-mobile);
  width: 100%;
}

/* Section background variants */
.section--primary {
  background-color: var(--color-bg-primary);
}

.section--secondary {
  background-color: var(--color-bg-secondary);
}

.section--tertiary {
  background-color: var(--color-bg-tertiary);
}

/* Centered content container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-px-mobile);
  width: 100%;
}

/* Narrow content (for text-heavy sections) */
.container--narrow {
  max-width: 720px;
}

/* Section spacing utility */
.section-gap {
  margin-bottom: var(--space-lg);
}


/* ─── 6. ANIMATION FOUNDATIONS ───────────────────────────────── */

/* Scroll-triggered reveal — default hidden state */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
  transition: opacity var(--transition-default),
              transform var(--transition-default);
}

/* Reveal visible (applied by IntersectionObserver) */
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Horizontal reveal variant (for ingredient cards) */
.reveal--left {
  opacity: 0;
  transform: translateX(-20px);
  will-change: transform, opacity;
  transition: opacity var(--transition-default),
              transform var(--transition-default);
}

.reveal--left.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}


/* ─── 7. UTILITY CLASSES ─────────────────────────────────────── */

/* Text colors */
.color-primary   { color: var(--color-text-primary); }
.color-secondary { color: var(--color-text-secondary); }
.color-muted     { color: var(--color-text-muted); }
.color-red       { color: var(--color-accent-red); }

/* Text readability enhancements - Phase 2 */
.text-glow-heading {
  text-shadow: 0 0 30px rgba(237, 234, 228, 0.15);
}

.text-readability-boost {
  text-shadow:
    0 0 1px rgba(237, 234, 228, 0.5),
    0 0 2px rgba(237, 234, 228, 0.3);
}

/* Apply subtle glow to key headings */
h1, h2, h3, .text-hero, .text-section {
  text-shadow: 0 0 30px rgba(237, 234, 228, 0.15);
}

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* Spacing helpers */
.mt-xs  { margin-top: var(--space-xs); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-xs  { margin-bottom: var(--space-xs); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }

/* Visually hidden (screen readers only) */
.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;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  border: none;
}


/* ─── 8. RESPONSIVE — TABLET / DESKTOP (≥768px) ─────────────── */

@media (min-width: 768px) {
  .section {
    padding: var(--section-py-desktop) var(--section-px-desktop);
  }

  .container {
    padding: 0 var(--section-px-desktop);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0;
  }
}


/* ═══════════════════════════════════════════════════════════════
   PHASE 2 — Hero, Sticky Bar, Product Reveal
   ═══════════════════════════════════════════════════════════════ */


/* ─── 9. HERO SECTION ────────────────────────────────────────── */

.hero {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: stretch;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,12,12,0.75) 0%,
    rgba(12,12,12,0.55) 35%,
    rgba(12,12,12,0.15) 55%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px;
  z-index: 4;
}

.hero__nav-logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  display: block;
}



.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 120px 48px 80px;
}

.hero__content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.hero__eyebrow {
  color: var(--color-text-primary);
}

.hero__headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
}

.hero__product-name {
  margin-bottom: 0.4em;
}

.hero__sub-headlines {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__sub-headlines .hero__line-1 {
  font-size: 0.85em;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.hero__sub-headlines .hero__line-2 {
  font-size: 1.0em;
  font-weight: 600;
  color: var(--color-accent-red);
  font-style: italic;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 10px rgba(160, 0, 0, 0.4),
    0 0 20px rgba(160, 0, 0, 0.3),
    0 0 30px rgba(160, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero__line-2 {
  color: var(--color-accent-red);
  font-style: italic;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 10px rgba(160, 0, 0, 0.4),
    0 0 20px rgba(160, 0, 0, 0.3),
    0 0 30px rgba(160, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero__sub {
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 360px;
  line-height: 1.6;
}

.hero__cta {
  width: fit-content;
  padding: 0 40px;
  margin-top: 8px;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
}

@media (max-width: 767px) {
  .hero__inner { padding: 100px 24px 120px; }
  .hero__content { max-width: 100%; }
  .hero__nav { padding: 24px; }
  .hero::after {
    background: linear-gradient(
      to bottom,
      rgba(12,12,12,0.8) 0%,
      rgba(12,12,12,0.5) 50%,
      rgba(12,12,12,0.75) 100%
    );
  }
  .hero__headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}

/* ── Hero Entrance Animations ── */

/* Elements start hidden */
.hero-animate {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

/* When loaded, trigger entrance */
.hero--loaded .hero-animate {
  animation: heroFadeUp 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Stagger delays applied via data-hero-delay attribute in JS */

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Particle Canvas ── */

#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Animated Scroll Arrow ── */

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--color-text-secondary);
  border-bottom: 1.5px solid var(--color-text-secondary);
  transform: rotate(45deg);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Hero Product Image ── */
.hero__image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 40vh;
  height: auto;
  z-index: 2;
  opacity: 0;
  will-change: transform, opacity;
}

.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero-animate {
    opacity: 1;
    transform: none;
    animation: none !important;
    will-change: auto;
  }

  .hero--loaded .hero-animate,
  .hero--loaded .hero__image {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .hero__scroll {
    animation: none;
    opacity: 0.5;
  }
}

/* ── Hero Desktop (≥768px) ── */
@media (min-width: 768px) {
  .hero {
    padding: var(--section-py-desktop) var(--section-px-desktop);
    padding-bottom: 60px;
  }

  .hero__image img {
    height: 60vh;
  }

  .hero__card {
    bottom: 40px;
    right: 40px;
    left: auto;
    width: auto;
  }
}


/* ─── 10. STICKY MOBILE BAR ─────────────────────────────────── */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  z-index: var(--z-sticky-bar);
  transform: translateY(100%);
  transition: transform var(--transition-fast);
  will-change: transform;
}

.sticky-bar--visible {
  transform: translateY(0);
}

.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--section-px-mobile);
  max-width: 1200px;
  margin: 0 auto;
}

.sticky-bar__logo {
  flex-shrink: 0;
  width: 39px;
  height: auto;
  opacity: 0.8;
}

.sticky-bar__name {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  padding: 0 var(--space-sm);
}

.sticky-bar__cta {
  flex-shrink: 0;
  min-width: 140px;
  height: 40px;
  font-size: var(--text-micro);
}

/* Hide sticky bar on desktop */
@media (min-width: 768px) {
  .sticky-bar {
    display: none;
  }
}


/* ─── 11. PRODUCT REVEAL CARD ────────────────────────────────── */

.product-card {
  background-color: var(--color-bg-tertiary);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

.product-card__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .product-card__image-wrap {
    aspect-ratio: 4 / 3;
  }
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.product-card__info {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.product-card__badge {
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.product-card__name {
  margin-bottom: var(--space-xs);
}

.product-card__size {
  display: block;
  margin-bottom: var(--space-md);
}

.product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.product-card__stars {
  font-size: var(--text-body);
  color: var(--color-star);
  letter-spacing: 0.05em;
}

.product-card__review-count {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  letter-spacing: normal;
}

/* Benefit pills */
.product-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: var(--text-micro);
  color: var(--color-text-secondary);
  white-space: nowrap;
}

.product-card__atc {
  margin-bottom: var(--space-sm);
}

.product-card__link {
  display: block;
  text-align: center;
}

/* ── Product Card Desktop ── */
@media (min-width: 768px) {
  .product-card {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .product-card__image-wrap {
    aspect-ratio: auto;
    min-height: 400px;
  }

  .product-card__info {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════════════════
   PHASE 3 — Problem/Solution, Ingredient World Tour
   ═══════════════════════════════════════════════════════════════ */


/* ─── 12. PROBLEM / SOLUTION PANELS ──────────────────────────── */

/* Two stacked panels, no gap — seamless visual flow */

.ps-panel {
  position: relative;
  padding: var(--section-py-mobile) var(--section-px-mobile);
  overflow: hidden;
}

/* Panel A — The Problem */
.ps-panel--problem {
  background-color: var(--color-bg-primary);
}

/* Faded product photo as background texture */
.ps-panel--problem .ps-panel__bg {
  position: absolute;
  inset: 0;
  background-image: url('MontSource22.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.ps-panel--problem .container {
  position: relative;
  z-index: 1;
}

/* Panel B — The Solution */
.ps-panel--solution {
  background-color: var(--color-bg-secondary);
}

/* Subtle red radial vignette */
.ps-panel--solution .ps-panel__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 0, 0, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.ps-panel--solution .container {
  position: relative;
  z-index: 1;
}

/* Panel shared typography */
.ps-panel__label {
  display: block;
  margin-bottom: var(--space-md);
}

.ps-panel__headline {
  margin-bottom: var(--space-md);
  max-width: 520px;
}

.ps-panel__body {
  max-width: 520px;
  line-height: 1.8;
}

/* Solution image */
.ps-panel__image-wrap {
  margin-top: var(--space-lg);
  max-width: 400px;
}

.ps-panel__image {
  width: 100%;
  height: auto;
  border-radius: var(--card-radius);
}

/* Desktop: more breathing room */
@media (min-width: 768px) {
  .ps-panel {
    padding: var(--section-py-desktop) var(--section-px-desktop);
  }

  .ps-panel__headline {
    max-width: 640px;
  }

  .ps-panel__body {
    max-width: 600px;
  }

  .ps-panel--solution .container {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
  }

  .ps-panel__content {
    flex: 1;
  }

  .ps-panel__image-wrap {
    flex: 0 0 40%;
    max-width: 420px;
    margin-top: 0;
  }
}


/* ─── 12b. PROBLEM SECTION (Phase 2) ────────────────────────── */

.problem__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.problem__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .problem__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background-color: var(--color-bg-tertiary);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 32px 28px;
}

.problem-card__icon {
  margin-bottom: var(--space-md);
}

.problem-card__icon svg {
  width: 40px;
  height: 40px;
}

.problem-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm);
}

.problem-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.problem__transition {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-accent-red);
  margin-top: 64px;
  opacity: 0.9;
}


/* ─── 12c. SOLUTION SECTION (Phase 2) ───────────────────────── */

.solution__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.solution__subheadline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--color-text-secondary);
  margin-top: var(--space-sm);
}

.solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .solution__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.solution__explanation {
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.solution__pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution__pill {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #333;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  background: transparent;
}

.solution__visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.solution__image {
  width: 100%;
  height: auto;
  display: block;
}

.solution__visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-text-primary);
  font-size: 1.1rem;
}


/* ─── 13. INGREDIENT WORLD TOUR ──────────────────────────────── */

.ingredients {
  position: relative;
  overflow: hidden;
}

/* SVG world map — atmospheric background */
.ingredients__map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  opacity: 0.04;
  color: var(--color-text-muted);
  pointer-events: none;
  z-index: 0;
}

.ingredients__map svg {
  width: 100%;
  height: auto;
}

.ingredients .container {
  position: relative;
  z-index: 1;
}

/* Section header */
.ingredients__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Ingredient list */
.ingredients__list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Individual card */
.ingredient-card {
  padding: var(--space-sm) 0;
  padding-left: var(--space-md);
  border-left: 2px solid var(--color-border);
}

.ingredient-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.ingredient-card__origin {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.ingredient-card__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent-red);
  flex-shrink: 0;
}

.ingredient-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 4px;
}

.ingredient-card__benefit {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  margin: 0;
  font-style: italic;
}

/* Section footer */
.ingredients__footer {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.text-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.ingredients__cta {
  font-size: var(--text-body);
}

/* Desktop */
@media (min-width: 768px) {
  .ingredients__list {
    max-width: 700px;
  }

  .ingredient-card {
    padding: var(--space-sm) var(--space-md);
  }
}


/* ═══════════════════════════════════════════════════════════════
   PHASE 4 — Sections 5-10
   ═══════════════════════════════════════════════════════════════ */


/* ─── 14. PRODUCT SHOWCASE ───────────────────────────────────── */

.showcase__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.showcase__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.showcase-card {
  background-color: var(--color-bg-secondary);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  width: 100%;
}

.showcase-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.showcase-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 1;
}

.showcase-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card__info {
  padding: var(--space-md);
}

.showcase-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs);
}

.showcase-card__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xs);
}

.showcase-card__desc {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-xs);
}

.showcase-card__size {
  display: block;
  font-size: var(--text-micro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.showcase-card__price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.showcase-card__atc {
  margin-top: auto;
}

@media (min-width: 768px) {
  .showcase-card {
    max-width: 520px;
  }
}


/* ─── 14b. BENEFITS SECTION (Phase 2) ────────────────────────── */

.benefits__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.benefit-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
  border-top: 3px solid var(--color-accent-red);
  background-color: var(--color-bg-tertiary);
  text-align: center;
  padding: 24px 16px;
}

/* Faded photo background */
.benefit-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.benefit-card__content {
  position: relative;
  z-index: 1;
}

.benefit-card__icon {
  margin-bottom: 12px;
}

.benefit-card__icon svg {
  width: 32px;
  height: 32px;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

/* Descriptions hidden on mobile (2×3 compact grid) */
.benefit-card__desc {
  display: none;
}

.benefits__footer {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: var(--color-text-secondary);
  margin-top: var(--space-xl);
}

/* Desktop: 3×2 grid with full descriptions */
@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .benefit-card {
    padding: 32px 28px;
    text-align: left;
  }

  .benefit-card__icon svg {
    width: 36px;
    height: 36px;
  }

  .benefit-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }

  .benefit-card__desc {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
  }
}


/* ─── 15. TRUST STRIP ────────────────────────────────────────── */

.trust-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-strip__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.trust-strip__stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.trust-strip__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.1;
}

.trust-strip__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-micro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.trust-strip__divider {
  width: 1px;
  height: 48px;
  background-color: var(--color-border);
  flex-shrink: 0;
}

.trust-strip__reviews {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.trust-strip__stars {
  display: block;
  font-size: 1rem;
  color: #D4AF37;
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}

.trust-strip__quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-style: italic;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .trust-strip__reviews {
    flex-direction: row;
    gap: var(--space-lg);
    max-width: 900px;
  }

  .trust-strip__review {
    flex: 1;
  }
}


/* ─── 16. ABOUT / PHILOSOPHY ─────────────────────────────────── */

.section--about {
  background-color: #1E1A17;
}

.about__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.about__headline {
  margin-bottom: var(--space-md);
}

.about__story {
  max-width: 680px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.about__body {
  line-height: 1.8;
}

/* Commitments 2×2 grid */
.about__commitments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 520px;
  margin: 0 auto var(--space-xl);
}

.about__commitment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.about__commitment svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.about__commitment-text {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
}

/* Pillars row */
.about__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto var(--space-xl);
}

.about__pillar {
  text-align: center;
  padding: 24px 20px;
  border-top: 2px solid var(--color-accent-red);
}

.about__pillar-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-red);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.about__pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs);
}

.about__pillar-desc {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Badge */
.about__badge {
  text-align: center;
}

.about__badge-img {
  width: 70px;
  height: auto;
  opacity: 0.5;
  mix-blend-mode: lighten;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about__pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__commitment {
    padding: 20px 24px;
  }
}


/* ─── 17. FAQ ACCORDION ──────────────────────────────────────── */

.faq__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text-primary);
  text-align: left;
  gap: var(--space-sm);
  transition: color 0.2s ease;
}

.faq-item__question:hover {
  color: var(--color-accent-red);
}

.faq-item__chevron {
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item--open .faq-item__chevron {
  transform: rotate(90deg);
  color: var(--color-accent-red);
}

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

.faq-item--open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 0 var(--space-md);
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.faq-item--open {
  border-bottom-color: var(--color-accent-red);
}


/* ─── 18. FOOTER CTA ────────────────────────────────────────── */

.footer-cta {
  background-color: #0D0000;
  padding: var(--section-py-mobile) var(--section-px-mobile);
  text-align: center;
}

.footer-cta__content {
  max-width: 500px;
  margin: 0 auto;
}

.footer-cta__headline {
  margin-bottom: var(--space-sm);
}

.footer-cta__sub {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.footer-cta__btn {
  min-width: 200px;
}

@media (min-width: 768px) {
  .footer-cta {
    padding: var(--section-py-desktop) var(--section-px-desktop);
  }
}


/* ─── 19. SITE FOOTER ────────────────────────────────────────── */

.site-footer {
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) var(--section-px-mobile);
}

/* 3-column grid */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.site-footer__column-title {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

/* Brand column */
.site-footer__column--brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-footer__seal {
  width: 50px;
  height: auto;
  opacity: 0.6;
  mix-blend-mode: lighten;
}

.site-footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  margin: 0;
}

/* Nav links column */
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.site-footer__link {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: var(--color-text-primary);
}

/* Social icons */
.site-footer__social {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.site-footer__social-link {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.site-footer__social-link:hover {
  color: var(--color-text-primary);
}

/* Email link */
.site-footer__email {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__email:hover {
  color: var(--color-text-primary);
}

/* Bottom row */
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.site-footer__copy {
  font-size: var(--text-micro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin: 0;
}

.site-footer__legal {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.site-footer__legal-link {
  font-size: var(--text-micro);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
  color: var(--color-text-primary);
}

.site-footer__powered {
  font-size: var(--text-micro);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .site-footer {
    padding: var(--space-xl) var(--section-px-desktop);
  }

  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* ═══════════════════════════════════════════════════════════════
   PHASE 5 — Cart Drawer & ATC States
   ═══════════════════════════════════════════════════════════════ */


/* ─── 20. CART DRAWER ────────────────────────────────────────── */

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer--open {
  pointer-events: auto;
  visibility: visible;
}

/* Overlay */
.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-drawer--open .cart-drawer__overlay {
  opacity: 1;
}

/* Panel — mobile: bottom sheet */
.cart-drawer__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75vh;
  background-color: #111111;
  border-top: 1px solid #222222;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

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

/* Panel — desktop: right panel */
@media (min-width: 768px) {
  .cart-drawer__panel {
    bottom: auto;
    left: auto;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    border-radius: 0;
    border-top: none;
    border-left: 1px solid #222222;
    transform: translateX(100%);
  }

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

/* Header */
.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.cart-drawer__close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.cart-drawer__close:hover {
  color: var(--color-text-primary);
}

/* Empty state */
.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl);
  text-align: center;
}

.cart-drawer__empty-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--color-text-secondary);
  margin: 0;
}

/* Cart items */
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-sm) var(--space-md);
}

.cart-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item__row-top {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cart-item__row-bottom {
  display: flex;
  justify-content: flex-start;
  padding-left: 66px;
}

.cart-item__thumb {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #1a1a1a;
}

.cart-item__thumb--placeholder {
  background-color: #1a1a1a;
  border: 1px solid var(--color-border);
}

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

.cart-item__name {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item__variant {
  display: block;
  font-size: var(--text-micro);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-item__qty {
  flex-shrink: 0;
  text-align: center;
}

.cart-item__qty-value {
  display: inline-block;
  min-width: 24px;
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-primary);
  text-align: center;
}

.cart-item__price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text-primary);
  font-size: 1.1rem;
  min-width: 50px;
  text-align: right;
}

.cart-item__remove {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
  margin-left: var(--space-xs);
}

.cart-item__remove:hover {
  color: var(--color-accent-red);
  background-color: rgba(255, 0, 0, 0.1);
}

.cart-item__qty-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s ease;
  padding: 0;
}

.cart-item__qty-btn:hover {
  background-color: var(--color-star);
  border-color: var(--color-star);
  color: var(--color-bg-primary);
}

.cart-item__qty-btn:active {
  transform: scale(0.95);
}

.cart-item__qty-btn--minus {
  margin-right: var(--space-xs);
}

.cart-item__qty-btn--plus {
  margin-left: var(--space-xs);
}

@media (max-width: 767px) {
  .cart-item__row-bottom {
    padding-left: 0;
  }
  
  .cart-item__qty-btn {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .cart-item__remove {
    width: 28px;
    height: 28px;
  }

  .cart-item__remove:hover {
    background-color: transparent;
    color: var(--color-accent-red);
  }
}
    color: var(--color-accent-red);
  }
}
/* Footer */
.cart-drawer__footer {
  padding: var(--space-md);
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  margin-bottom: var(--space-md);
}

.cart-drawer__subtotal-label {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-drawer__subtotal-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.cart-drawer__checkout {
  text-decoration: none;
  text-align: center;
}

.cart-drawer__secure {
  text-align: center;
  margin-top: var(--space-sm);
  color: var(--color-text-muted);
}


/* ─── 21. ATC BUTTON STATES ──────────────────────────────────── */

.btn--adding {
  background-color: #333 !important;
  border-color: #333 !important;
  cursor: wait;
  opacity: 0.7;
}

.btn--added {
  background-color: #1a5c2a !important;
  border-color: #1a5c2a !important;
}

.btn--error {
  background-color: var(--color-accent-red) !important;
}


/* ─── 22. CART COUNT BADGE ───────────────────────────────────── */

.sticky-bar__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-accent-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  display: none;
}

.sticky-bar__cta {
  position: relative;
}

/* ─── 23. INTERACTIVE INGREDIENTS MAP ───────────────────────── */

.interactive-map-container {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  margin: var(--space-xl) 0;
  background-color: var(--color-bg-primary);
  overflow: hidden;
  border-radius: var(--card-radius);
}

@media (min-width: 768px) {
  .interactive-map-container {
    display: block;
  }
  .ing-swipe {
    display: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   MOBILE FULLSCREEN SWIPE (≤767px)
   ───────────────────────────────────────────────────────────── */

.ing-swipe {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: calc(-1 * var(--section-px-mobile));
  margin-right: calc(-1 * var(--section-px-mobile));
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* Single World Map Container */
.ing-swipe__map-container {
  position: relative;
  width: calc(100% - var(--space-lg)); /* Leave slight edge padding */
  margin: 0 auto var(--space-lg);
  aspect-ratio: 2 / 1;
}

.ing-swipe__world-map {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.55;
}

/* Mobile dots on the map */
.ing-swipe__dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: var(--color-accent-red);
  border-radius: 50%;
  z-index: 5;
  opacity: 0.4;
  transition: all 0.3s ease;
}

/* Active pulsating dot */
.ing-swipe__dot.is-active {
  width: 8px;
  height: 8px;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 0 0 2px rgba(139, 0, 0, 0.4),
    0 0 8px rgba(139, 0, 0, 0.8);
}

.ing-swipe__dot.is-active::before,
.ing-swipe__dot.is-active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: dot-pulse 2s ease-out infinite;
  pointer-events: none;
}

.ing-swipe__dot.is-active::after {
  animation-delay: 0.7s;
  border-color: rgba(255, 255, 255, 0.8);
}

/* Carousel Track */
.ing-swipe__track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

.ing-swipe__track::-webkit-scrollbar {
  display: none;
}

/* Text-only Slide */
.ing-swipe__slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-lg);
}

/* Text content */
.ing-swipe__content {
  text-align: center;
  width: 100%;
}

.ing-swipe__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-xs);
}

.ing-swipe__origin {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.ing-swipe__benefit {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  margin: 0;
}

/* Progress counter with arrows */
.ing-swipe__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md) 0 var(--space-xs);
}

.ing-swipe__arrow {
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.ing-swipe__arrow:hover,
.ing-swipe__arrow:active {
  color: var(--color-text-primary);
}

.ing-swipe__counter {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  min-width: 80px;
  text-align: center;
}

.map-scaler {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 2 / 1;
}

.interactive-map-container img.world-map {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0.18;
  filter: brightness(0.8) saturate(0) invert(1);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.ingredient-dot {
  width: 14px;
  height: 14px;
  background: var(--color-accent-red);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    0 0 0 3px rgba(139, 0, 0, 0.3),
    0 0 10px rgba(139, 0, 0, 0.6);
  z-index: 10;
  padding: 0;
}

.ingredient-dot:hover,
.ingredient-dot.is-active {
  transform: translate(-50%, -50%) scale(1.6);
  box-shadow: 0 0 12px rgba(139, 0, 0, 0.9), 0 0 24px rgba(139, 0, 0, 0.5);
  background-color: var(--color-accent-red);
}

.ingredient-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  animation: dot-pulse 2s ease-out infinite;
  animation-delay: 0.7s;
  pointer-events: none;
}

.ingredient-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  animation: dot-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes dot-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.8); opacity: 0;   }
}

.ingredient-tooltip {
  position: absolute;
  top: 0; 
  left: 0;
  background-color: var(--color-bg-tertiary);
  padding: var(--space-md);
  border-radius: var(--card-radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-border);
  min-width: 200px;
  max-width: 250px;
  opacity: 0;
  pointer-events: none;

  --tx: 0px;
  --ty: -50%;
  transform: translate(var(--tx), calc(var(--ty) + 10px));
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

.ingredient-tooltip.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(var(--tx), var(--ty));
}

.ingredient-tooltip__origin {
  font-family: var(--font-body);
  font-size: var(--text-micro-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xs);
  display: block;
}

.ingredient-tooltip__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  line-height: var(--leading-tight);
}

.ingredient-tooltip__benefit {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

/* ─── FLOATING CART ICON ─────────────────────────────────────── */

.floating-cart {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 100;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}

.floating-cart:hover {
  color: rgba(255, 255, 255, 1);
  opacity: 1;
}

.floating-cart__icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.floating-cart__count {
  background: var(--color-accent-red);
  color: white;
  font-size: var(--text-micro);
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  right: -4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive: adjust position on mobile */
@media (max-width: 768px) {
  .floating-cart {
    top: 20px;
    right: 20px;
  }

  .floating-cart__icon {
    width: 20px;
    height: 20px;
  }
}
