/* style.css — CPX St. Patrick's Day Landing Page — Redesigned */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.9rem  + 0.5vw,  1.125rem);
  --text-lg:   clamp(1.125rem, 0.95rem + 0.85vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1rem    + 1.5vw,  2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

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

  /* Fonts */
  --font-display: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ============================================
   LIGHT MODE
   ============================================ */
:root, [data-theme="light"] {
  /* Surfaces — green-tinted */
  --color-bg:             #f0f7f2;
  --color-surface:        #f7faf8;
  --color-surface-2:      #ffffff;
  --color-surface-offset: #e6f0e9;
  --color-surface-offset-2: #dbe8df;
  --color-surface-dynamic: #cfe0d4;
  --color-divider:        #b8d1bf;
  --color-border:         #a4c5ad;

  /* Text */
  --color-text:           #0A1A12;
  --color-text-muted:     #3d5c48;
  --color-text-faint:     #7a9b86;
  --color-text-inverse:   #f0f7f2;

  /* Primary — Emerald Green */
  --color-primary:        #006B3F;
  --color-primary-hover:  #005832;
  --color-primary-active: #003D24;
  --color-primary-light:  #00A86B;
  --color-primary-highlight: #c8e6d5;

  /* Gold accent */
  --color-gold:           #D4A843;
  --color-gold-hover:     #C49A30;
  --color-gold-active:    #A47E1A;
  --color-gold-light:     #F0C75E;
  --color-gold-highlight: #f5edd4;

  /* Deep Greens */
  --color-dark-green:     #003D24;
  --color-forest:         #00261A;
  --color-near-black:     #0A1A12;

  /* Semantic */
  --color-error:          #c23b22;
  --color-success:        #008C51;

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.2 0.04 150 / 0.08);
  --shadow-md: 0 4px 12px oklch(0.2 0.04 150 / 0.1);
  --shadow-lg: 0 12px 32px oklch(0.2 0.04 150 / 0.14);
  --shadow-gold: 0 4px 24px oklch(0.7 0.1 85 / 0.3);
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
  --color-bg:             #0A1A12;
  --color-surface:        #0f2319;
  --color-surface-2:      #142d20;
  --color-surface-offset: #112518;
  --color-surface-offset-2: #183422;
  --color-surface-dynamic: #1f3d2a;
  --color-divider:        #1e3826;
  --color-border:         #2a4d35;

  --color-text:           #d8ead0;
  --color-text-muted:     #8aab92;
  --color-text-faint:     #506b58;
  --color-text-inverse:   #0A1A12;

  --color-primary:        #00A86B;
  --color-primary-hover:  #00C77E;
  --color-primary-active: #00E08E;
  --color-primary-light:  #00C77E;
  --color-primary-highlight: #1a3d2a;

  --color-gold:           #F0C75E;
  --color-gold-hover:     #FFD700;
  --color-gold-active:    #FFE44D;
  --color-gold-light:     #FFD700;
  --color-gold-highlight: #3d3520;

  --color-dark-green:     #003D24;
  --color-forest:         #00261A;
  --color-near-black:     #060F0A;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.5);
  --shadow-gold: 0 4px 24px oklch(0.7 0.1 85 / 0.15);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0A1A12;
    --color-surface:        #0f2319;
    --color-surface-2:      #142d20;
    --color-surface-offset: #112518;
    --color-surface-offset-2: #183422;
    --color-surface-dynamic: #1f3d2a;
    --color-divider:        #1e3826;
    --color-border:         #2a4d35;
    --color-text:           #d8ead0;
    --color-text-muted:     #8aab92;
    --color-text-faint:     #506b58;
    --color-text-inverse:   #0A1A12;
    --color-primary:        #00A86B;
    --color-primary-hover:  #00C77E;
    --color-primary-active: #00E08E;
    --color-primary-light:  #00C77E;
    --color-primary-highlight: #1a3d2a;
    --color-gold:           #F0C75E;
    --color-gold-hover:     #FFD700;
    --color-gold-active:    #FFE44D;
    --color-gold-light:     #FFD700;
    --color-gold-highlight: #3d3520;
    --color-dark-green:     #003D24;
    --color-forest:         #001A0F;
    --color-near-black:     #060F0A;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.4);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.5);
    --shadow-gold: 0 4px 24px oklch(0.7 0.1 85 / 0.15);
  }
}

/* ============================================
   URGENCY ANNOUNCEMENT BAR
   ============================================ */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #8B0000, #CC0000, #8B0000);
  background-size: 200% 100%;
  animation: urgencyBarShift 4s ease-in-out infinite;
  padding: var(--space-2) var(--space-4);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@keyframes urgencyBarShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.urgency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  max-width: var(--content-wide);
  margin-inline: auto;
}

