/* ================================================
   DRYLY — Premium Lifestyle Brand Design System
   "Incontinence is a Tuesday, not a character flaw."

   Audience: 55+ adults
   WCAG AA compliant · 18px+ body · 48px+ tap targets
   ================================================ */

/* Fonts: Playfair Display for warmth + Inter for clarity */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600&display=swap');

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

/* ── Design Tokens ── */
:root {
  /* Palette — warm, rich, intentional */
  --color-cream: #FBF6F0;
  --color-cream-deep: #F5EDE3;
  --color-cream-warm: #F0E4D4;
  --color-white: #FFFFFF;
  --color-terracotta: #B8542A;
  --color-terracotta-dark: #943F1C;
  --color-terracotta-light: #E8A882;
  --color-terracotta-pale: #FCEEE5;
  --color-sage: #5B7B5E;
  --color-sage-dark: #446647;
  --color-sage-light: #D4E4D6;
  --color-sage-pale: #EDF5EE;
  --color-navy: #1E2A3A;
  --color-navy-light: #2D3E52;
  --color-charcoal: #3A3A3A;
  --color-text: #2C2C2C;
  --color-text-secondary: #5A5A5A;
  --color-text-muted: #7A7A7A;
  --color-text-on-dark: #F5F0EB;
  --color-text-on-dark-muted: rgba(245,240,235,0.65);
  --color-border: #DDD2C5;
  --color-border-light: #EDE5DA;
  --color-gold: #C49A3C;
  --color-gold-light: #F5E6C4;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-sm: 16px;
  --font-size-base: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 40px;
  --font-size-4xl: 52px;
  --font-size-5xl: 64px;
  --line-height: 1.65;
  --line-height-tight: 1.15;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 72px;
  --space-3xl: 104px;

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 100px;
  --shadow-sm: 0 1px 3px rgba(30,42,58,0.05);
  --shadow-md: 0 4px 16px rgba(30,42,58,0.08);
  --shadow-lg: 0 12px 40px rgba(30,42,58,0.10);
  --shadow-soft: 0 2px 20px rgba(30,42,58,0.06);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(30,42,58,0.06);
}

/* ── Base ── */
html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--color-terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

a:hover {
  color: var(--color-terracotta-dark);
}

/* ── Typography ── */
h1 {
  font-family: var(--font-display);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: -0.5px;
  color: var(--color-navy);
}

h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

h3 {
  font-family: var(--font-body);
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
}

h4 {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-navy);
}

p {
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--color-text-secondary);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

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

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

.section--warm {
  background: var(--color-cream-deep);
}

.section--sage {
  background: var(--color-sage-pale);
}

.section--dark {
  background: var(--color-navy);
  color: var(--color-text-on-dark);
}

.section--alt {
  background: var(--color-white);
}

.text-center {
  text-align: center;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--space-sm) 0;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: -1px;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.8;
  color: var(--color-navy);
}

.nav-logo span {
  color: var(--color-terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-links a:hover {
  background: var(--color-cream-deep);
  color: var(--color-text);
}

.nav-links .btn-nav {
  background: var(--color-terracotta);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(184, 84, 42, 0.25);
}

.nav-links .btn-nav:hover {
  background: var(--color-terracotta-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 84, 42, 0.35);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-xs);
  cursor: pointer;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  color: var(--color-navy);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 700;
  padding: 16px 40px;
  min-height: 56px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--color-terracotta);
  color: white;
  box-shadow: 0 2px 10px rgba(184, 84, 42, 0.3);
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 84, 42, 0.35);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border: 2px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-terracotta);
  border: 2px solid var(--color-terracotta);
}

.btn-outline:hover {
  background: var(--color-terracotta);
  color: white;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-navy);
  color: var(--color-text-on-dark);
}

.btn-dark:hover {
  background: var(--color-navy-light);
  color: var(--color-text-on-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,42,58,0.3);
}

