@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* CheckThatMate Brand V4 - Consolidated Design System */

  /* Primary Brand Colors */
  --electric-teal: #42D9C8;
  --deep-violet: #5E239D;
  --hot-pink: #F61067;
  --pacific-cyan: #2C8C99;

  /* Semantic Colors - FIXED */
  --primary-green: #10B981;
  --evergreen: #064E3B;
  --midnight: #0F172A;

  /* Pastel Accent Colors */
  --sky-blue: var(--electric-teal);
  --salmon: var(--hot-pink);
  --mint: var(--electric-teal);
  --lavender: var(--deep-violet);
  --peach: #FFB8D4;

  /* Background Colors */
  --cream: #FFFBF0;
  --bg-cream: #FFFBF0;
  --bg-offwhite: #F8FAFC;
  --bg-white: #FFFFFF;
  --paper-white: #FFFFFF;
  --accent-sage: #E2E8F0;

  /* Semantic Colors - FIXED: Success should be GREEN, not pink! */
  --success-mint: #10B981;
  --success-light: rgba(16, 185, 129, 0.1);
  --warning-amber: #F59E0B;
  --error-red: #EF4444;

  /* UI Colors */
  --glass-border: rgba(94, 35, 157, 0.15);
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --hd-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 25px 60px rgba(0, 0, 0, 0.12);

  /* Typography - MODERN TECH UPDATE (Synervion Style) */
  --font-headings: 'Manrope', sans-serif;
  /* Modern, Geometric */
  --font-display: 'Manrope', sans-serif;
  /* Consistent Branding */
  --font-body: 'Inter', sans-serif;
  /* Clean, High-Legibility */
  --font-editorial: 'Inter', sans-serif;
  /* Matching the Reference */
  /* Keep UI font consistent */
  --font-ui: 'Plus Jakarta Sans', sans-serif;

  /* Text Colors */
  --text-main: #1A1638;
  /* Midnight - Fixed for Light Mode */
  --text-body: #1A1A1A;
  /* Dark Grey - Fixed for Light Mode */
  /* Increased opacity for readability */
  --text-muted: #666666;
  /* Grey - Fixed for Light Mode */
  --text-on-dark: #FFFFFF;
  --text-on-light: #1A1A1A;

  /* Design System: Radius Tokens */
  --radius-pill: 12px;
  --radius-card: 16px;
  --radius-sm: 12px;
  --radius-input: 8px;
  --radius-xs: 6px;

  /* Spacing Tokens */
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --card-padding: 24px;
  --card-gap: 24px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--paper-white);
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 500;
  /* Increased weight from 400 */
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.2;
}

/* Light Mode Card Evolution */
.glass-card {
  background: var(--paper-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  /* Standardized */
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px;
  /* Standardized premium padding */
}

.glass-card.noir-card {
  background: var(--paper-white);
  color: var(--text-main);
  box-shadow: var(--card-shadow);
}

/* Hero Section - Clean Reset */
.hero {
  padding: 140px 5% 0;
  /* Remove bottom padding to let image sit flush if needed */
  background-color: var(--electric-teal);
  background-image: url('assets/hero-bg-v3.png');
  /* Restored texture to match image integration */
  background-size: cover;
  background-position: center right;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
}

/* Zoomed Integrated Image Style */
.hero-image-zoom {
  width: 100%;
  max-width: 1100px;
  height: auto;
  object-fit: contain;
  /* Scale increased (+20%), aligned right (positive X) */
  transform: scale(1.65) translateX(5%) translateY(5%);
  transform-origin: center right;
  display: block;
  /* Soft mask to blend edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

/* Editorial Typography & Layout - REWRITTEN TO MATCH SYNERVION REFERENCE */

.editorial-content {
  font-family: var(--font-editorial);
  color: #334155;
  /* Slate 600 - The reference exact color */
  max-width: 680px;
  /* Slight bump from 468px for better desktop balance, but still narrow */
  margin: 0 auto;
  padding: 0 20px;
}

.editorial-content p {
  margin-bottom: 32px;
  /* Exact reference spacing */
  font-size: 1.125rem;
  /* 18px */
  line-height: 1.7;
  /* ~30px line height */
  font-weight: 400;
}

/* Hyper-specific adjustments for first paragraph after H2 */
.editorial-content h2+p {
  margin-top: -0.5rem;
}

.editorial-content h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  /* 30px */
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  color: #0F172A;
  /* Slate 900 - Reference Header Color */
  line-height: 1.3;
  letter-spacing: -0.02em;
  border-bottom: none;
  /* Removed the teal line to match cleaner reference */
  padding-bottom: 0;
  display: block;
}

.editorial-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  /* 24px */
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #1E293B;
  /* Slate 800 */
}