.urgency-bar-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px #ff4444, 0 0 16px #ff4444;
  animation: urgencyPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #ff4444, 0 0 16px #ff4444; }
  50% { opacity: 0.6; box-shadow: 0 0 4px #ff4444; }
}

.urgency-bar-text {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
}

.urgency-countdown {
  font-variant-numeric: tabular-nums;
  color: #FFD700;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.urgency-bar-sep {
  color: rgba(255,255,255,0.3);
}

.urgency-bar-stock {
  color: rgba(255,255,255,0.85);
  animation: stockFlash 3s ease-in-out infinite;
}

@keyframes stockFlash {
  0%, 85%, 100% { opacity: 1; }
  90% { opacity: 0.5; }
  95% { opacity: 1; }
}

@media (max-width: 500px) {
  .urgency-bar-sep,
  .urgency-bar-stock {
    display: none;
  }
}

/* ============================================
   FINAL URGENCY STRIP
   ============================================ */
.final-urgency-strip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(255, 68, 68, 0.15);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #ff8888;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: finalUrgencyPulse 2s ease-in-out infinite;
}

@keyframes finalUrgencyPulse {
  0%, 100% { background: rgba(255, 68, 68, 0.15); border-color: rgba(255, 68, 68, 0.3); }
  50% { background: rgba(255, 68, 68, 0.22); border-color: rgba(255, 68, 68, 0.45); }
}

.final-urgency-icon {
  font-size: 16px;
  animation: hourglassFlip 2s ease-in-out infinite;
}

@keyframes hourglassFlip {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
}

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

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-3) var(--space-4);
  background: oklch(from var(--color-dark-green) l c h / 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid oklch(from var(--color-primary-light) l c h / 0.15);
  transition: background var(--transition-interactive);
}