.btn-large {
  font-size: var(--font-size-lg);
  padding: 22px 52px;
  min-height: 68px;
}

.btn-full {
  width: 100%;
}

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

/* ── Hero Section ── */
.hero {
  padding: var(--space-2xl) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, var(--color-cream) 0%, var(--color-cream-deep) 50%, var(--color-cream-warm) 100%);
}

/* Decorative blob shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--color-terracotta-pale) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--color-sage-pale) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
}

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

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-content .eyebrow {
  margin-bottom: var(--space-md);
  display: inline-block;
}

.hero-content h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.hero-content h1 em {
  color: var(--color-terracotta);
  font-style: italic;
}

.hero .subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* Hero visual panel (right side) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-terracotta-light), var(--color-sage));
}

.hero-card-icon {
  width: 72px;
  height: 72px;
  background: var(--color-terracotta-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.hero-card-icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-terracotta);
}

.hero-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: var(--space-sm);
}

.hero-card p {
  margin-bottom: var(--space-md);
}

.hero-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-card-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-text);
}

.hero-card-features li .check {
  width: 28px;
  height: 28px;
  background: var(--color-sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-features li .check svg {
  width: 16px;
  height: 16px;
  color: var(--color-sage);
}

/* Fallback for single-column hero */
.hero-centered {
  text-align: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.hero-centered h1 {
  max-width: 780px;
  margin: 0 auto var(--space-md);
}

.hero-centered .subtitle {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.hero-centered .hero-buttons {
  justify-content: center;
}

/* ── Trust Strip ── */
.trust-strip {
  padding: var(--space-lg) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-navy);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon.package { background: var(--color-cream-warm); }
.trust-badge-icon.shipping { background: var(--color-sage-pale); }
.trust-badge-icon.cancel { background: var(--color-terracotta-pale); }
.trust-badge-icon.fees { background: var(--color-gold-light); }

.trust-badge-icon svg {
  width: 24px;
  height: 24px;
}

.trust-badge-icon.package svg { color: var(--color-terracotta); }
.trust-badge-icon.shipping svg { color: var(--color-sage); }
.trust-badge-icon.cancel svg { color: var(--color-terracotta); }
.trust-badge-icon.fees svg { color: var(--color-gold); }

/* ── Brand Quote / Personality Strip ── */
.brand-quote {
  padding: var(--space-2xl) 0;
  background: var(--color-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 200px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

.brand-quote blockquote {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 500;
  font-style: italic;
  color: var(--color-text-on-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.brand-quote cite {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-terracotta-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Product Cards ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.product-card {
  background: var(--color-white);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--color-terracotta-light);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.product-card.featured {
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-terracotta-pale) 100%);
}

.product-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-terracotta);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(184, 84, 42, 0.3);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.product-description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.product-price {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}

.product-price .amount {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-navy);
}

.product-price .period {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  font-weight: 500;
}

.product-price .per-unit {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: 4px;
}

.product-features {
  list-style: none;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.product-features li {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  padding: var(--space-xs) 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.product-features li svg {
  width: 22px;
  height: 22px;
  color: var(--color-sage);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 0 var(--space-sm);
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--color-terracotta);
  color: white;
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 12px rgba(184, 84, 42, 0.25);
  position: relative;
}

.step-card h3 {
  font-family: var(--font-display);
  margin-bottom: var(--space-sm);
  font-size: 22px;
}

.step-card p {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* ── Values / Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: var(--space-md);
}

.feature-icon.icon-box { background: var(--color-cream-warm); }
.feature-icon.icon-auto { background: var(--color-sage-pale); }
.feature-icon.icon-quality { background: var(--color-terracotta-pale); }
.feature-icon.icon-price { background: var(--color-gold-light); }

.feature-card h3 {
  font-family: var(--font-display);
  margin-bottom: var(--space-sm);
  font-size: 22px;
}

.feature-card p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── Social Proof Section ── */
.social-proof {
  padding: var(--space-3xl) 0;
  background: var(--color-cream-deep);
  text-align: center;
}

.social-proof-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--space-xl);
}

.social-proof-number {
  font-family: var(--font-display);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-terracotta);
}

.social-proof-label {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.stat-divider {
  width: 1px;
  background: var(--color-border);
  align-self: stretch;
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-warm) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-terracotta-pale) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: var(--font-size-lg);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ── Shop Page ── */
.page-header {
  text-align: center;
  padding: var(--space-2xl) 0 var(--space-lg);
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-deep) 100%);
}