/* Modern Drop Cap - Simplified or Removed based on reference style */
/* Reference is very clean, so we make this subtle */
.drop-cap::first-letter {
  float: left;
  font-size: 3.5rem;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 6px;
  font-weight: 800;
  color: var(--primary-green);
  font-family: var(--font-display);
}

/* Quote Redesign - Cleaner */
.pull-quote {
  border-left: 3px solid var(--electric-teal);
  /* Thinner accent */
  padding: 1.5rem 2rem;
  margin: 3.5rem 0;
  /* Inline with text, not breaking out */
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.5;
  font-style: normal;
  /* Modern style often ditches italic */
  color: #0F172A;
  background: transparent;
  /* Cleaner */
  border-radius: 0;
  position: relative;
  box-shadow: none;
}

.pull-quote::before {
  display: none;
  /* Remove big quote mark for cleaner look */
}

/* Stat Highlight - Minimalist */
.stat-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  background: transparent;
  border: none;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: none;
  border-radius: 0;
  margin: 4rem 0;
  text-align: center;
}

.stat-highlight:hover {
  transform: none;
  /* Identify stability */
}

.stat-value {
  font-size: 3.5rem;
  /* Slightly smaller */
  font-weight: 800;
  font-family: var(--font-headings);
  color: var(--primary-green);
  /* Flat color, no gradient */
  background: none;
  -webkit-text-fill-color: initial;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748B;
  font-weight: 600;
  font-family: var(--font-ui);
}

/* Image Handling - SHARP & CLEAN */
.editorial-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  /* Reference has 0px radius */
  box-shadow: none;
  /* Reference is flat */
  margin: 3rem 0 0.5rem;
  display: block;
  transition: none;
  /* No hover effects */
}

.editorial-image:hover {
  transform: none;
}

.image-caption {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: #94A3B8;
  margin-top: 1rem;
  text-align: center;
  font-style: normal;
  margin-bottom: 3.5rem;
  padding: 0;
}

/* Grid Layout - Simplified */
.image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 3.5rem 0;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .pull-quote {
    margin: 4rem 0;
  }
}

.hero h1 {
  color: var(--primary-green);
  font-size: 4rem;
  margin-bottom: 24px;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 540px;
  line-height: 1.6;
}

/* .hero-img-constrained removed - replaced by background image */

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  /* Allow it to take space in flex row */
  max-width: 520px;
  /* Revert to constrained width for split layout */
  padding-right: 40px;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
  height: 100%;
}

.hero-image-container img {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
}

/* Lifestyle Dark Section */
.lifestyle-dark {
  background: var(--primary-green);
  padding: 100px 5%;
  text-align: center;
  color: #FFFFFF;
}

.lifestyle-dark h2 {
  color: #FFFFFF;
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.lifestyle-dark p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
}

.lifestyle-illustration {
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
  display: block;
  border-radius: 24px;
  filter: drop-shadow(0 0 40px rgba(32, 208, 129, 0.15));
}

/* Improved Ticker Contrast */
.ticker-wrap {
  background: var(--primary-green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 0;
}

.status-pulse {
  background: var(--success-mint);
  box-shadow: 0 0 10px var(--success-mint);
}

/* Primary Button - CTA */
.btn-primary {
  background: var(--hot-pink);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(246, 16, 103, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #D92E89;
  box-shadow: 0 8px 30px rgba(246, 16, 103, 0.35);
}

/* Secondary Button */
.btn-secondary {
  background: white;
  color: var(--deep-violet);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--deep-violet);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--deep-violet);
  color: white;
  border-color: var(--deep-violet);
}