.nav-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.nav-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-interactive);
}
.nav-theme-toggle:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-gold);
  color: var(--color-forest);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-interactive);
  min-height: 44px;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.nav-cta:active {
  transform: translateY(0);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(90px + var(--space-6));
  padding-bottom: var(--space-8);
  background: linear-gradient(165deg, #008C51 0%, #006B3F 35%, #003D24 75%, #00261A 100%);
}

[data-theme="dark"] .hero {
  background: linear-gradient(165deg, #005832 0%, #003D24 35%, #001A0F 75%, #000D07 100%);
}

/* Shamrock overlay for hero */
.hero::before {
  content: '☘ ☘ ☘ ☘ ☘ ☘ ☘ ☘ ☘ ☘ ☘ ☘ ☘';
  position: absolute;
  inset: 0;
  font-size: 80px;
  line-height: 120px;
  word-spacing: 60px;
  letter-spacing: 40px;
  color: rgba(255,255,255,0.025);
  overflow: hidden;
  pointer-events: none;
  white-space: break-spaces;
}

/* Gold sparkle particles */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(212,168,67,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(240,199,94,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 15%, rgba(255,215,0,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 50%, rgba(212,168,67,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 85%, rgba(240,199,94,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 30%, rgba(255,215,0,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 75%, rgba(212,168,67,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(240,199,94,0.3) 0%, transparent 100%);
  animation: sparkle 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes sparkle {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    padding-inline: var(--space-8);
    gap: var(--space-4);
  }
}

.hero-content { order: 1; }

@media (min-width: 768px) {
  .hero-content { order: 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: linear-gradient(135deg, rgba(212,168,67,0.2) 0%, rgba(255,215,0,0.15) 100%);
  border: 1px solid rgba(212,168,67,0.4);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F0C75E;
  margin-bottom: var(--space-6);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 0.5rem + 5.5vw, 6rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: var(--space-3);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-6);
}

/* Hero Price Block */
.hero-price-block--new {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero-price-block--new {
    justify-content: center;
  }
}

.hero-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

@media (min-width: 768px) {
  .hero-price-item {
    align-items: flex-start;
  }
}

.hero-price-item-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #FFD700;
  animation: goldShimmer 3s ease-in-out infinite;
}

.hero-price-item-amount--free {
  color: #00E08E;
  text-shadow: 0 0 20px rgba(0,224,142,0.4);
  animation: freeShimmer 3s ease-in-out infinite;
}

@keyframes freeShimmer {
  0%, 100% { text-shadow: 0 0 20px rgba(0,224,142,0.2); }
  50% { text-shadow: 0 0 30px rgba(0,224,142,0.5); }
}

.hero-price-item-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-price-plus {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: rgba(255,255,255,0.4);
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: linear-gradient(135deg, #FFD700 0%, #D4A843 100%);
  color: #00261A;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-interactive);
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
  min-height: 56px;
  text-decoration: none;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.45);
  background: linear-gradient(135deg, #FFE44D 0%, #F0C75E 100%);
}
.cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(255,215,0,0.3);
}

/* Disabled CTA state */
.cta-btn--disabled {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  cursor: not-allowed;
  box-shadow: none;
}
.cta-btn--disabled:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255,255,255,0.18);
}
.cta-btn--disabled:active {
  transform: none;
}

/* Activated CTA transition (when color is selected) */
.cta-btn--activated {
  animation: ctaActivate 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ctaActivate {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}

/* Large CTA variant */
.cta-btn--large {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-xl);
  min-height: 64px;
}

@media (max-width: 767px) {
  .cta-btn--large {
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-6);
    min-height: 56px;
    width: 100%;
  }
}

/* Light variant for dark backgrounds */
.cta-btn--light {
  background: linear-gradient(135deg, #FFD700 0%, #D4A843 100%);
}

@keyframes goldShimmer {
  0%, 100% { color: #FFD700; text-shadow: 0 0 20px rgba(255,215,0,0.2); }
  50% { color: #F0C75E; text-shadow: 0 0 30px rgba(255,215,0,0.4); }
}

.cta-subtext {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-3);
}

.cta-subtext strong {
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

/* Hero lifestyle image */
.hero-image {
  order: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

@media (min-width: 768px) {
  .hero-image { order: 1; }
}

.hero-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
  .hero-image img {
    max-height: 400px;
  }
}

/* ============================================
   COLOR SELECTOR — v2 Two-Column Product Layout
   ============================================ */
.color-selector-section {
  position: relative;
  background: var(--color-bg);
  padding: clamp(var(--space-12), 5vw, var(--space-20)) var(--space-4);
  overflow: hidden;
}

.color-selector-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), var(--color-primary));
}

.color-selector-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}

/* Two-column layout on desktop */
.selector-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 768px) {
  .selector-layout {
    grid-template-columns: 1fr 1fr;
    gap: clamp(var(--space-8), 4vw, var(--space-16));
    align-items: center;
  }
}

/* LEFT: Image Column */
.selector-image-col {
  position: sticky;
  top: 100px;
}

@media (max-width: 767px) {
  .selector-image-col {
    position: static;
    order: 1;
  }
  .selector-controls-col {
    order: 0;
  }
}

/* RIGHT: Controls Column */
.selector-controls-col {
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .selector-controls-col {
    text-align: center;
    align-items: center;
  }
}

/* Section Header */
.selector-overline {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.selector-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

/* Swatch Row */
.color-swatches-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

@media (max-width: 767px) {
  .color-swatches-row {
    justify-content: center;
  }
}

.color-swatch-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
  padding: var(--space-1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-interactive);
  position: relative;
}

.color-swatch-btn:hover {
  transform: translateY(-2px);
}

.color-swatch-btn:hover .color-swatch-circle {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.color-swatch-circle {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  border: 3px solid var(--color-divider);
  transition: all var(--transition-interactive);
  box-shadow: var(--shadow-sm);
  position: relative;
}

@media (max-width: 500px) {
  .color-swatch-circle {
    width: 44px;
    height: 44px;
  }
  .color-swatches-row {
    gap: var(--space-2);
  }
}

.color-swatch-check {
  display: none;
  position: absolute;
  top: -2px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  color: var(--color-forest);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 2;
}

.color-swatch-btn[aria-checked="true"] .color-swatch-check {
  display: block;
  animation: checkPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes checkPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.color-swatch-btn[aria-checked="true"] .color-swatch-circle {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-highlight), 0 0 16px rgba(212,168,67,0.25);
  transform: scale(1.08);
}

.color-swatch-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition-interactive);
}

.color-swatch-btn[aria-checked="true"] .color-swatch-label {
  color: var(--color-text);
  font-weight: 700;
}

/* ============================================
   PADDLE DISPLAY — Large image
   ============================================ */
.paddle-display {
  width: 100%;
}

.paddle-display-stage {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.paddle-display-stage.has-selection {
  border-color: var(--color-border);
  box-shadow: var(--shadow-lg);
}

.paddle-display-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-faint);
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.paddle-display-img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.paddle-display-img.entering {
  opacity: 0;
  transform: scale(0.92);
}

.paddle-display-img.visible {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 767px) {
  .paddle-display-stage {
    max-width: 320px;
    margin-inline: auto;
  }
}

/* Paddle Info — Name + Price in controls column */
.paddle-display-info {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  min-height: 36px;
}

@media (max-width: 767px) {
  .paddle-display-info {
    justify-content: center;
  }
}

.paddle-display-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-muted);
}

.paddle-display-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
}

[data-theme="dark"] .paddle-display-price {
  color: var(--color-primary-light);
}

/* Divider */
.selector-divider {
  width: 100%;
  height: 1px;
  background: var(--color-divider);
  margin-bottom: var(--space-5);
}