.page-header .eyebrow {
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* Configuration Panel */
.config-panel {
  display: none;
  background: var(--color-white);
  border: 2px solid var(--color-terracotta);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  animation: slideDown 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.config-panel.active {
  display: block;
}

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

.config-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}

.config-header h3 {
  font-family: var(--font-display);
  color: var(--color-navy);
}

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

/* Form Elements */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.form-group .helper {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: 4px;
}

select,
input[type="text"],
input[type="email"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  padding: 14px 18px;
  min-height: 56px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%233D4556' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

select:focus,
input:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(184, 84, 42, 0.12);
}

/* Radio buttons as big toggles */
.radio-group {
  display: flex;
  gap: var(--space-sm);
}

.radio-option {
  flex: 1;
}

.radio-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md) var(--space-sm);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  min-height: 56px;
  justify-content: center;
  background: var(--color-white);
}

.radio-option label .label-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-navy);
}

.radio-option label .label-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: 4px;
}

.radio-option input:checked + label {
  border-color: var(--color-terracotta);
  background: var(--color-terracotta-pale);
}

.radio-option input:focus + label {
  box-shadow: 0 0 0 3px rgba(184, 84, 42, 0.12);
}

/* Size Guide */
.size-guide {
  margin-top: var(--space-md);
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.size-guide h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-sm);
}