/* Ghost Button (Everlywell Style) */
.btn-ghost {
  background: transparent;
  color: var(--evergreen);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  text-decoration: underline;
  color: var(--primary-green);
}

/* Small Button Variant */
.btn-sm {
  padding: 12px 24px;
  font-size: 0.875rem;
}

/* Large Button Variant */
.btn-lg {
  padding: 20px 48px;
  font-size: 1.125rem;
}

/* Utility Classes for New Palette */
.bg-mint {
  background-color: var(--mint);
}

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

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

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

.bg-sky-blue {
  background-color: var(--sky-blue);
}

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

.text-evergreen {
  color: var(--evergreen);
}

/* Cart Icon Button */
.cart-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  /* Default for transparent nav */
}

.cart-icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-nav.scrolled .cart-icon-btn {
  color: var(--deep-violet) !important;
}

.site-nav.scrolled .cart-icon-btn:hover {
  background: rgba(94, 35, 157, 0.1);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--hot-pink);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-input {
  background: #FFF;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-input);
  /* Standardized */
  padding: 16px;
  color: var(--text-main);
  font-family: var(--font-body);
}

.form-input:focus {
  border-color: var(--primary-green);
  background: #FFF;
  box-shadow: 0 0 10px rgba(26, 77, 51, 0.1);
}

.section-illustration {
  max-width: 500px;
  margin: 40px auto;
  display: block;
  border-radius: 24px;
}

/* Process Section (New) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
}

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

.process-step p {
  color: #1C4A30;
  /* Ensure text is visible on light backgrounds */
  font-weight: 500;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--bg-white);
  color: var(--deep-violet);
  border: 2px solid var(--accent-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Trust Badges */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 30px;
  background: var(--bg-offwhite);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* FAQ Accordion (Clean) */
.faq-section {
  max-width: 800px;
  margin: 120px auto;
  padding: 0 24px;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 0;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: var(--font-body);
}

.faq-answer {
  padding-top: 16px;
  color: var(--text-muted);
  display: none;
  font-size: 1rem;
}

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

/* Score Circle Light */
.score-circle {
  border-color: var(--primary-green);
  background: white;
  box-shadow: var(--card-shadow);
}

/* Price Table Light */
.price-table {
  background: white;
  color: var(--text-main);
  border-radius: var(--radius-card);
  /* Standardized */
  overflow: hidden;
}

.price-table th {
  background: var(--accent-sage);
  color: var(--text-main);
  /* Was primary-green, changed for legibility */
  border-color: var(--glass-border);
  font-weight: 700;
  padding: 24px;
}

.price-table td {
  border-color: var(--glass-border);
  color: var(--text-body);
  padding: 24px;
}

/* Bento to Flex conversion for cleaner look */
.bento-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bento-item {
  background: white;
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  border-radius: var(--radius-card);
  /* Standardized */
  padding: 40px;
}

/* Product Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.catalog-card {
  background: white;
  border-radius: var(--radius-card);
  /* Standardized */
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  position: relative;
}

.catalog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(26, 77, 51, 0.1);
}

.verified-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.catalog-image {
  height: 240px;
  overflow: hidden;
}

.catalog-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.catalog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-sage);
  color: var(--primary-green);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.catalog-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-top: auto;
  padding-top: 20px;
}

/* Mobile Resets */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-visible {
    display: flex !important;
  }

  .hero {
    padding-top: 120px;
    flex-direction: column;
    text-align: center;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero h1 {
    font-size: 2.8rem !important;
  }

  .lifestyle-dark h2 {
    font-size: 2.5rem !important;
  }
}


/* Deep Dive Article Styling (Dark Mode Support) */
.bg-midnight {
  background-color: var(--midnight);
  color: var(--text-on-dark);
}

.article-hero {
  padding: 160px 20px 80px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.article-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(220, 38, 38, 0.2);
  color: #FCA5A5;
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.article-title-lg {
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 24px 0;
  font-weight: 700;
  color: white;
}

.article-subtitle {
  font-size: 1.25rem;
  color: #94A3B8;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Stat Grid for Dark Articles */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
}

.stat-desc {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .article-title-lg {
    font-size: 2.5rem;
  }
}

/* Highlight Box (Medical Note) */
.highlight-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
}