@media (max-width: 767px) {
  .selector-divider {
    max-width: 480px;
  }
}

/* ============================================
   FREE GIFT STRIP — Compact elegant banner
   ============================================ */
.free-gift-strip {
  margin-bottom: var(--space-6);
}

.free-gift-strip-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-xl);
  box-shadow: 0 0 20px rgba(212,168,67,0.08), var(--shadow-sm);
}

[data-theme="dark"] .free-gift-strip-inner {
  background: var(--color-surface-2);
  box-shadow: 0 0 20px rgba(212,168,67,0.06), var(--shadow-sm);
}

.free-gift-strip-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  padding: 4px;
}

.free-gift-strip-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
  min-width: 0;
}

.free-gift-strip-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 2px;
}

[data-theme="dark"] .free-gift-strip-label {
  color: var(--color-primary-light);
}

.free-gift-strip-detail {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

.free-gift-strip-value {
  font-weight: 500;
  color: var(--color-text-faint);
  text-decoration: line-through;
  margin-left: var(--space-2);
  font-size: var(--text-xs);
}

.free-gift-strip-tag {
  flex-shrink: 0;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

[data-theme="dark"] .free-gift-strip-tag {
  background: var(--color-primary);
}

@media (max-width: 500px) {
  .free-gift-strip-inner {
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
  }
  .free-gift-strip-img {
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   SELECTOR CTA
   ============================================ */
.selector-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (max-width: 767px) {
  .selector-cta-wrap {
    align-items: center;
    max-width: 480px;
  }
}

.selector-cta-note {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.selector-cta-note strong {
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

/* Selector CTA — keep proportional, never giant */
.color-selector-section .cta-btn--large {
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-8);
  min-height: 56px;
  width: 100%;
  max-width: 480px;
  flex-wrap: wrap;
  position: relative;
}

.selector-cta-main {
  font-size: var(--text-lg);
  font-weight: 800;
  display: block;
  line-height: 1.2;
}

.selector-cta-sub {
  font-size: var(--text-xs);
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.06em;
  display: block;
  line-height: 1;
}

/* Disabled CTA in color-selector (light bg version) */
.color-selector-section .cta-btn--disabled {
  background: var(--color-surface-offset-2);
  color: var(--color-text-faint);
}
.color-selector-section .cta-btn--disabled:hover {
  background: var(--color-surface-dynamic);
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown-section {
  position: relative;
  background: var(--color-dark-green);
  padding: var(--space-10) var(--space-4);
  text-align: center;
  overflow: hidden;
}

[data-theme="dark"] .countdown-section {
  background: var(--color-forest);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.countdown-section::before {
  content: '☘';
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-size: 80px;
  opacity: 0.06;
  color: #00A86B;
  pointer-events: none;
}
.countdown-section::after {
  content: '☘';
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: 60px;
  opacity: 0.06;
  color: #00A86B;
  pointer-events: none;
}

.countdown-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F0C75E;
  margin-bottom: var(--space-6);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.countdown-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  min-width: 80px;
  padding: var(--space-3) var(--space-4);
  font-variant-numeric: tabular-nums lining-nums;
}

.countdown-unit-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.countdown-separator {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  align-self: flex-start;
  padding-top: var(--space-3);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-6) var(--space-4);
}

[data-theme="dark"] .trust-bar {
  background: var(--color-surface);
}

.trust-bar-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-3);
}

.trust-icon {
  width: 36px;
  height: 36px;
  color: var(--color-gold);
}

.trust-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) var(--space-4);
  background: var(--color-bg);
}

.section-overline {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: var(--space-3);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  text-align: center;
  color: var(--color-text);
  margin-bottom: var(--space-12);
  letter-spacing: -0.01em;
}

.features-grid {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: var(--space-6);
}

.feature-card {
  background: var(--color-surface-2);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-interactive);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: oklch(from var(--color-primary) l c h / 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  font-size: 24px;
}

[data-theme="dark"] .feature-icon {
  background: oklch(from var(--color-primary) l c h / 0.15);
}

.feature-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.feature-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   SPECS SECTION
   ============================================ */
.specs-section {
  position: relative;
  background: linear-gradient(175deg, #003D24 0%, #00261A 100%);
  color: #ffffff;
  padding: clamp(var(--space-12), 6vw, var(--space-24)) var(--space-4);
  overflow: hidden;
}

[data-theme="dark"] .specs-section {
  background: linear-gradient(175deg, #001A0F 0%, #000D07 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.specs-section::before {
  content: '☘';
  position: absolute;
  bottom: -20px;
  right: 5%;
  font-size: 120px;
  opacity: 0.04;
  color: #00A86B;
  pointer-events: none;
}

.specs-inner {
  max-width: 900px;
  margin-inline: auto;
}

.specs-content {
  width: 100%;
}

.specs-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.specs-heading span {
  color: var(--color-gold-light);
}

.specs-sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

/* Spec Cards Grid */
.specs-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .specs-grid-v2 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 380px) {
  .specs-grid-v2 {
    grid-template-columns: 1fr;
  }
}

.spec-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(16px);
}

.spec-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.spec-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.spec-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,168,107,0.15);
  border-radius: 10px;
  color: #00D68F;
  flex-shrink: 0;
}