.size-guide table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.size-guide th,
.size-guide td {
  text-align: left;
  padding: var(--space-xs) var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.size-guide th {
  font-weight: 700;
  color: var(--color-navy);
}

.size-guide td {
  color: var(--color-text-secondary);
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: var(--space-xl) auto 0;
}

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

.faq-question {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: var(--space-xs) 0;
  font-family: var(--font-body);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: var(--space-sm);
  color: var(--color-terracotta);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: var(--space-sm) 0;
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── Confirmation Page ── */
.confirmation {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.confirmation-icon {
  width: 104px;
  height: 104px;
  background: var(--color-sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 16px rgba(91, 123, 94, 0.15);
}

.confirmation-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-sage);
}

.confirmation h1 {
  margin-bottom: var(--space-sm);
}

.confirmation .subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.next-steps {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
}

.next-steps h3 {
  font-family: var(--font-display);
  margin-bottom: var(--space-md);
}

.next-steps ol {
  list-style: none;
  counter-reset: steps;
}

.next-steps li {
  counter-increment: steps;
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  padding: var(--space-sm) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.next-steps li::before {
  content: counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: var(--color-terracotta-pale);
  color: var(--color-terracotta);
  font-weight: 800;
  font-size: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Legal Pages ── */
.legal-page {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.legal-page h1 {
  margin-bottom: var(--space-lg);
}

.legal-page h2 {
  font-size: var(--font-size-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-page p {
  margin-bottom: var(--space-md);
}

.legal-page ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-page li {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  padding: 4px 0;
}

/* ── Footer ── */
.footer {
  background: var(--color-navy);
  color: var(--color-text-on-dark);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-on-dark);
  text-decoration: none;
  letter-spacing: -1px;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer-logo span {
  color: var(--color-terracotta-light);
}

.footer-brand p {
  color: var(--color-text-on-dark-muted);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-2xl);
}

.footer-nav-col h4 {
  color: var(--color-text-on-dark);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav-col a {
  font-size: var(--font-size-base);
  color: var(--color-text-on-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-col a:hover {
  color: var(--color-text-on-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 14px;
  color: var(--color-text-on-dark-muted);
}

/* Legacy footer layout fallback */
.footer > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: var(--color-text-on-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-text-on-dark);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: var(--font-size-4xl);
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .footer-nav {
    justify-content: flex-start;
    gap: var(--space-xl);
  }

  .stats-row {
    gap: var(--space-xl);
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-base: 17px;
    --space-3xl: 72px;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 22px; }

  .hero-content h1 {
    font-size: 38px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }

  .nav-toggle {
    display: block;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .steps-grid::before {
    display: none;
  }

  .trust-badges {
    gap: var(--space-md);
  }

  .hero {
    padding: var(--space-xl) 0 var(--space-2xl);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .footer-nav {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .radio-group {
    flex-direction: column;
  }

  .product-badge {
    font-size: 13px;
    padding: 5px 16px;
  }

  .brand-quote blockquote {
    font-size: var(--font-size-xl);
  }

  .btn-large {
    padding: 18px 36px;
    font-size: var(--font-size-base);
  }
}

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

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ── Logomark ── */
.nav-logomark {
  width: 24px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
  display: inline-block;
}

.footer-logomark {
  width: 22px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
  display: inline-block;
}

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

/* ── Hero Photo Visual ── */
.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: visible;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

/* Warm overlay on photo for brand palette alignment */
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(30, 42, 58, 0.35) 100%
  );
  pointer-events: none;
}

/* Fallback when photo fails to load */
.hero-photo-wrap.no-photo {
  background: linear-gradient(145deg, var(--color-cream-warm) 0%, var(--color-terracotta-pale) 100%);
  min-height: 420px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.hero-photo-wrap.no-photo .hero-photo {
  display: none;
}

/* Floating delivery badge on hero photo */
.hero-photo-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(30, 42, 58, 0.16);
  z-index: 10;
  max-width: 260px;
}

.hero-photo-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--color-terracotta-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-terracotta);
}

.hero-photo-badge-icon svg {
  width: 20px;
  height: 20px;
}

.hero-photo-badge-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

.hero-photo-badge-sub {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Floating stat pill on hero photo */
.hero-photo-stat {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--color-terracotta);
  color: white;
  border-radius: var(--radius-full);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(184, 84, 42, 0.35);
  z-index: 10;
  white-space: nowrap;
}

.hero-photo-stat-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.hero-photo-stat-text {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

/* ── Box Mockup Section ── */
.box-section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.box-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-illustration-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.box-illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(30, 42, 58, 0.12));
}

/* Floating "plain" badge on box */
.box-badge {
  position: absolute;
  top: -14px;
  right: -10px;
  background: var(--color-sage);
  color: white;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(91, 123, 94, 0.35);
  white-space: nowrap;
}

.box-badge svg {
  flex-shrink: 0;
}

/* Box content column */
.box-content {
  max-width: 520px;
}

.box-content .eyebrow {
  margin-bottom: var(--space-md);
  display: inline-block;
}

.box-content h2 {
  margin-bottom: var(--space-md);
}

.box-content > p {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.box-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.box-features-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.box-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--color-cream-warm);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-terracotta);
}

.box-feature-icon svg {
  width: 22px;
  height: 22px;
}

.box-features-list li div:last-child strong {
  display: block;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.box-features-list li div:last-child p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0;
}

/* ── Lifestyle Section ── */
.lifestyle-section {
  overflow: hidden;
}

.lifestyle-intro {
  max-width: 580px;
  margin: var(--space-sm) auto var(--space-xl);
  font-size: var(--font-size-lg);
  line-height: 1.7;
  text-align: center;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  align-items: stretch;
}

.lifestyle-photos-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.lifestyle-photo {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-cream-warm);
}

.lifestyle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.lifestyle-photo:hover img {
  transform: scale(1.03);
}

.lifestyle-photo--a {
  min-height: 480px;
}

.lifestyle-photo--b,
.lifestyle-photo--c {
  min-height: 220px;
  flex: 1;
}

/* Gradient overlay on lifestyle photos */
.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(30, 42, 58, 0.65) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  pointer-events: none;
}

.lifestyle-caption {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: white;
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ── Product Card Icon ── */
.product-card-icon {
  width: 52px;
  height: 52px;
  background: var(--color-sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--color-sage);
}

.product-card-icon svg {
  width: 28px;
  height: 28px;
}

/* ── Step Icon Wrap ── */
.step-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--color-cream-warm);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-md) auto var(--space-sm);
  color: var(--color-terracotta);
}

.step-icon-wrap svg {
  width: 24px;
  height: 24px;
}

/* ── Feature Card Icon Upgrade ── */
.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-icon.icon-box { color: var(--color-terracotta); }
.feature-icon.icon-auto { color: var(--color-sage); }
.feature-icon.icon-quality { color: var(--color-terracotta); }
.feature-icon.icon-price { color: var(--color-gold); }

/* ── Responsive: New Visual Elements ── */
@media (max-width: 900px) {
  .hero-photo-badge {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 16px;
    max-width: 240px;
  }

  .hero-photo-stat {
    top: 16px;
    right: 8px;
    font-size: 13px;
    padding: 8px 14px;
  }

  .hero-photo-stat-num {
    font-size: 16px;
  }

  .box-section-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .box-visual {
    order: -1;
  }

  .box-illustration-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .box-badge {
    right: 0;
  }

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

  .lifestyle-photos-col {
    flex-direction: row;
  }

  .lifestyle-photo--a {
    min-height: 360px;
  }

  .lifestyle-photo--b,
  .lifestyle-photo--c {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .hero-photo {
    height: 380px;
  }

  .hero-photo-wrap {
    max-width: 100%;
  }

  .hero-photo-badge {
    position: static;
    margin: var(--space-md) auto 0;
    max-width: 100%;
    justify-content: center;
    border: 1px solid var(--color-border-light);
  }

  .hero-photo-stat {
    top: 12px;
    right: 12px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-photo-stat-num {
    font-size: 14px;
  }

  .lifestyle-photos-col {
    flex-direction: column;
  }

  .lifestyle-photo--a {
    min-height: 280px;
  }

  .lifestyle-photo--b,
  .lifestyle-photo--c {
    min-height: 200px;
  }

  .lifestyle-caption {
    font-size: 16px;
  }

  .box-features-list li {
    gap: var(--space-sm);
  }

  .box-feature-icon {
    width: 40px;
    height: 40px;
  }

  .box-feature-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ================================================
   SHOP PAGE — NEW COMPONENTS (Product Overhaul)
   ================================================ */

/* ── Free Gift Banner ── */
.free-gift-banner {
  background: var(--color-terracotta);
  color: white;
  text-align: center;
  padding: 12px var(--space-md);
  font-size: var(--font-size-sm);
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.free-gift-banner strong {
  font-weight: 700;
  color: white;
}

.free-gift-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.free-gift-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

/* ── Trust Badges ── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

/* ── Product Visuals (SVG illustrations) ── */
.product-visual {
  width: 100%;
  max-width: 180px;
  margin: 0 auto var(--space-md);
  display: block;
}

.product-visual svg {
  width: 100%;
  height: auto;
}

/* ── What's Inside Box ── */
.product-whats-inside {
  background: var(--color-sage-pale);
  border: 1px solid var(--color-sage-light);
  border-radius: var(--radius-md);
  padding: 12px var(--space-sm);
  margin-bottom: var(--space-md);
}

.product-whats-inside--featured {
  background: var(--color-terracotta-pale);
  border-color: var(--color-terracotta-light);
}

.whats-inside-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 4px;
}

.product-whats-inside--featured .whats-inside-label {
  color: var(--color-terracotta);
}

.product-whats-inside p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* ── Config Panel Gift Callout ── */
.config-gift-callout {
  background: linear-gradient(135deg, var(--color-sage-pale) 0%, var(--color-cream-warm) 100%);
  border: 1px solid var(--color-sage-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.config-gift-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.config-gift-callout strong {
  color: var(--color-navy);
}

/* ── Comparison Grid ── */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.comparison-card {
  background: var(--color-white);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.comparison-card--featured {
  border-color: var(--color-terracotta);
  background: linear-gradient(180deg, white 0%, var(--color-terracotta-pale) 100%);
  box-shadow: var(--shadow-lg);
}

.comparison-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

.comparison-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  margin: 0;
}

.comparison-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.comparison-metric {
  margin-top: auto;
  padding-top: var(--space-sm);
}

.metric-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.metric-compare {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-bar {
  display: flex;
  align-items: center;
  min-height: 28px;
  border-radius: var(--radius-full);
  padding: 0 12px;
}

.metric-bar span {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  color: white;
}

.metric-bar--them {
  background: var(--color-text-muted);
}

.metric-bar--us {
  background: var(--color-terracotta);
}

.metric-note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 8px;
  font-style: italic;
}

.comparison-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: var(--space-sm);
}

.cmp-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.cmp-point svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cmp-good {
  background: var(--color-sage-pale);
  color: var(--color-sage-dark);
}

.cmp-good svg {
  color: var(--color-sage);
}

.cmp-bad {
  background: #FEF3F2;
  color: #9B1C1C;
}

.cmp-bad svg {
  color: #E53E3E;
}

.comparison-tagline {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border-light);
}

.comparison-tagline p {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Wipes Section ── */
.wipes-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3xl);
  align-items: center;
}

.wipes-content {
  max-width: 560px;
}

.wipes-desc {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin: var(--space-sm) 0 var(--space-lg);
  line-height: 1.6;
}

.wipes-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.wipes-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
}

.wipes-features li svg {
  width: 20px;
  height: 20px;
  color: var(--color-sage);
  flex-shrink: 0;
}

.wipes-price-row {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.wipes-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
}

.wipes-price .amount {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
}

.wipes-price .period {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  font-weight: 500;
}

.wipes-price .per-unit {
  display: block;
  width: 100%;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.wipes-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.wipes-note a {
  color: var(--color-terracotta);
}

.wipes-visual {
  width: 200px;
  flex-shrink: 0;
}

.wipes-visual svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(30,42,58,0.1));
}

/* ── Sage Button ── */
.btn-sage {
  background: var(--color-sage);
  color: white;
  border: 2px solid var(--color-sage);
}

.btn-sage:hover {
  background: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(91,123,94,0.3);
}

/* ── Free Gift Section ── */
.free-gift-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.free-gift-visual {
  width: 200px;
  flex-shrink: 0;
}

.free-gift-visual svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(91,123,94,0.25));
}

.free-gift-text h2 {
  margin: var(--space-xs) 0 var(--space-sm);
}

.free-gift-desc {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.free-gift-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.free-gift-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
}

.free-gift-features li svg {
  width: 20px;
  height: 20px;
  color: var(--color-sage);
  flex-shrink: 0;
}

/* ── Responsive adjustments ── */
@media (max-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .wipes-visual {
    width: 160px;
    margin: 0 auto;
  }

  .free-gift-section {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .free-gift-visual {
    width: 160px;
    margin: 0 auto;
  }

  .free-gift-features li {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .free-gift-banner {
    font-size: 14px;
    padding: 10px var(--space-sm);
  }

  .trust-badges {
    gap: var(--space-xs);
  }

  .trust-badge {
    font-size: 14px;
    padding: 7px 14px;
  }

  .product-visual {
    max-width: 140px;
  }

  .wipes-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .comparison-tagline p {
    font-size: 18px;
  }
}