.highlight-title {
  color: #10B981;
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* Red Gradient CTA Block */
.cta-block {
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

.cta-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: white;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Dark Article List Items */
.list-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.list-card.danger {
  border-left: 4px solid #DC2626;
}

.list-card.warning {
  border-left: 4px solid #F59E0B;
}

.list-card.neutral {
  border-left: 4px solid #64748B;
}

.text-white {
  color: white !important;
}

article.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 5% 100px;
}

.article-header {
  text-align: center;
  margin-bottom: 60px;
}

.article-header h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  color: var(--primary-green);
}

.article-header .subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.article-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-body);
}

.article-body h2 {
  font-size: 2rem;
  color: var(--primary-green);
  margin-top: 60px;
  margin-bottom: 24px;
}

.article-body h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body ul {
  margin-bottom: 32px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 12px;
}

.cta-box {
  background: var(--accent-sage);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: var(--radius-card);
  /* Standardized */
  text-align: center;
  margin: 60px 0;
}

.citation-box {
  background: var(--bg-white);
  border-left: 4px solid var(--primary-green);
  padding: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 40px 0;
  font-style: italic;
}

/* Desktop Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-cream: #0F1713;
    --paper-white: #121212;
    --bg-offwhite: #1A1F1C;
    --bg-white: #181818;
    --text-main: #F3F4F6;
    --text-body: #D1D5DB;
    --text-muted: #9CA3AF;
    --glass-border: rgba(255, 255, 255, 0.05);
  }

  body {
    background-color: var(--paper-white);
  }

  .glass-card {
    background: var(--bg-cream);
    border-color: var(--glass-border);
  }

  .trust-strip {
    background: var(--paper-white);
    border-color: var(--glass-border);
  }

  .price-table {
    background: var(--bg-cream);
  }

  .price-table th {
    background: var(--midnight);
    color: var(--text-main);
  }

  footer {
    background: var(--midnight);
  }
}

/* Diagnostic Tool Premium UI */
.quiz-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.quiz-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo span {
  display: none;
}

.option-card {
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-input);
  /* Input-like selection */
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  gap: 16px;
}

.option-card:hover,
.option-card.selected {
  border-color: var(--primary-green);
  background: var(--accent-sage);
}

.organic-shape {
  border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  overflow: hidden;
  transition: border-radius 0.5s ease;
}

.organic-shape:hover {
  border-radius: 50%;
}

/* Strategic Portfolio 5-Column Grid */
.strategic-5-col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 40px auto;
  align-items: center;
  /* Center vertically so pop-out works */
}

/* Scenario Card Base */
.scenario-card {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
}

.scenario-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Popular Card Pop-out */
.scenario-card.popular-card {
  transform: scale(1.08);
  /* Make it bigger */
  box-shadow: 0 30px 60px rgba(28, 74, 48, 0.15);
  border: 2px solid var(--primary-green);
  z-index: 10;
}

.scenario-card.popular-card:hover {
  transform: scale(1.1);
  box-shadow: 0 40px 80px rgba(28, 74, 48, 0.2);
}

.most-popular-ribbon {
  background: var(--primary-green);
  color: white;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px;
  letter-spacing: 0.05em;
}

/* Badges */
.scenario-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.badge-speed {
  background: rgba(229, 231, 235, 0.9);
  color: var(--text-main);
}

.badge-window {
  background: rgba(254, 243, 199, 0.9);
  color: #B45309;
}

.badge-couple {
  background: rgba(236, 253, 245, 0.9);
  color: var(--primary-green);
}

.badge-comprehensive {
  background: rgba(219, 234, 254, 0.9);
  color: #1E40AF;
}

.badge-privacy {
  background: rgba(17, 24, 39, 0.9);
  color: #F3F4F6;
}

/* Image Area */
.scenario-card .catalog-image {
  height: 200px;
  /* Taller lifestyle photos */
  position: relative;
}