.spec-card-data {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.spec-card-value {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.spec-card-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* View All Specs Toggle */
.specs-details-toggle {
  margin-top: var(--space-5);
}

.specs-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-2) var(--space-4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.specs-toggle-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.specs-toggle-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.specs-toggle-btn svg {
  transition: transform 0.25s ease;
}

.specs-details {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  animation: specDetailsIn 0.3s ease forwards;
}

@keyframes specDetailsIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.specs-details-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.specs-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.specs-detail-row:last-child {
  border-bottom: none;
}

.specs-detail-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.specs-detail-value {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}



/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
  position: relative;
  background: linear-gradient(135deg, #008C51 0%, #006B3F 40%, #003D24 100%);
  padding: clamp(var(--space-12), 8vw, var(--space-32)) var(--space-4);
  text-align: center;
  overflow: hidden;
}

[data-theme="dark"] .final-cta-section {
  background: linear-gradient(135deg, #005832 0%, #003D24 40%, #001A0F 100%);
}

.final-cta-section::before {
  content: '☘ ☘ ☘';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  letter-spacing: 60px;
  opacity: 0.03;
  color: #ffffff;
  pointer-events: none;
  white-space: nowrap;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-narrow);
  margin-inline: auto;
}

.final-cta-heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-8);
}

.final-cta-heading span {
  color: #FFD700;
}

/* Final CTA Price Block */
.final-price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.final-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.final-price-amount {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: #FFD700;
  animation: goldShimmer 3s ease-in-out infinite;
}

.final-price-amount--free {
  color: #00E08E;
  animation: freeShimmer 3s ease-in-out infinite;
}

.final-price-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.final-price-plus {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: rgba(255,255,255,0.4);
}

.final-cta-subtext {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-near-black);
  padding: var(--space-8) var(--space-4);
  text-align: center;
}

.footer-logo img {
  height: 28px;
  width: auto;
  margin-inline: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  margin-bottom: var(--space-3);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: oklch(from var(--color-dark-green) l c h / 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%);
  animation: slideUpCTA 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes slideUpCTA {
  to { transform: translateY(0); }
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
  }
}

.mobile-cta-price {
  display: flex;
  flex-direction: column;
}

.mobile-cta-price-amount {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #FFD700;
}

.mobile-cta-price-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, #FFD700 0%, #D4A843 100%);
  color: #00261A;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  min-height: 48px;
  text-decoration: none;
  transition: all var(--transition-interactive);
  white-space: nowrap;
}
.mobile-cta-btn:active {
  opacity: 0.9;
  transform: scale(0.98);
}

/* Add bottom padding for mobile CTA bar */
@media (max-width: 767px) {
  .footer {
    padding-bottom: calc(var(--space-8) + 80px);
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: revealFade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

@keyframes revealFade {
  to { opacity: 1; }
}

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 767px) {
  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-sub {
    font-size: var(--text-base);
  }
  .countdown-number {
    min-width: 64px;
    font-size: var(--text-xl);
  }
}

/* ============================================
   LIFESTYLE PHOTO BREAK
   ============================================ */
.photo-break {
  overflow: hidden;
  max-height: 500px;
  position: relative;
}

.photo-break img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

@media (max-width: 767px) {
  .photo-break {
    max-height: 350px;
  }
  .photo-break img {
    height: 350px;
  }
}

/* ============================================
   MID-CTA WITH ACTION PHOTO
   ============================================ */
.mid-cta-section {
  background: var(--color-bg);
  padding: clamp(var(--space-8), 4vw, var(--space-16)) var(--space-4);
}

.mid-cta-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .mid-cta-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.mid-cta-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.mid-cta-image img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
  .mid-cta-image img {
    max-height: 400px;
  }
}

.mid-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

@media (max-width: 767px) {
  .mid-cta-content {
    align-items: center;
    text-align: center;
  }
}

.mid-cta-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.mid-cta-heading span {
  color: var(--color-primary);
}

[data-theme="dark"] .mid-cta-heading span {
  color: var(--color-primary-light);
}

.mid-cta-text {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 45ch;
}

/* ============================================
   FINAL CTA BACKGROUND IMAGE
   ============================================ */
.final-cta-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.final-cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.25;
  filter: blur(2px);
}

.final-cta-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,59,36,0.7) 0%, rgba(0,38,26,0.85) 50%, rgba(0,38,26,0.95) 100%);
}

[data-theme="dark"] .final-cta-bg-image img {
  opacity: 0.15;
}

[data-theme="dark"] .final-cta-bg-image::after {
  background: linear-gradient(180deg, rgba(0,26,15,0.8) 0%, rgba(0,13,7,0.92) 50%, rgba(0,13,7,0.98) 100%);
}

/* ============================================
   STOCK URGENCY INDICATOR
   ============================================ */
.stock-urgency {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding: var(--space-2) 0;
}

@media (max-width: 767px) {
  .stock-urgency {
    justify-content: center;
  }
}

.stock-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #e53e3e;
  flex-shrink: 0;
  animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(229, 62, 62, 0); }
}

.stock-urgency-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #e53e3e;
  letter-spacing: 0.01em;
}

[data-theme="dark"] .stock-urgency-text {
  color: #fc8181;
}

/* ============================================
   PURCHASE TOAST NOTIFICATION
   ============================================ */
.purchase-toast {
  position: fixed;
  bottom: 100px;
  left: var(--space-4);
  z-index: 9998;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
  max-width: 340px;
  width: calc(100% - var(--space-8));
}

.purchase-toast.visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.purchase-toast-inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
}

[data-theme="dark"] .purchase-toast-inner {
  background: var(--color-surface-2);
  border-color: var(--color-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.2);
}

.purchase-toast-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  padding: 4px;
  flex-shrink: 0;
}

.purchase-toast-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.purchase-toast-name {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.purchase-toast-action {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.purchase-toast-time {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-text-faint);
  line-height: 1.2;
}

.purchase-toast-close {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--color-text-faint);
  font-size: 18px;
  line-height: 1;
  padding: var(--space-1);
  flex-shrink: 0;
  transition: color var(--transition-interactive);
}

.purchase-toast-close:hover {
  color: var(--color-text);
}

@media (max-width: 767px) {
  .purchase-toast {
    bottom: 90px;
    left: 50%;
    transform: translateX(-150%);
    max-width: 320px;
  }
  .purchase-toast.visible {
    transform: translateX(-50%);
  }
}

/* =============================================
   REVIEW TRUST BAR (between hero & selector)
   ============================================= */
.review-trust-bar {
  background: linear-gradient(135deg, #004d2e 0%, #006B3F 50%, #004d2e 100%);
  padding: var(--space-3) var(--space-4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.review-trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.02) 10px,
    rgba(255,255,255,0.02) 20px
  );
  pointer-events: none;
}

.review-trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.rtb-stars {
  color: #FFD700;
  font-size: clamp(0.85rem, 0.7rem + 0.5vw, 1.1rem);
  letter-spacing: 1px;
  filter: drop-shadow(0 1px 3px rgba(255,215,0,0.4));
}

.rtb-text {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.65rem + 0.4vw, 0.95rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.rtb-text strong {
  color: #fff;
  font-weight: 700;
}

.rtb-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 2px 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

[data-theme="dark"] .review-trust-bar {
  background: linear-gradient(135deg, #003320 0%, #004d2e 50%, #003320 100%);
}

/* ============================================
   SOCIAL PROOF / TRUSTPILOT SECTION
   ============================================ */
.social-proof-section {
  background: var(--color-surface);
  padding: clamp(var(--space-12), 5vw, var(--space-20)) var(--space-4);
  text-align: center;
  border-top: 1px solid var(--color-divider);
}

[data-theme="dark"] .social-proof-section {
  background: var(--color-surface-2);
  border-top-color: var(--color-border);
}

.social-proof-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(var(--space-8), 3vw, var(--space-12));
}

/* Trustpilot Stars */
.trustpilot-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.trustpilot-stars {
  display: flex;
  gap: 4px;
}

.tp-star {
  width: 28px;
  height: 28px;
  color: #00b67a;
  filter: drop-shadow(0 1px 2px rgba(0,182,122,0.3));
}

.trustpilot-rating {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--space-1);
}

.trustpilot-rating strong {
  color: #00b67a;
  font-weight: 800;
}

.trustpilot-count {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* Stats Row */
.social-proof-stats {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-6), 3vw, var(--space-12));
  flex-wrap: wrap;
  justify-content: center;
}

.sp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.sp-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

[data-theme="dark"] .sp-stat-number {
  color: var(--color-primary-light);
}

.sp-stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sp-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-divider);
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .sp-stat-divider {
    display: none;
  }
  .social-proof-stats {
    gap: var(--space-6);
  }
  .sp-stat {
    min-width: 120px;
  }
}

/* Testimonials */
.sp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  width: 100%;
  max-width: 960px;
}