.scenario-card .catalog-image img {
  filter: saturate(0.95);
  /* Slight desaturation for premium feel */
  transition: filter 0.3s;
}

.scenario-card:hover .catalog-image img {
  filter: saturate(1.1);
}

/* Content Area */
.scenario-card .catalog-content {
  padding: 24px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.scenario-icon {
  margin: 0 auto 12px;
  color: var(--primary-green);
  width: 40px;
  height: 40px;
  background: var(--accent-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.85rem;
  color: #5E239D;
  /* Forced Deep Violet for visibility */
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 42px;
  /* Alignment fix */
}

/* Specs List */
.card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.8rem;
  color: #1C4A30;
  /* Dark Text */
  background: var(--bg-cream);
  border-radius: 12px;
  padding: 12px;
}

.card-specs li {
  margin-bottom: 4px;
}

.card-specs li:last-child {
  margin-bottom: 0;
}

.card-btn {
  margin-top: auto;
  width: 100%;
  padding: 12px;
  font-size: 0.9rem;
}

/* Quiz Prompt */
.quiz-prompt:hover {
  background: rgba(28, 74, 48, 0.12) !important;
  transform: translateY(-2px);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .strategic-5-col {
    grid-template-columns: repeat(3, 1fr);
  }

  .scenario-card.popular-card {
    transform: none;
    border-width: 1px;
    grid-column: span 1;
    /* Reset */
  }
}

@media (max-width: 850px) {
  .strategic-5-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .strategic-5-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .scenario-card {
    height: auto;
  }

  .card-desc {
    min-height: auto;
  }

  /* Booking Wizard Mobile Tweaks */
  .wizard-container {
    border-radius: 24px;
    /* Slightly tighter on mobile */
    margin: 0 -5%;
    /* Edge-to-edge feel on very small screens? No, keep margins but reduce */
    width: 100%;
  }

  .wizard-header {
    padding: 24px;
  }

  .wizard-body {
    padding: 24px;
  }
}

/* Booking Wizard (Strict Design System) */
.wizard-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-card);
  /* 32px */
  box-shadow: var(--hd-shadow);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.wizard-header {
  background: var(--midnight);
  padding: 40px;
  text-align: center;
  color: white;
}

.wizard-body {
  padding: 40px;
}

.wizard-select {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-input);
  /* 16px */
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 24px;
}

.wizard-select:focus,
.wizard-input:focus {
  border-color: var(--primary-green);
  outline: none;
  box-shadow: 0 0 0 4px rgba(28, 74, 48, 0.1);
}

.wizard-input {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-input);
  /* 16px */
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 24px;
}

.contact-option-label {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  /* Slight deviation for internal radio UI, or use radius-input */
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.contact-option-label:hover {
  background: var(--bg-cream);
  border-color: var(--primary-green);
}

/* ============================================
   EVERLYWELL-INSPIRED COMPONENTS (Phase 1)
   ============================================ */

/* Promo Banner (Top of Page) */
/* Announcement Bar - HIDDEN */
.announcement-bar {
  display: none !important;
}

/* Navbar - Transparent Overlay */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: none;
  border-bottom: none;
}