@media (max-width: 767px) {
  .sp-testimonials {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: var(--space-4);
  }
}

.sp-testimonial {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-5);
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  text-align: left;
}

[data-theme="dark"] .sp-testimonial {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.sp-testimonial-stars {
  font-size: 14px;
  color: #FFB800;
  letter-spacing: 2px;
  line-height: 1;
}

.sp-testimonial-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.55;
  font-style: italic;
}

.sp-testimonial-author {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-faint);
  margin-top: auto;
}

/* Footer Shop All Link */
.footer-shop-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-3) var(--space-6);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-full);
  transition: all var(--transition-interactive);
  margin-bottom: var(--space-4);
}

.footer-shop-all:hover {
  background: var(--color-gold);
  color: #00261A;
  transform: translateY(-1px);
}

/* ============================================
   FEATURED IN / PRESS BAR
   ============================================ */

/* ============================================
   VALUE STACK — EVERYTHING INCLUDED
   ============================================ */
.value-stack-section {
  position: relative;
  background: linear-gradient(175deg, #003D24 0%, #00261A 100%);
  padding: clamp(var(--space-12), 6vw, var(--space-24)) var(--space-4);
  overflow: hidden;
}

[data-theme="dark"] .value-stack-section {
  background: linear-gradient(175deg, #001A0F 0%, #000D07 100%);
}

.value-stack-section::before {
  content: '\2618  \2618  \2618';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  letter-spacing: 80px;
  opacity: 0.025;
  color: #ffffff;
  pointer-events: none;
  white-space: nowrap;
}

.value-stack-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}

.value-stack-header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}

.value-stack-overline {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F0C75E;
  margin-bottom: var(--space-2);
}

.value-stack-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.value-stack-sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  max-width: 45ch;
  margin-inline: auto;
}

/* Cards Grid */
.value-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}

@media (min-width: 768px) {
  .value-stack-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
  }
}

.value-stack-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  transition: all var(--transition-interactive);
}

.value-stack-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.value-stack-card--primary {
  border-color: rgba(212,168,67,0.3);
  background: rgba(212,168,67,0.08);
}

.value-stack-card--gift {
  border-color: rgba(0,168,107,0.35);
  background: rgba(0,168,107,0.08);
}

/* Badge */
.value-stack-card-badge {
  position: absolute;
  top: calc(-1 * var(--space-2));
  right: var(--space-3);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: #00261A;
}

.value-stack-card-badge--free {
  background: #00A86B;
  color: #ffffff;
  animation: freeBadgePulse 2.5s ease-in-out infinite;
}

@keyframes freeBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,168,107,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,168,107,0); }
}

/* Icon */
.value-stack-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-1);
}

.value-stack-card--primary .value-stack-card-icon {
  background: rgba(212,168,67,0.15);
  color: #F0C75E;
}

.value-stack-card--gift .value-stack-card-icon {
  background: rgba(0,168,107,0.15);
  color: #00E08E;
}

/* Card text */
.value-stack-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.value-stack-card-desc {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}

/* Card Value */
.value-stack-card-value {
  margin-top: auto;
  padding-top: var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.value-stack-card-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #FFD700;
}

.value-stack-card-price--free {
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.45);
}

.value-stack-card-price-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}

.value-stack-card--gift .value-stack-card-price-label {
  color: #00E08E;
  font-weight: 700;
}

/* Total Strip */
.value-stack-total {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .value-stack-total {
    flex-direction: row;
    justify-content: space-between;
    padding: var(--space-6) var(--space-10);
  }
}

.value-stack-total-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
}

@media (min-width: 768px) {
  .value-stack-total-inner {
    text-align: left;
  }
}

.value-stack-total-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
}

@media (min-width: 768px) {
  .value-stack-total-row {
    justify-content: flex-start;
  }
}

.value-stack-total-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

.value-stack-total-original {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.value-stack-total-row--you-pay .value-stack-total-label {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.value-stack-total-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: #FFD700;
}

.value-stack-total-row--savings {
  background: rgba(0,168,107,0.12);
  border: 1px solid rgba(0,168,107,0.25);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
}

.value-stack-total-savings-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.value-stack-total-savings {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  color: #00E08E;
  letter-spacing: 0.02em;
}

.value-stack-total .cta-btn--large {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .value-stack-total .cta-btn--large {
    width: 100%;
    max-width: 400px;
  }
}

/* ============================================
   PRESS / FEATURED IN BAR
   ============================================ */
.press-bar {
  background: linear-gradient(135deg, #003D24 0%, #00261A 100%);
  padding: clamp(var(--space-8), 4vw, var(--space-12)) var(--space-4);
  text-align: center;
  border-top: 1px solid rgba(0,168,107,0.15);
  border-bottom: 1px solid rgba(0,168,107,0.15);
  position: relative;
  overflow: hidden;
}

.press-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0,168,107,0.06) 0%, transparent 70%);
  pointer-events: none;
}

[data-theme="dark"] .press-bar {
  background: linear-gradient(135deg, #001A0F 0%, #000D07 100%);
  border-color: rgba(0,168,107,0.1);
}

.press-bar-inner {
  max-width: 600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.press-bar-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

.press-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.press-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-forbes-logo {
  height: clamp(36px, 2.5rem + 1.5vw, 56px);
  width: auto;
  opacity: 0.85;
  transition: opacity 0.18s ease;
  filter: brightness(0) invert(1);
}

.press-logo-item:hover .press-forbes-logo {
  opacity: 1;
}

.press-bar-quote {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  font-style: italic;
  max-width: 480px;
  line-height: 1.6;
  text-align: center;
}

.press-bar-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.5), transparent);
  border: none;
  margin: 0;
}

/* =============================================
   ORDER SUMMARY DRAWER
   ============================================= */

/* Overlay */
.os-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.os-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Drawer */
.os-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-surface);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-overflow-scrolling: touch;
}

.os-drawer.active {
  transform: translateY(0);
}

[data-theme="dark"] .os-drawer {
  background: var(--color-surface-2);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}

/* Desktop: center as modal */
@media (min-width: 768px) {
  .os-drawer {
    left: 50%;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    border-radius: 16px;
    max-width: 480px;
    max-height: 85vh;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  }
  .os-drawer.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.os-drawer-inner {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

@media (min-width: 768px) {
  .os-drawer-inner {
    padding: var(--space-6) var(--space-7) var(--space-7);
  }
}

/* Drawer grab handle (mobile) */
.os-drawer::before {
  content: '';
  display: block;
  width: 36px;
  height: 4px;
  background: var(--color-divider);
  border-radius: 2px;
  margin: var(--space-2) auto var(--space-1);
}

@media (min-width: 768px) {
  .os-drawer::before {
    display: none;
  }
}

/* Drawer Header */
.os-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: var(--space-4);
}

.os-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.os-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--color-surface-2);
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: background 0.18s ease, color 0.18s ease;
}

.os-close:hover {
  background: var(--color-surface-3, rgba(0,0,0,0.08));
  color: var(--color-text);
}

[data-theme="dark"] .os-close {
  background: var(--color-surface-3, rgba(255,255,255,0.1));
}

/* Line Items */
.os-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.os-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: 12px;
  background: var(--color-surface-2, rgba(0,0,0,0.02));
  transition: background 0.18s ease;
}

[data-theme="dark"] .os-item {
  background: rgba(255,255,255,0.04);
}

.os-item--primary {
  background: rgba(0,107,63,0.06);
  border: 1px solid rgba(0,107,63,0.12);
}

[data-theme="dark"] .os-item--primary {
  background: rgba(0,168,107,0.08);
  border-color: rgba(0,168,107,0.15);
}

.os-item--gift {
  background: linear-gradient(135deg, rgba(0,107,63,0.05), rgba(212,168,67,0.05));
  border: 1px solid rgba(212,168,67,0.18);
}

[data-theme="dark"] .os-item--gift {
  background: linear-gradient(135deg, rgba(0,168,107,0.06), rgba(212,168,67,0.06));
  border-color: rgba(212,168,67,0.2);
}

.os-item-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.os-item-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,107,63,0.08);
  border-radius: 8px;
  flex-shrink: 0;
  color: var(--color-primary);
}

[data-theme="dark"] .os-item-icon {
  background: rgba(0,168,107,0.1);
  color: var(--color-primary-light);
}

.os-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.os-item-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.os-item-meta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.os-item-price {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  flex-shrink: 0;
  text-align: right;
}

.os-item-price--free {
  color: var(--color-primary);
  font-size: 0.82rem;
}

.os-item-price--free s {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.72rem;
  margin-right: 4px;
}

.os-free-tag {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* Totals */
.os-totals {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-4);
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.os-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.os-totals-original {
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.os-totals-row--savings {
  color: var(--color-primary);
  font-weight: 600;
}

.os-totals-savings {
  font-weight: 700;
  color: var(--color-primary);
}

.os-totals-row--total {
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-divider);
  margin-top: var(--space-1);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.os-totals-final {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.os-discount-note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-1);
}

.os-discount-note strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* Checkout Button */
.os-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, #006B3F, #008C51);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 16px rgba(0,107,63,0.35);
  margin-bottom: var(--space-4);
}

.os-checkout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,107,63,0.45);
}

.os-checkout-btn:active {
  transform: translateY(0);
}

/* Trust Signals */
.os-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.os-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.os-trust-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Body lock when drawer is open */
body.os-open {
  overflow: hidden;
}