.nav-links a {
  text-decoration: none;
  color: #FFFFFF;
  /* White text for Teal background */
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.navbar .btn-primary {
  background: white;
  color: var(--deep-violet);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-right: 16px;
  color: inherit;
  /* Inherit from nav background context */
}

.lang-switcher a {
  text-decoration: none;
  color: inherit;
  opacity: 0.6;
  transition: all 0.2s ease;
  padding: 2px 0;
}

.lang-switcher a:hover {
  opacity: 1;
}

.lang-switcher a.active {
  opacity: 1;
  border-bottom: 2px solid currentColor;
}

.lang-switcher .divider {
  opacity: 0.3;
  font-weight: 400;
}

.promo-banner {
  background: var(--evergreen);
  color: white;
  text-align: center;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
}

.promo-banner .promo-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-banner .countdown {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
}

.promo-banner .close-btn {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.promo-banner .close-btn:hover {
  opacity: 1;
}

/* Product Grid (Everlywell 4-Column) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card (Everlywell Style) */
.product-card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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



.product-card-image {
  background: var(--cream);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.product-card-image img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
}

.product-card-content {
  padding: var(--card-padding);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.product-card-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-card-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--evergreen);
}

.product-card .btn-primary {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Testimonial Card (Everlywell Style) */
.testimonial-card {
  background: white;
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  border: 1px solid var(--glass-border);
  text-align: center;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--mint);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.875rem;
}

.testimonial-badge {
  font-size: 0.75rem;
  color: var(--success-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Press Logos Strip */
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 48px 24px;
  background: var(--cream);
  flex-wrap: wrap;
}

.press-logos img {
  height: 32px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}

.press-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Section Headers (Pop Clinical Style) */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  color: var(--deep-violet);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: #1A1A1A;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Spacing (Everlywell) */
.section-everlywell {
  padding: var(--section-padding) 24px;
}

@media (max-width: 768px) {
  .section-everlywell {
    padding: var(--section-padding-mobile) 16px;
  }

  .section-header h2 {
    font-size: 1.875rem;
  }
}

/* Category Tabs (Everlywell Style) */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--deep-violet);
  background: white;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-violet);
  cursor: pointer;
  transition: all 0.25s ease;
}

.category-tab:hover {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
  background: rgba(241, 53, 157, 0.05);
}

.category-tab.active {
  background: var(--deep-violet);
  color: white;
  border-color: var(--deep-violet);
}

/* Flagship Banner (Full-Width Premium Section) */
.flagship-banner {
  background: var(--evergreen);
  color: white;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.flagship-banner .flagship-image img {
  width: 100%;
  border-radius: var(--radius-card);
}

.flagship-banner .flagship-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.flagship-banner .flagship-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.flagship-banner .btn-secondary {
  background: white;
  color: var(--evergreen);
  border-color: white;
}

@media (max-width: 768px) {
  .flagship-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px;
  }

  .flagship-banner .flagship-content h2 {
    font-size: 1.875rem;
  }
}

/* Everlywell-Style Product Card Redesign */

.everly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}

.everly-card {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  /* Very subtle border */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.everly-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.everly-image-container {
  background: #F8F9FA;
  /* Light  background behind image if transparent, or just as a placeholder */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  /* Fixed height for consistency */
}

.everly-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Add a subtle drop shadow to the product box itself if it's a cutout */
  /* filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1)); */
}

.everly-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.everly-title {
  font-family: var(--font-body);
  /* Using Jakarta Sans for a clean look, or Heading font if preferred */
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.4;
}

.everly-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
  /* Pushes footer down */
}

.everly-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  /* border-top: 1px solid rgba(0,0,0,0.05); Optional separation */
}

.everly-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.everly-btn {
  background-color: #2D6A4F;
  /* Deep Green like Everlywell */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 100px;
  /* Pill shape */
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
}

.everly-btn:hover {
  background-color: #1B4332;
}

/* Badge for "Popular" or specific tags */
.everly-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  /* Everlywell puts badges top left sometimes, or use right */
  background: #E8F5E9;
  color: #2D6A4F;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Adjustments for dark mode or specific themes can be added here */

/* ── Cart Icon & Slide-out Panel ────────────────────────────────────── */
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.cart-icon-btn svg {
  width: 24px;
  height: 24px;
  stroke: #FFFFFF;
  transition: stroke 0.2s;
}

#main-nav.scrolled .cart-icon-btn svg {
  stroke: var(--deep-violet);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  background: var(--hot-pink);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.cart-badge.visible {
  display: flex;
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Cart Panel (Slide-out Drawer) */
.cart-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: white;
  z-index: 9999;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-panel.open {
  right: 0;
}

.cart-panel-header {
  padding: 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-panel-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1A1638;
  text-transform: none;
  margin: 0;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  padding: 4px;
}

.cart-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  color: #999;
  padding: 40px 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A1638;
  margin: 0 0 4px;
}

.cart-item-info .cart-item-type {
  font-size: 0.8rem;
  color: #999;
}

.cart-item-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--deep-violet);
}

.cart-remove-btn {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
}

.cart-remove-btn:hover {
  color: var(--hot-pink);
}

.cart-concierge-toggle {
  background: #f8f0ff;
  padding: 16px;
  border-radius: 12px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-concierge-toggle label {
  font-weight: 600;
  color: #1A1638;
  font-size: 0.9rem;
}

.cart-concierge-toggle .price {
  color: var(--deep-violet);
  font-weight: 700;
  font-size: 0.85rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: #ddd;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-switch.active {
  background: var(--deep-violet);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch.active::after {
  transform: translateX(22px);
}

.cart-panel-footer {
  padding: 24px;
  border-top: 1px solid #eee;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.cart-subtotal .label {
  color: #666;
}

.cart-subtotal .value {
  font-weight: 800;
  color: #1A1638;
  font-size: 1.3rem;
}

.cart-checkout-btn {
  width: 100%;
  background: var(--hot-pink);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-checkout-btn:hover {
  background: #D92E89;
  transform: translateY(-1px);
}

.cart-checkout-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Cart Panel Responsive */
@media (max-width: 768px) {
  .cart-panel {
    width: 100%;
    max-width: 100%;
    right: -100%;
  }
}

/* Global Navigation & Footer (Extracted from index.html) */

/* Navbar */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 2%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Footer */
.site-footer {
  padding: 100px 5% 60px;
  background: var(--evergreen);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 80px;
}

.footer-logo {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 32px;
  opacity: 1;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social-icon:hover {
  transform: translateY(-2px);
}

.footer-heading {
  color: #FFF;
  margin-bottom: 24px;
  font-weight: 600;
  font-family: var(--font-headings);
}

.footer-link {
  color: inherit;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #FFF;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.8rem;
}

/* 
   ==========================================================================
   SEMANTIC FOOTER STYLES (Modernized)
   Replaces Tailwind utility classes for robust implementation without build step.
   ==========================================================================
*/

.site-footer {
  background-color: #0F172A;
  /* slate-900 */
  color: #FFFFFF;
  margin-top: 3rem;
  /* mt-12 */
  padding: 4rem 0;
  /* py-16 */
  border-top-left-radius: 3rem;
  /* rounded-t-[3rem] */
  border-top-right-radius: 3rem;
  font-family: var(--font-body);
}

.footer-container {
  max-width: 1280px;
  /* max-w-7xl */
  margin: 0 auto;
  padding: 0 1.5rem;
  /* px-6 */
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  /* gap-12 */
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    /* md:grid-cols-4 */
  }

  .footer-brand {
    grid-column: span 2;
    /* md:col-span-2 */
  }
}

.footer-logo {
  height: 2rem;
  /* h-8 */
  margin-bottom: 1.5rem;
  /* mb-6 */
  filter: brightness(0) invert(1);
  /* brightness-0 invert */
  width: auto;
  display: block;
}

.footer-text {
  color: #94A3B8;
  /* slate-400 */
  font-size: 0.875rem;
  /* text-sm */
  line-height: 1.625;
  /* leading-relaxed */
  max-width: 24rem;
  /* max-w-sm */
}

.footer-heading {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 1.5rem;
  /* mb-6 */
  font-family: var(--font-display);
  font-size: 1rem;
  display: block;
  /* Ensure block level */
}

.footer-links {
  list-style: none;
  /* Remove bullets */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* space-y-4 */
}

.footer-link {
  color: #94A3B8;
  /* slate-400 */
  text-decoration: none;
  font-size: 0.875rem;
  /* text-sm */
  transition: color 0.2s;
  display: block;
}

.footer-link:hover {
  color: #2DD4BF;
  /* teal-400 */
}

.footer-bottom-modern {
  max-width: 1280px;
  margin: 3rem auto 0;
  /* mt-12 */
  padding: 2rem 1.5rem 0;
  /* pt-8 px-6 */
  border-top: 1px solid #1E293B;
  /* border-slate-800 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  /* text-xs */
  color: #64748B;
  /* slate-500 */
}

@media (min-width: 768px) {
  .footer-bottom-modern {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  /* gap-6 */
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-links {
    margin-top: 0;
  }
}

.footer-bottom-link {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-link:hover {
  color: #FFFFFF;
}