/* Serena Health — CSS Bundle */
/* Auto-generated — do not edit directly. Edit individual source CSS files. */

/* ========== variables.css ========== */
/* ==========================================================================
   SERENA HEALTH - CSS DESIGN TOKENS
   Generated at Eleventy build time from storefront-src/_data/tenant.js
   DO NOT EDIT public/storefront/css/variables.css directly.
   Source: storefront-src/css/variables.njk
   ========================================================================== */

:root {
  /* ==========================================================================
     1. COLOR SYSTEM — Brand colors from tenant configuration
     ========================================================================== */

  /* Primary Gradient Colors */
  --color-primary-pink: #E91E8C;
  --color-primary-purple: #7B3F9D;
  --color-primary-blue: #0047BB;

  /* Primary Gradient */
  --gradient-primary: linear-gradient(135deg, #E91E8C 0%, #7B3F9D 50%, #0047BB 100%);
  --gradient-primary-horizontal: linear-gradient(90deg, #E91E8C 0%, #7B3F9D 50%, #0047BB 100%);
  --gradient-primary-vertical: linear-gradient(180deg, #E91E8C 0%, #7B3F9D 50%, #0047BB 100%);

  /* Accent Colors */
  --color-accent-pink: #E91E8C;
  --color-accent-purple: #7B3F9D;
  --color-accent-blue: #0047BB;

  /* Accent Colors - Light Variants */
  --color-accent-pink-light: #F9E1EF;
  --color-accent-purple-light: #EDE6F2;
  --color-accent-blue-light: #E6EEF8;

  /* Accent Colors - Dark Variants */
  --color-accent-pink-dark: #B8177A;
  --color-accent-purple-dark: #5E2F78;
  --color-accent-blue-dark: #003691;

  /* Neutral Colors */
  --color-cream: #fefdfb;
  --color-white: #ffffff;
  --color-gray-50: #fafafa;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #eeeeee;
  --color-gray-300: #e0e0e0;
  --color-gray-400: #bdbdbd;
  --color-gray-500: #9e9e9e;
  --color-gray-600: #757575;
  --color-gray-700: #616161;
  --color-gray-800: #424242;
  --color-gray-900: #212121;
  --color-black: #000000;

  /* Semantic Colors - Success */
  --color-success: #22c55e;
  --color-success-light: #dcfce7;
  --color-success-dark: #15803d;

  /* Semantic Colors - Warning */
  --color-warning: #f97316;
  --color-warning-light: #ffedd5;
  --color-warning-dark: #c2410c;

  /* Semantic Colors - Error */
  --color-error: #ef4444;
  --color-error-light: #fee2e2;
  --color-error-dark: #b91c1c;

  /* Semantic Colors - Info */
  --color-info: #3b82f6;
  --color-info-light: #dbeafe;
  --color-info-dark: #1d4ed8;

  /* Background Colors */
  --color-bg-primary: var(--color-cream);
  --color-bg-secondary: var(--color-white);
  --color-bg-tertiary: var(--color-gray-50);
  --color-background: var(--color-cream);          /* Alias: used by 12+ selectors */

  /* Text Colors */
  --color-text-primary: var(--color-gray-900);
  --color-text-secondary: var(--color-gray-600);
  --color-text-tertiary: var(--color-gray-500);
  --color-text-inverse: var(--color-white);

  /* Border Colors */
  --color-border-light: var(--color-gray-200);
  --color-border-default: var(--color-gray-300);
  --color-border-dark: var(--color-gray-400);

  /* ==========================================================================
     2. TYPOGRAPHY SYSTEM
     ========================================================================== */

  /* Font Families */
  --font-family-heading: 'Playfair Display', Georgia, serif;
  --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-label: 'Montserrat', 'Inter', sans-serif;

  /* Font Sizes */
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-md: 1.125rem;     /* 18px */
  --font-size-lg: 1.25rem;      /* 20px */
  --font-size-xl: 1.5rem;       /* 24px */
  --font-size-2xl: 1.875rem;    /* 30px */
  --font-size-3xl: 2.25rem;     /* 36px */
  --font-size-4xl: 3rem;        /* 48px */

  /* Line Heights */
  --line-height-tight: 1.2;     /* Headings */
  --line-height-normal: 1.5;    /* Default */
  --line-height-relaxed: 1.6;   /* Body text */
  --line-height-loose: 1.8;     /* Long-form content */

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-regular: var(--font-weight-normal); /* Alias: used by price period text */

  /* Letter Spacing */
  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;
  --letter-spacing-wider: 0.05em;
  --letter-spacing-widest: 0.1em;

  /* ==========================================================================
     3. SPACING SYSTEM (8px base unit)
     ========================================================================== */

  --spacing-0: 0;
  --spacing-px: 1px;
  --spacing-0-5: 0.25rem;       /* 4px */
  --spacing-1: 0.5rem;          /* 8px */
  --spacing-1-5: 0.75rem;       /* 12px */
  --spacing-2: 1rem;            /* 16px */
  --spacing-2-5: 1.25rem;       /* 20px */
  --spacing-3: 1.5rem;          /* 24px */
  --spacing-4: 2rem;            /* 32px */
  --spacing-5: 3rem;            /* 48px */
  --spacing-6: 4rem;            /* 64px */
  --spacing-7: 5rem;            /* 80px */
  --spacing-8: 6rem;            /* 96px */
  --spacing-10: 8rem;           /* 128px */
  --spacing-12: 10rem;          /* 160px */

  /* ==========================================================================
     4. LAYOUT SYSTEM
     ========================================================================== */

  /* Container Max Widths */
  --container-max-width: 1200px;
  --container-readable: 800px;
  --container-policies: 680px;
  --container-narrow: 540px;

  /* Container Padding */
  --container-padding: var(--spacing-2);
  --container-padding-lg: var(--spacing-4);

  /* Section Padding */
  --section-padding-y: var(--spacing-6);          /* 64px - desktop */
  --section-padding-y-mobile: var(--spacing-5);   /* 48px - mobile */
  --section-padding-y-large: var(--spacing-8);    /* 96px - large sections */

  /* Breakpoints (for reference - use in media queries) */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;

  /* ==========================================================================
     5. COMPONENT TOKENS
     ========================================================================== */

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-default: 8px;        /* Small */
  --radius-md: 12px;            /* Medium */
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;          /* Pill */
  --radius-full: 9999px;        /* Circle */

  /* Box Shadows */
  --shadow-none: none;
  --shadow-subtle: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-small: var(--shadow-sm);                 /* Alias: used by step numbers, hover states */
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-elevated: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Focus Ring */
  --shadow-focus: 0 0 0 3px rgba(123, 63, 157, 0.3);
  --shadow-focus-pink: 0 0 0 3px rgba(233, 30, 140, 0.3);
  --shadow-focus-blue: 0 0 0 3px rgba(0, 71, 187, 0.3);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-default: 0.2s ease;
  --transition-standard: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Transition Properties */
  --transition-colors: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  --transition-transform: transform 0.3s ease;
  --transition-opacity: opacity 0.3s ease;
  --transition-all: all 0.3s ease;

  /* Z-Index Scale */
  --z-index-dropdown: 100;
  --z-index-sticky: 200;
  --z-index-fixed: 300;
  --z-index-modal-backdrop: 400;
  --z-index-modal: 500;
  --z-index-popover: 600;
  --z-index-tooltip: 700;

  /* ==========================================================================
     6. COMPONENT-SPECIFIC TOKENS
     ========================================================================== */

  /* Buttons */
  --button-padding-x: var(--spacing-3);
  --button-padding-y: var(--spacing-1-5);
  --button-padding-x-sm: var(--spacing-2);
  --button-padding-y-sm: var(--spacing-1);
  --button-padding-x-lg: var(--spacing-4);
  --button-padding-y-lg: var(--spacing-2);
  --button-radius: var(--radius-md);
  --button-font-weight: var(--font-weight-semibold);

  /* Cards */
  --card-padding: var(--spacing-3);
  --card-padding-lg: var(--spacing-4);
  --card-radius: var(--radius-md);
  --card-shadow: var(--shadow-medium);
  --card-shadow-hover: var(--shadow-elevated);

  /* Inputs */
  --input-padding-x: var(--spacing-2);
  --input-padding-y: var(--spacing-1-5);
  --input-radius: var(--radius-default);
  --input-border-width: 1px;
  --input-border-color: var(--color-border-default);
  --input-focus-border-color: var(--color-accent-purple);

  /* Navigation */
  --nav-height: 80px;
  --nav-height-mobile: 64px;

  /* Footer */
  --footer-padding-y: var(--spacing-6);
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

/* Tablet and below */
@media (max-width: 1024px) {
  :root {
    --section-padding-y: var(--spacing-5);
    --nav-height: 72px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding-y: var(--spacing-4);
    --section-padding-y-large: var(--spacing-5);
    --nav-height: var(--nav-height-mobile);
    --container-padding: var(--spacing-2);

    /* Slightly smaller typography on mobile */
    --font-size-4xl: 2.5rem;
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.5rem;
  }
}


/* ========== typography.css ========== */
/* ==========================================================================
   SERENA HEALTH - TYPOGRAPHY SYSTEM
   ========================================================================== */

/* ==========================================================================
   1. FONT IMPORTS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Montserrat:wght@600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* ==========================================================================
   2. BASE TYPOGRAPHY
   ========================================================================== */

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

body {
  font-family: var(--font-family-body);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ==========================================================================
   3. HEADING SCALES
   ========================================================================== */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: var(--spacing-2);
}

h1, .h1 {
  font-size: 3rem;
  letter-spacing: var(--letter-spacing-tight);
}

h2, .h2 {
  font-size: 2.25rem;
  letter-spacing: var(--letter-spacing-tight);
}

h3, .h3 {
  font-size: var(--font-size-2xl);
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
}

/* Paragraph Styles */
p {
  margin-top: 0;
  margin-bottom: var(--spacing-2);
}

/* Lead Paragraph */
.lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  color: var(--color-text-secondary);
}

/* ==========================================================================
   4. LABELS & BADGES
   ========================================================================== */

.label,
.badge-text {
  font-family: var(--font-family-label);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  line-height: 1;
}

.label-lg {
  font-size: var(--font-size-sm);
}

/* Category/Tag Labels */
.category-label {
  font-family: var(--font-family-label);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  color: var(--color-accent-purple);
}

/* ==========================================================================
   5. TEXT SIZE UTILITIES
   ========================================================================== */

.text-4xl { font-size: var(--font-size-4xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-xl { font-size: var(--font-size-xl); }
.text-lg { font-size: var(--font-size-lg); }
.text-large { font-size: var(--font-size-lg); }
.text-md { font-size: var(--font-size-md); }
.text-base { font-size: var(--font-size-base); }
.text-sm { font-size: var(--font-size-sm); }
.text-small { font-size: var(--font-size-sm); }
.text-xs { font-size: var(--font-size-xs); }

/* ==========================================================================
   6. TEXT WEIGHT UTILITIES
   ========================================================================== */

.text-normal { font-weight: var(--font-weight-normal); }
.text-medium { font-weight: var(--font-weight-medium); }
.text-semibold { font-weight: var(--font-weight-semibold); }
.text-bold { font-weight: var(--font-weight-bold); }

/* ==========================================================================
   7. TEXT ALIGNMENT UTILITIES
   ========================================================================== */

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* ==========================================================================
   8. TEXT COLOR UTILITIES
   ========================================================================== */

.text-primary { color: var(--color-text-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-tertiary { color: var(--color-text-tertiary); }
.text-inverse { color: var(--color-text-inverse); }
.text-muted { color: var(--color-gray-500); }

.text-accent-pink { color: var(--color-accent-pink); }
.text-accent-purple { color: var(--color-accent-purple); }
.text-accent-blue { color: var(--color-accent-blue); }

.text-success { color: var(--color-success); }
.text-warning { color: var(--color-warning); }
.text-error { color: var(--color-error); }

/* ==========================================================================
   9. GRADIENT TEXT
   ========================================================================== */

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-gradient-pink-purple {
  background: linear-gradient(135deg, var(--color-accent-pink) 0%, var(--color-accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-gradient-purple-blue {
  background: linear-gradient(135deg, var(--color-accent-purple) 0%, var(--color-accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   10. LINE HEIGHT UTILITIES
   ========================================================================== */

.leading-none { line-height: 1; }
.leading-tight { line-height: var(--line-height-tight); }
.leading-normal { line-height: var(--line-height-normal); }
.leading-relaxed { line-height: var(--line-height-relaxed); }
.leading-loose { line-height: var(--line-height-loose); }

/* ==========================================================================
   11. LETTER SPACING UTILITIES
   ========================================================================== */

.tracking-tight { letter-spacing: var(--letter-spacing-tight); }
.tracking-normal { letter-spacing: var(--letter-spacing-normal); }
.tracking-wide { letter-spacing: var(--letter-spacing-wide); }
.tracking-wider { letter-spacing: var(--letter-spacing-wider); }
.tracking-widest { letter-spacing: var(--letter-spacing-widest); }

/* ==========================================================================
   12. TEXT TRANSFORM UTILITIES
   ========================================================================== */

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* ==========================================================================
   13. TEXT DECORATION UTILITIES
   ========================================================================== */

.underline { text-decoration: underline; }
.line-through { text-decoration: line-through; }
.no-underline { text-decoration: none; }

/* Link with underline animation */
.link-underline {
  position: relative;
  text-decoration: none;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-standard);
}

.link-underline:hover::after {
  width: 100%;
}

/* ==========================================================================
   14. FONT FAMILY UTILITIES
   ========================================================================== */

.font-heading { font-family: var(--font-family-heading); }
.font-body { font-family: var(--font-family-body); }
.font-label { font-family: var(--font-family-label); }

/* ==========================================================================
   15. SPECIAL TEXT STYLES
   ========================================================================== */

/* Quote/Blockquote */
blockquote,
.blockquote {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  padding-left: var(--spacing-3);
  border-left: 4px solid var(--color-accent-purple);
  margin: var(--spacing-4) 0;
}

/* Code/Monospace */
code,
.code {
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  font-size: 0.875em;
  background-color: var(--color-gray-100);
  padding: 0.2em 0.4em;
  border-radius: var(--radius-sm);
}

/* Small Text */
small,
.small {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
}

/* Strong/Bold */
strong,
.strong {
  font-weight: var(--font-weight-bold);
}

/* Emphasis */
em,
.emphasis {
  font-style: italic;
}

/* ==========================================================================
   16. LIST STYLES
   ========================================================================== */

ul, ol {
  margin-top: 0;
  margin-bottom: var(--spacing-2);
  padding-left: var(--spacing-3);
}

li {
  margin-bottom: var(--spacing-1);
}

.list-none {
  list-style: none;
  padding-left: 0;
}

.list-disc {
  list-style-type: disc;
}

.list-decimal {
  list-style-type: decimal;
}

/* ==========================================================================
   17. RESPONSIVE TYPOGRAPHY
   ========================================================================== */

/* Tablet and below */
@media (max-width: 1024px) {
  h1, .h1 {
    font-size: 2.5rem;
  }

  h2, .h2 {
    font-size: 2rem;
  }

  h3, .h3 {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
  }

  h1, .h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-1-5);
  }

  h2, .h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-1-5);
  }

  h3, .h3 {
    font-size: 1.5rem;
  }

  h4, .h4 {
    font-size: 1.25rem;
  }

  h5, .h5 {
    font-size: 1.125rem;
  }

  h6, .h6 {
    font-size: 1rem;
  }

  .lead {
    font-size: var(--font-size-md);
  }

  blockquote,
  .blockquote {
    font-size: var(--font-size-lg);
    padding-left: var(--spacing-2);
  }

  /* Responsive text size utilities for mobile */
  .md\:text-4xl { font-size: var(--font-size-3xl); }
  .md\:text-3xl { font-size: var(--font-size-2xl); }
  .md\:text-2xl { font-size: var(--font-size-xl); }
}

/* Small mobile - ensure minimum readable size */
@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  h1, .h1 {
    font-size: 1.75rem;
  }

  h2, .h2 {
    font-size: 1.5rem;
  }

  h3, .h3 {
    font-size: 1.25rem;
  }

  /* Prevent text from being too small on small screens */
  p, li, span {
    min-font-size: 16px;
  }
}

/* ==========================================================================
   18. ACCESSIBILITY
   ========================================================================== */

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .link-underline::after {
    transition: none;
  }
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
  body {
    color: var(--color-black);
  }

  .text-secondary,
  .text-tertiary,
  .text-muted {
    color: var(--color-gray-800);
  }
}


/* ========== storefront-design-system.css ========== */
/* ==========================================================================
   SERENA HEALTH - STOREFRONT DESIGN SYSTEM
   Component-specific styles for the medical pharmacy storefront
   ========================================================================== */

/* ==========================================================================
   PROVIDER CARD COMPONENT
   Displays medical team credentials (e.g., Jenna Dykstra, PA-C)
   ========================================================================== */

.provider-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--spacing-4);
  background-color: var(--color-cream);
  border-left: 4px solid var(--color-accent-purple);
  border-radius: var(--radius-md);
  padding: var(--spacing-4);
  transition: var(--transition-standard);
}

.provider-card:hover {
  box-shadow: var(--shadow-medium);
}

/* Provider Photo */
.provider-card__photo {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background-color: var(--color-gray-100);
}

.provider-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Provider Content Container */
.provider-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

/* Provider Name */
.provider-card__name {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent-purple);
  line-height: var(--line-height-tight);
  margin: 0;
}

/* Provider Title/Role */
.provider-card__title {
  font-family: var(--font-family-label);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  margin: 0;
  margin-top: var(--spacing-0-5);
}

/* Provider Credentials List */
.provider-card__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-1);
  margin-top: var(--spacing-1-5);
  padding: 0;
  list-style: none;
}

.provider-card__credentials li {
  font-family: var(--font-family-body);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  padding: var(--spacing-0-5) var(--spacing-1);
  background-color: var(--color-gray-100);
  border-radius: var(--radius-sm);
}

/* Provider Bio */
.provider-card__bio {
  font-family: var(--font-family-body);
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  margin-top: var(--spacing-2);
}

/* ==========================================================================
   PROVIDER CARD - MOBILE STYLES
   ========================================================================== */

@media (max-width: 768px) {
  .provider-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-3);
  }

  .provider-card__photo {
    width: 120px;
    height: 120px;
  }

  .provider-card__content {
    align-items: center;
  }

  .provider-card__credentials {
    justify-content: center;
  }

  .provider-card__name {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   PROVIDER CARD VARIANTS
   ========================================================================== */

/* Compact variant */
.provider-card--compact {
  padding: var(--spacing-3);
  gap: var(--spacing-3);
}

.provider-card--compact .provider-card__photo {
  width: 100px;
  height: 100px;
}

.provider-card--compact .provider-card__name {
  font-size: 1.25rem;
}

.provider-card--compact .provider-card__bio {
  font-size: 0.875rem;
}

/* Featured variant */
.provider-card--featured {
  border-left-width: 6px;
  padding: var(--spacing-5);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
  box-shadow: var(--shadow-subtle);
}

.provider-card--featured .provider-card__photo {
  width: 180px;
  height: 180px;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-medium);
}

/* ==========================================================================
   PRICING CARD COMPONENT
   For subscription vs one-time purchase options
   ========================================================================== */

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--color-white);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  padding: var(--spacing-4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--color-accent-purple);
  box-shadow: var(--shadow-medium);
}

/* Plan Type Label */
.pricing-card__label {
  font-family: var(--font-family-label);
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  color: var(--color-accent-purple);
  margin: 0;
  margin-bottom: var(--spacing-2);
}

/* Price Display */
.pricing-card__price {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: 1;
  margin: 0;
}

.pricing-card__price-currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 2px;
}

.pricing-card__price-period {
  font-family: var(--font-family-body);
  font-size: 0.875rem;
  font-weight: var(--font-weight-normal);
  color: var(--color-text-tertiary);
}

/* Billing Frequency */
.pricing-card__frequency {
  font-family: var(--font-family-body);
  font-size: 0.875rem;
  color: var(--color-text-tertiary);
  margin: 0;
  margin-top: var(--spacing-1);
}

/* Features List */
.pricing-card__features {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: var(--spacing-3) 0;
  text-align: left;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-1);
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  padding: var(--spacing-1) 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

/* Checkmark icon for features */
.pricing-card__features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B3F9D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* CTA Button Container */
.pricing-card__cta {
  width: 100%;
  margin-top: auto;
  padding-top: var(--spacing-2);
}

/* ==========================================================================
   PRICING CARD - FEATURED VARIANT
   "Most Popular" highlighted option
   ========================================================================== */

.pricing-card--featured {
  border: 2px solid transparent;
  background: 
    linear-gradient(var(--color-white), var(--color-white)) padding-box,
    var(--gradient-primary) border-box;
  box-shadow: var(--shadow-medium);
  transform: scale(1.02);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(233, 30, 140, 0.03) 0%, 
    rgba(123, 63, 157, 0.03) 50%, 
    rgba(0, 71, 187, 0.03) 100%
  );
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: 0;
}

.pricing-card--featured > * {
  position: relative;
  z-index: 1;
}

.pricing-card--featured:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-elevated);
}

/* "Most Popular" Badge */
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-family-label);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  color: var(--color-white);
  background: var(--gradient-primary);
  padding: var(--spacing-0-5) var(--spacing-2);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ==========================================================================
   PRICING CARD - MOBILE STYLES
   ========================================================================== */

@media (max-width: 768px) {
  .pricing-card {
    padding: var(--spacing-3);
  }

  .pricing-card__price {
    font-size: 2rem;
  }

  .pricing-card--featured {
    transform: scale(1);
  }

  .pricing-card--featured:hover {
    transform: scale(1);
  }
}

/* ==========================================================================
   PRICING CARD VARIANTS
   ========================================================================== */

/* Compact variant for inline display */
.pricing-card--compact {
  padding: var(--spacing-3);
}

.pricing-card--compact .pricing-card__price {
  font-size: 2rem;
}

.pricing-card--compact .pricing-card__features li {
  font-size: 0.875rem;
  padding: var(--spacing-0-5) 0;
}

/* Horizontal variant */
.pricing-card--horizontal {
  flex-direction: row;
  text-align: left;
  gap: var(--spacing-4);
}

.pricing-card--horizontal .pricing-card__features {
  margin: 0;
}

@media (max-width: 768px) {
  .pricing-card--horizontal {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   COMPARISON TABLE COMPONENT
   For product comparisons (e.g., Injectable vs Sublingual)
   ========================================================================== */

/* Table Container - enables horizontal scroll on mobile */
.comparison-table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Base Table Styles */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  background-color: var(--color-white);
  min-width: 600px;
}

/* Header Row */
.comparison-table thead {
  background: linear-gradient(135deg, 
    rgba(233, 30, 140, 0.08) 0%, 
    rgba(123, 63, 157, 0.08) 50%, 
    rgba(0, 71, 187, 0.08) 100%
  );
}

.comparison-table th {
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  text-align: center;
  padding: 1.5rem 1rem;
  border-bottom: 2px solid var(--color-gray-200);
}

.comparison-table th:first-child {
  text-align: left;
}

/* Header with gradient text */
.comparison-table th.th--gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Body Rows */
.comparison-table tbody tr {
  background-color: var(--color-white);
  transition: background-color var(--transition-fast);
}

.comparison-table tbody tr:nth-child(even) {
  background-color: var(--color-gray-50);
}

.comparison-table tbody tr:hover {
  background-color: var(--color-accent-purple-light);
}

/* Body Cells */
.comparison-table td {
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  text-align: center;
  padding: 1rem;
  border-bottom: 1px solid var(--color-gray-200);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* First Column - Feature Names */
.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  min-width: 180px;
}

/* Checkmark and X icons for comparison */
.comparison-table .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-success-light);
  border-radius: var(--radius-full);
}

.comparison-table .check::before {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.comparison-table .cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-gray-100);
  border-radius: var(--radius-full);
}

.comparison-table .cross::before {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239e9e9e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Highlight Column */
.comparison-table .col--highlight {
  background-color: rgba(123, 63, 157, 0.05);
}

.comparison-table th.col--highlight {
  background: linear-gradient(135deg, 
    rgba(233, 30, 140, 0.15) 0%, 
    rgba(123, 63, 157, 0.15) 50%, 
    rgba(0, 71, 187, 0.15) 100%
  );
}

/* ==========================================================================
   COMPARISON TABLE - MOBILE STYLES
   ========================================================================== */

@media (max-width: 768px) {
  .comparison-table {
    min-width: 500px;
  }

  .comparison-table th {
    font-size: 1rem;
    padding: 1rem 0.75rem;
  }

  .comparison-table td {
    font-size: 0.875rem;
    padding: 0.75rem;
  }

  .comparison-table td:first-child,
  .comparison-table th:first-child {
    min-width: 140px;
  }
}

/* Sticky First Column Option */
.comparison-table--sticky-first {
  position: relative;
}

.comparison-table--sticky-first th:first-child,
.comparison-table--sticky-first td:first-child {
  position: sticky;
  left: 0;
  background-color: var(--color-white);
  z-index: 1;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05);
}

.comparison-table--sticky-first tbody tr:nth-child(even) td:first-child {
  background-color: var(--color-gray-50);
}

.comparison-table--sticky-first thead th:first-child {
  background: linear-gradient(135deg, 
    rgba(233, 30, 140, 0.08) 0%, 
    rgba(123, 63, 157, 0.08) 50%, 
    rgba(0, 71, 187, 0.08) 100%
  );
  z-index: 2;
}

/* ==========================================================================
   COMPARISON TABLE VARIANTS
   ========================================================================== */

/* Compact variant */
.comparison-table--compact th {
  padding: 1rem 0.75rem;
  font-size: 1rem;
}

.comparison-table--compact td {
  padding: 0.75rem;
  font-size: 0.875rem;
}

/* Bordered variant */
.comparison-table--bordered td,
.comparison-table--bordered th {
  border: 1px solid var(--color-gray-200);
}

/* No shadow variant */
.comparison-table--flat {
  box-shadow: none;
  border: 1px solid var(--color-gray-200);
}

/* ==========================================================================
   PRODUCT CARD COMPONENT
   ========================================================================== */

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.product-card img {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.product-card:hover img {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.product-card__content {
  padding: var(--spacing-3);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-family: var(--font-family-label);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  color: var(--color-accent-purple);
  margin-bottom: var(--spacing-1);
}

.product-card__name {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-1) 0;
}

.product-card__price {
  font-family: var(--font-family-body);
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-2);
}

.product-card__price-period {
  font-size: 0.875rem;
  font-weight: var(--font-weight-normal);
  color: var(--color-text-tertiary);
}

.product-card__cta {
  margin-top: auto;
}


/* ========== styles.css ========== */
/* ==========================================================================
   SERENA HEALTH - MAIN STYLESHEET
   ========================================================================== */

/* Import Design Tokens */
@import url('variables.css');
@import url('typography.css');
@import url('storefront-design-system.css');

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  min-height: 100vh;
}

/* ==========================================================================
   TYPOGRAPHY BASE
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-2);
}

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

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-md);
}

p {
  margin-bottom: var(--spacing-2);
  color: var(--color-text-secondary);
}

a {
  color: var(--color-accent-purple);
  text-decoration: none;
  transition: var(--transition-colors);
}

a:hover {
  color: var(--color-accent-pink);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--readable {
  max-width: var(--container-readable);
}

.container--policies {
  max-width: var(--container-policies);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* Section */
.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.section--large {
  padding-top: var(--section-padding-y-large);
  padding-bottom: var(--section-padding-y-large);
}

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

.text-primary { color: var(--color-text-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-tertiary { color: var(--color-text-tertiary); }
.text-inverse { color: var(--color-text-inverse); }

.text-accent-pink { color: var(--color-accent-pink); }
.text-accent-purple { color: var(--color-accent-purple); }
.text-accent-blue { color: var(--color-accent-blue); }

/* Gradient Text */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Font Utilities */
.font-heading { font-family: var(--font-family-heading); }
.font-body { font-family: var(--font-family-body); }
.font-label { font-family: var(--font-family-label); }

.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

/* Background Utilities */
.bg-primary { background-color: var(--color-bg-primary); }
.bg-secondary { background-color: var(--color-bg-secondary); }
.bg-tertiary { background-color: var(--color-bg-tertiary); }
.bg-gradient { background: var(--gradient-primary); }

/* Spacing Utilities */
.mt-1 { margin-top: var(--spacing-1); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }
.mt-5 { margin-top: var(--spacing-5); }

.mb-1 { margin-bottom: var(--spacing-1); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-5 { margin-bottom: var(--spacing-5); }

.py-1 { padding-top: var(--spacing-1); padding-bottom: var(--spacing-1); }
.py-2 { padding-top: var(--spacing-2); padding-bottom: var(--spacing-2); }
.py-3 { padding-top: var(--spacing-3); padding-bottom: var(--spacing-3); }
.py-4 { padding-top: var(--spacing-4); padding-bottom: var(--spacing-4); }
.py-5 { padding-top: var(--spacing-5); padding-bottom: var(--spacing-5); }

.px-1 { padding-left: var(--spacing-1); padding-right: var(--spacing-1); }
.px-2 { padding-left: var(--spacing-2); padding-right: var(--spacing-2); }
.px-3 { padding-left: var(--spacing-3); padding-right: var(--spacing-3); }
.px-4 { padding-left: var(--spacing-4); padding-right: var(--spacing-4); }
.px-5 { padding-left: var(--spacing-5); padding-right: var(--spacing-5); }

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-family-label);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(123, 63, 157, 0.3);
}

/* Primary Button - Gradient */
.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
}

.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(123, 63, 157, 0.3);
}

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

/* Secondary Button */
.btn--secondary {
  background-color: var(--color-white);
  color: var(--color-accent-purple);
  border: 2px solid var(--color-accent-purple);
}

.btn--secondary:hover {
  background-color: var(--color-accent-purple);
  color: var(--color-white);
}

/* Outline Button */
.btn--outline {
  background-color: transparent;
  color: var(--color-accent-purple);
  border: 2px solid var(--color-accent-purple);
}

.btn--outline:hover {
  background-color: var(--color-accent-purple);
  color: var(--color-white);
}

/* Ghost Button */
.btn--ghost {
  background-color: transparent;
  color: var(--color-accent-purple);
  border-color: transparent;
}

.btn--ghost:hover {
  background-color: rgba(123, 63, 157, 0.1);
}

/* Button Sizes */
.btn--large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn--full {
  width: 100%;
}

/* ==========================================================================
   TEMPORARY PLACEHOLDER STYLES
   ========================================================================== */

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-4);
}

#app h1 {
  font-family: var(--font-family-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-2);
}

#app p {
  font-family: var(--font-family-label);
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

/* ==========================================================================
   LIFESTYLE SECTION STYLES
   ========================================================================== */

.lifestyle-section {
  padding: var(--spacing-4) 0;
}

.lifestyle-visual {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lifestyle-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .lifestyle-image {
    max-height: 250px;
  }
}

/* ==========================================================================
   GRADIENT SECTION TEXT OVERRIDES
   Force white text on all gradient hero/cta sections — beats global h/p rules
   ========================================================================== */

.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section p,
.hero-section .hero-title,
.hero-section .hero-subtitle,
.cta-section h1,
.cta-section h2,
.cta-section p,
.cta-section .cta-title,
.cta-section .cta-subtitle,
.cta-section .cta-note {
  color: #ffffff !important;
}

/* ==========================================================================
   BREADCRUMB — global (category pages don't load product-page.css)
   ========================================================================== */

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  color: var(--color-text-secondary);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--color-gray-300);
}

.breadcrumb__item a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb__item a:hover {
  color: var(--color-accent-purple);
}

.breadcrumb__item--current {
  color: var(--color-text-primary);
  font-weight: 500;
}

/* ==========================================================================
   JOURNEY STEPS — global (used on category + product pages)
   ========================================================================== */

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--color-accent-pink),
    var(--color-accent-purple),
    var(--color-accent-blue)
  );
  z-index: 0;
}

.journey-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: 0.25rem;
  position: relative;
  z-index: 1;
  align-items: start;
}

.journey-step__number {
  grid-row: 1 / 3;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(123, 63, 157, 0.3);
}

.journey-step__title {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.25rem 0;
  align-self: end;
}

.journey-step__description {
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  align-self: start;
}

.journey-timeline {
  margin-top: 2rem;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-purple);
}

@media (max-width: 576px) {
  .journey-steps::before {
    left: 22px;
  }

  .journey-step {
    grid-template-columns: 44px 1fr;
    column-gap: 1rem;
  }

  .journey-step__number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1rem;
  }
}


/* ========== header.css ========== */
/* ==========================================================================
   HEADER & NAVIGATION STYLES
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 28px !important;
  width: auto !important;
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
  list-style: none;
}

.nav__link {
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--color-accent-purple);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  z-index: 1100;
  position: relative;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav__toggle.is-active .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active .nav__toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-active .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__cta { margin-left: 1rem; }

.nav__item--dropdown { position: relative; }

.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0.5rem 0;
}

.nav__link--dropdown::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.nav__link--dropdown:hover { color: var(--color-accent-purple); }

/* Dropdown — hidden by default (shared base) */
.nav__dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── DESKTOP only: hover-open dropdown ── */
@media (min-width: 993px) {
  .nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
  }

  .nav__item--dropdown:hover .nav__dropdown,
  .nav__item--dropdown:focus-within .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__link--dropdown[aria-expanded="true"]::after { transform: rotate(180deg); }

  .nav__dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.15s ease;
  }

  .nav__dropdown-link:hover {
    background-color: var(--color-gray-100);
    color: var(--color-accent-purple);
  }

  .nav__dropdown-link--category {
    font-weight: 600;
    color: var(--color-accent-purple);
    border-bottom: 1px solid var(--color-gray-200);
    margin-bottom: 0.25rem;
  }
}

/* ══════════════════════════════════════════
   MOBILE NAV — white drawer, JS-controlled
   ══════════════════════════════════════════ */
@media (max-width: 992px) {
  .nav__toggle { display: flex; }

  /* Drawer */
  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 82vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding-top: 72px;
    padding-bottom: 32px;
    background: #ffffff;
    border-left: 1px solid #e5e7eb;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 1050;
  }

  .nav__menu.is-open { transform: translateX(0); }

  /* Scrim */
  .nav__menu::before {
    content: '';
    position: fixed;
    inset: 0;
    right: min(300px, 82vw);
    background: transparent;
    transition: background 0.3s ease;
    pointer-events: none;
  }

  .nav__menu.is-open::before {
    background: rgba(0, 0, 0, 0.35);
    pointer-events: auto;
  }

  .nav__item { border-bottom: 1px solid #f3f4f6; }
  .nav__item:last-child { border-bottom: none; }

  /* Top-level links */
  .nav__link {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
    text-decoration: none;
    background: transparent;
    box-sizing: border-box;
  }

  .nav__link:hover { background: #f5f3ff; color: var(--color-primary-purple); }

  /* Dropdown trigger button */
  .nav__link--dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
  }

  .nav__link--dropdown:hover { background: #f5f3ff; color: var(--color-primary-purple); }

  .nav__item--dropdown.is-open > .nav__link--dropdown {
    background: #f5f3ff;
    color: var(--color-primary-purple);
  }

  /* Chevron */
  .nav__link--dropdown::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #9ca3af;
    flex-shrink: 0;
    margin-left: auto;
    transition: transform 0.2s ease;
  }

  .nav__item--dropdown.is-open > .nav__link--dropdown::after {
    transform: rotate(180deg);
    border-top-color: var(--color-primary-purple);
  }

  /* Sub-menu: collapsed by default, JS controls via inline styles */
  .nav__dropdown {
    position: static;
    background: #f9fafb;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .nav__dropdown-link {
    display: block;
    padding: 0.7rem 1.5rem 0.7rem 2.25rem;
    font-size: 0.9rem;
    color: #374151;
    text-decoration: none;
    background: transparent;
  }

  .nav__dropdown-link:hover { background: #ede9fe; color: var(--color-primary-purple); }

  .nav__dropdown-link--category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary-purple);
    border-bottom: 1px solid #e5e7eb;
  }

  .nav__cta { margin: 1rem 1.5rem 0; }
}

@media (max-width: 768px) {
  .logo__text { font-size: 22px; }
  .nav__logo img { height: 22px !important; }
  .site-header .container { padding-top: 0.625rem; padding-bottom: 0.625rem; }
}


/* ========== homepage.css ========== */
/* ==========================================================================
   HOMEPAGE STYLES
   Styles for all homepage sections
   ========================================================================== */

@import url('/css/storefront-design-system.css');

/* ==========================================================================
   BASE LAYOUT
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

.section {
  padding: 6rem 0;
}

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

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__label {
  display: block;
  font-family: var(--font-family-label);
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  color: var(--color-accent-purple);
  margin-bottom: var(--spacing-1);
}

.section__title {
  font-family: var(--font-family-heading);
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-2) 0;
}

.section__description {
  font-family: var(--font-family-body);
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section__footer {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .section__description {
    font-size: 1rem;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  padding: 6rem 0 0;
  background-color: var(--color-background);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/storefront/images/hero-background-image.png');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero__background {
    background-position: center center;
  }
}

.hero__background::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--color-background), transparent);
}

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

/* --- Two-column inner grid --- */
.hero__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: auto auto;
  grid-template-areas:
    "text   image"
    "actions image";
  align-items: start;
  gap: 0 2rem;
}

.hero__text {
  grid-area: text;
  padding-top: 2rem;
}

.hero__actions {
  grid-area: actions;
  padding-bottom: 4rem;
}

/* Desktop image column */
.hero__image-col {
  grid-area: image;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  position: relative;
  background: transparent;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

/* Soft bottom fade */
.hero__image-col::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-background), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Mobile-only image slot — hidden on desktop */
.hero__image-wrapper {
  display: none;
}

.hero__doctor-image {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 1;
}

/* --- Text --- */
.hero__headline {
  font-family: var(--font-family-heading);
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
}

.hero__subheadline {
  font-family: var(--font-family-body);
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin: 0 0 2rem 0;
}

/* --- CTA + badges --- */
.hero__cta {
  margin-bottom: 2rem;
  display: inline-block;
}

.hero__cta:visited,
.hero__cta:visited * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-pill);
}

.trust-badge__text {
  font-family: var(--font-family-label);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
  letter-spacing: var(--letter-spacing-wide);
}

/* ==========================================================================
   HERO — MOBILE
   ========================================================================== */

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 0;
  }

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

  .hero__text {
    order: 1;
    padding-top: 0;
    text-align: center;
    padding-bottom: 1.5rem;
  }

  .hero__image-wrapper {
    display: block;
    order: 2;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    position: relative;
  }

  .hero__image-wrapper::after {
    display: none;
  }

  .hero__image-col {
    display: none;
  }

  .hero__image-wrapper .hero__doctor-image {
    max-width: 340px;
    margin: 0 auto;
  }

  .hero__actions {
    order: 3;
    padding-bottom: 3rem;
    padding-top: 0;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__headline {
    font-size: 2rem;
  }

  .hero__subheadline {
    font-size: 1rem;
  }

  .hero__trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  /* CTA: full width on mobile, centered */
  .hero__cta,
  .hero__cta.btn,
  .hero__cta.btn--primary,
  .hero__cta.btn--large {
    display: block !important;
    width: fit-content !important;
    text-align: center !important;
    white-space: nowrap !important;
    padding: 0.875rem 2rem !important;
    margin: 0 0 2rem 0 !important;
    box-sizing: border-box !important;
  }
}

/* ==========================================================================
   TREATMENTS SHOWCASE GRID
   ========================================================================== */

.treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(to right, 
    var(--color-accent-pink),
    var(--color-accent-purple),
    var(--color-accent-blue)
  );
  z-index: 0;
}

.step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-small);
}

.step__title {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
}

.step__description {
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }

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

@media (max-width: 576px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step__number {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   MEDICAL OVERSIGHT / PROVIDER SECTION
   ========================================================================== */

.medical-oversight .provider-card {
  max-width: 900px;
  margin: 0 auto;
}

/* ==========================================================================
   TRUST FACTORS GRID
   ========================================================================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.trust-item__title {
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
}

.trust-item__description {
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

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

  .trust-item {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   EDUCATION HUB
   ========================================================================== */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.article-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.article-card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.65) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.article-card__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

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

.article-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.article-card__category {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(123, 63, 157, 0.95);
  border-radius: 50px;
  font-family: var(--font-family-label);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: white;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.article-card__title {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 1);
}

.article-card__excerpt {
  font-family: var(--font-family-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 1rem 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-family-body);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: white;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  transition: gap 0.3s ease;
}

.article-card:hover .article-card__link {
  gap: 0.75rem;
}

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

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

  .article-card {
    min-height: 280px;
    padding: 1.5rem;
  }

  .article-card__title {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  background: var(--color-background);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion__item:hover {
  box-shadow: var(--shadow-small);
}

.accordion__item[open] {
  box-shadow: var(--shadow-medium);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
}

.accordion__trigger::-webkit-details-marker {
  display: none;
}

.accordion__title {
  font-family: var(--font-family-heading);
  font-size: 1.0625rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  text-align: left;
  flex: 1;
  padding-right: 1rem;
}

.accordion__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-accent-purple);
  transition: transform 0.3s ease;
}

.accordion__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.accordion__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.accordion__item[open] .accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion__content {
  padding: 0 1.5rem 1.5rem;
}

.accordion__content p {
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 576px) {
  .accordion__trigger {
    padding: 1rem 1.25rem;
  }

  .accordion__title {
    font-size: 1rem;
  }

  .accordion__content {
    padding: 0 1.25rem 1.25rem;
  }
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
  background: var(--gradient-primary);
  padding: 5rem 0;
}

.cta-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-block__title {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin: 0 0 1rem 0;
}

.cta-block__description {
  font-family: var(--font-family-body);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
}

.cta-section .btn--primary {
  background: var(--color-white);
  color: var(--color-accent-purple);
  border-color: var(--color-white);
}

.cta-section .btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-block__notes {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}

.cta-block__notes li {
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-block__notes li::before {
  content: '✓';
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }

  .cta-block__title {
    font-size: 1.75rem;
  }

  .cta-block__description {
    font-size: 1rem;
  }

  .cta-block__notes {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   STEPS NOTE
   ========================================================================== */

.steps__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--color-accent-purple);
  font-weight: var(--font-weight-semibold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   PRODUCT CARD ENHANCEMENTS
   ========================================================================== */

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-family-label);
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.product-card__category--longevity {
  background: linear-gradient(135deg, rgba(0, 71, 187, 0.95) 0%, rgba(123, 63, 157, 0.95) 100%);
}

.product-card__category--weight-loss {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.95) 0%, rgba(123, 63, 157, 0.95) 100%);
}

.product-card__name {
  font-family: var(--font-family-heading);
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.product-card__price {
  font-family: var(--font-family-body);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent-purple);
  margin: 0 0 1.25rem 0;
}

.product-card__price-from {
  display: block;
  font-size: 0.75rem;
  font-weight: var(--font-weight-normal);
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 0.1rem;
}

.product-card__price-period {
  font-weight: var(--font-weight-normal);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

.product-card__cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: auto;
}

@media (max-width: 768px) {
  .product-card__image {
    padding: 1.5rem;
  }

  .product-card__name {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   WHY SERENA - GRADIENT BACKGROUND
   ========================================================================== */

.why-serena {
  background: linear-gradient(135deg, 
    rgba(233, 30, 140, 0.03) 0%, 
    rgba(123, 63, 157, 0.05) 50%, 
    rgba(0, 71, 187, 0.03) 100%
  );
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: #1a1a2e;
  color: #a0a0b0;
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  min-width: 0;
}

.footer__grid * {
  min-width: 0;
  word-break: break-word;
}

.footer__column--brand {
  padding-right: 2rem;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.footer__contact {
  font-size: 0.875rem;
}

.footer__contact p {
  margin: 0.5rem 0;
}

.footer__contact a {
  color: #a0a0b0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__contact a:hover {
  color: var(--color-white);
}

.footer__address {
  margin-bottom: 0.75rem;
}

.footer__heading {
  font-family: var(--font-family-heading);
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  margin: 0 0 1.25rem 0;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: #a0a0b0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.footer__disclaimer p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: #6a6a7a;
  margin: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: #6a6a7a;
  margin: 0;
}

.footer__certifications {
  display: flex;
  gap: 1.5rem;
}

.footer__cert {
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  color: #6a6a7a;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.footer__legitscript {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.footer__legitscript:hover {
  opacity: 0.85;
}

.footer__legitscript img {
  display: block;
}

.footer-certifications {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__column--brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .footer__logo {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   MODAL STYLING
   ========================================================================== */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal--active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal__container {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 3rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal--active .modal__container {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
  border-radius: var(--radius-full);
}

.modal__close:hover {
  color: var(--color-text-primary);
  background: var(--color-gray-100);
}

.modal__logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal__logo .logo__text {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.modal__title {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
}

.modal__description {
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.modal__content {
  width: 100%;
}

.modal__footer-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
  margin-top: 1.5rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-family-body);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.form-input,
.form-select {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-family-body);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent-purple);
  box-shadow: 0 0 0 3px rgba(123, 63, 157, 0.1);
}

.form-input--error,
.form-select--error {
  border-color: #e53935;
}

.form-input--error:focus,
.form-select--error:focus {
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-error {
  font-size: 0.75rem;
  color: #e53935;
  margin-top: 0.25rem;
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  text-align: center;
}

.form-message--success {
  background: #e8f5e9;
  color: #2e7d32;
}

.form-message--error {
  background: #ffebee;
  color: #c62828;
}

.lead-form .btn--full {
  width: 100%;
  margin-top: 0.5rem;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 576px) {
  .modal__container {
    padding: 2rem 1.5rem;
  }

  .modal__title {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   GRADIENT LINK
   ========================================================================== */

.link--gradient {
  font-weight: var(--font-weight-semibold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.link--gradient:hover {
  opacity: 0.8;
}

.link--gradient::after {
  content: ' \2192';
  -webkit-text-fill-color: var(--color-accent-purple);
}

/* ==========================================================================
   PROVIDER CARD ENHANCEMENTS
   ========================================================================== */

.provider-card--featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  border-left: 4px solid var(--color-accent-purple);
}

.provider-card__photo-wrapper {
  flex-shrink: 0;
}

.provider-card__photo {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--color-gray-100);
}

.provider-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.provider-card__credentials {
  font-family: var(--font-family-label);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  color: var(--color-accent-purple);
  margin-bottom: 0.5rem;
}

.provider-card__name {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.25rem 0;
}

.provider-card__title {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin: 0 0 1rem 0;
}

.provider-card__bio {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 0 1.25rem 0;
}

.provider-card__link {
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-purple);
  text-decoration: none;
  transition: color 0.2s ease;
}

.provider-card__link:hover {
  color: var(--color-accent-pink);
}

@media (max-width: 768px) {
  .provider-card--featured {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .provider-card__photo-wrapper {
    display: flex;
    justify-content: center;
  }

  .provider-card__photo {
    width: 120px;
    height: 120px;
  }

  .provider-card__content {
    align-items: center;
  }
}

/* ==========================================================================
   EDUCATION HUB - SMALLER SUPPORTING SECTION
   ========================================================================== */

.education-hub {
  background-color: var(--color-background);
}

.education-hub .section__title {
  font-size: 1.75rem;
}

/* ==========================================================================
   TRANSITIONS
   ========================================================================== */

a,
button,
input,
select,
.product-card,
.article-card,
.trust-item,
.accordion__item {
  transition-duration: 0.3s;
  transition-timing-function: ease;
}


/* ========== intake-modal.css ========== */
/* ============================================
   Serena Health — Intake Modal
   Full-screen mobile-first, centered card desktop
   ============================================ */

/* ── Animations ── */
@keyframes serena-slide-in-right {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes serena-slide-out-left {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(-30px); opacity: 0; }
}

@keyframes serena-slide-in-left {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes serena-slide-out-right {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(30px); opacity: 0; }
}

@keyframes serena-modal-enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Overlay ── */
.serena-intake-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── Modal Container ── */
.serena-intake-modal {
  width: 100vw;
  height: 100vh;
  background: #fefdfb;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: serena-modal-enter 0.3s ease;
}

/* ── Header ── */
.serena-intake-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  min-height: 48px;
  flex-shrink: 0;
}

.serena-intake-btn-back {
  background: none;
  border: none;
  font-size: 15px;
  color: var(--color-primary-purple);
  cursor: pointer;
  padding: 8px 4px;
  font-family: inherit;
  min-width: 60px;
  text-align: left;
}

.serena-intake-step-indicator {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

.serena-intake-btn-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Progress Bar ── */
.serena-intake-progress {
  height: 4px;
  background: #e5e7eb;
  flex-shrink: 0;
}

.serena-intake-progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.4s ease;
  border-radius: 0 2px 2px 0;
}

/* ── Body (scrollable) ── */
.serena-intake-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 20px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

/* ── Step Container ── */
.serena-intake-step {
  max-width: 420px;
  margin: 0 auto;
}

/* ── Logo ── */
.serena-intake-logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-purple);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ── Title / Subtitle ── */
.serena-intake-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 8px;
}

.serena-intake-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0 0 24px;
  line-height: 1.4;
}

.serena-intake-subtitle strong {
  color: var(--color-primary-purple);
}

/* ── Form Fields ── */
.serena-intake-field {
  margin-bottom: 16px;
  flex: 1;
}

.serena-intake-field-row {
  display: flex;
  gap: 12px;
}

.serena-intake-input,
.serena-intake-select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  font-size: 16px;
  font-family: inherit;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  color: #1a1a1a;
  transition: border-color 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.serena-intake-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.serena-intake-input:focus,
.serena-intake-select:focus {
  outline: none;
  border-color: var(--color-primary-purple);
  box-shadow: 0 0 0 3px rgba(123, 63, 157, 0.1);
}

.serena-intake-input::placeholder {
  color: #9ca3af;
}

/* ── Error Messages ── */
.serena-intake-error {
  display: none;
  font-size: 13px;
  color: #dc2626;
  margin-top: 4px;
  padding-left: 2px;
}

/* ── Primary Button ── */
.serena-intake-btn-primary {
  display: block;
  width: 100%;
  height: 52px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s, transform 0.1s;
  text-align: center;
  text-decoration: none;
  line-height: 52px;
}

.serena-intake-btn-primary:hover {
  opacity: 0.92;
}

.serena-intake-btn-primary:active {
  transform: scale(0.98);
}

.serena-intake-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Secondary Button (returning user actions) ── */
.serena-intake-btn-secondary {
  display: block;
  width: 100%;
  height: 48px;
  background: #fff;
  color: var(--color-primary-purple);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid var(--color-primary-purple);
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 48px;
  transition: background 0.2s;
}

.serena-intake-btn-secondary:hover {
  background: #f5f0fa;
}

/* ── Trust Text ── */
.serena-intake-trust {
  text-align: center;
  margin-top: 16px;
}

.serena-intake-trust p {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

/* ── How It Works (Step 1) ── */
.serena-intake-how-it-works {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.serena-intake-how-it-works h4 {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 16px;
}

.serena-intake-hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.serena-intake-hiw-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-pink) 0%, var(--color-primary-purple) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.serena-intake-hiw-step div {
  font-size: 14px;
  color: #374151;
  line-height: 1.4;
}

.serena-intake-hiw-step strong {
  color: #1a1a1a;
}

/* ── Tier Cards (Step 4) ── */
.serena-intake-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.serena-intake-tier-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fff;
  position: relative;
}

.serena-intake-tier-card:hover {
  border-color: var(--color-primary-purple);
}

.serena-intake-tier-card--selected {
  border-color: var(--color-primary-purple);
  background: #faf5ff;
  box-shadow: 0 0 0 1px var(--color-primary-purple);
}

.serena-intake-tier-card--best {
  border-color: var(--color-primary-purple);
}

/* Radio dot */
.serena-intake-tier-radio {
  flex-shrink: 0;
}

.serena-intake-tier-dot {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  position: relative;
  transition: border-color 0.2s;
}

.serena-intake-tier-dot--active {
  border-color: var(--color-primary-purple);
}

.serena-intake-tier-dot--active::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary-purple);
}

/* Tier info */
.serena-intake-tier-info {
  flex: 1;
}

.serena-intake-tier-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.serena-intake-tier-price {
  font-size: 14px;
  color: #374151;
  margin-top: 2px;
}

.serena-intake-tier-detail {
  color: #9ca3af;
  font-size: 13px;
}

/* Badges */
.serena-intake-tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--color-primary-pink) 0%, var(--color-primary-purple) 100%);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.serena-intake-tier-badge--save {
  background: #059669;
}

/* ── Returning User State ── */
.serena-intake-returning {
  text-align: center;
  padding-top: 40px;
}

.serena-intake-returning .serena-intake-title {
  margin-bottom: 16px;
}

.serena-intake-returning .serena-intake-subtitle {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.serena-intake-returning-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* ── Desktop (>768px) ── */
@media (min-width: 769px) {
  .serena-intake-modal {
    width: 520px;
    max-height: 90vh;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  }

  .serena-intake-body {
    padding: 32px 36px;
    padding-bottom: 32px;
  }

  .serena-intake-title {
    font-size: 28px;
  }
}

/* ── Mobile safe areas ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .serena-intake-modal {
    padding-bottom: env(safe-area-inset-bottom);
  }
}


/* ========== product-page.css ========== */
/* ==========================================================================
   PRODUCT PAGE STYLES
   Styles for individual product pages
   ========================================================================== */

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

.breadcrumb {
  padding: 1rem 0;
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-gray-100);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  color: var(--color-text-secondary);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--color-gray-300);
}

.breadcrumb__item a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb__item a:hover {
  color: var(--color-accent-purple);
}

.breadcrumb__item--current {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-medium);
}

/* ==========================================================================
   PRODUCT HERO
   ========================================================================== */

.product-hero {
  padding: 3rem 0 4rem;
  background-color: var(--color-background);
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 4rem;
  align-items: start;
}

.product-hero__gallery {
  position: sticky;
  top: 100px;
}

.product-hero__main-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.product-hero__main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}

.product-hero__thumbnails {
  display: flex;
  gap: 0.75rem;
}

.product-hero__thumb {
  width: 80px;
  height: 80px;
  padding: 0.5rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.product-hero__thumb:hover {
  border-color: var(--color-gray-300);
}

.product-hero__thumb--active {
  border-color: var(--color-accent-purple);
}

.product-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-hero__info {
  padding-top: 1rem;
}

.product-hero__category {
  display: inline-block;
  font-family: var(--font-family-label);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  padding: 0.375rem 1rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.product-hero__title {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

.product-hero__tagline {
  font-family: var(--font-family-body);
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin: 0 0 1.5rem 0;
}

.product-hero__features {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.product-hero__feature {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--color-text-primary);
}

.product-hero__feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.product-hero__feature::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

.product-hero__pricing {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent-purple);
}

.product-hero__price-main {
  font-family: var(--font-family-heading);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0;
}

.product-hero__price-main span {
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
}

.product-hero__price-alt {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin: 0.25rem 0 0 0;
}

.product-hero__cta {
  width: 100%;
  margin-bottom: 1rem;
}

.product-hero__trust-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 992px) {
  .product-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-hero__gallery {
    position: static;
  }

  .product-hero__title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .product-hero {
    padding: 2rem 0;
  }

  .product-hero__title {
    font-size: 1.75rem;
  }

  .product-hero__thumbnails {
    justify-content: center;
  }
}

/* ==========================================================================
   QUICK FACTS
   ========================================================================== */

.quick-facts {
  padding: 2.5rem 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-100);
}

.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.quick-facts__item {
  text-align: center;
  padding: 1rem 0.5rem;
}

.quick-facts__label {
  display: block;
  font-family: var(--font-family-label);
  font-size: 0.625rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  color: var(--color-text-tertiary);
  margin-bottom: 0.375rem;
}

.quick-facts__value {
  display: block;
  font-family: var(--font-family-body);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

@media (max-width: 992px) {
  .quick-facts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* ==========================================================================
   WHAT IS IT
   ========================================================================== */

.what-is-it__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.what-is-it__content p {
  margin: 0 0 1.5rem 0;
}

.what-is-it__content p:last-child {
  margin-bottom: 0;
}

.what-is-it__learn-more {
  text-align: center;
  margin-top: 2rem;
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */

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

.benefit-card {
  padding: 2rem;
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card__title {
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
}

.benefit-card__description {
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.benefits__research {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-100);
}

.benefits__research-count {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin: 0 0 0.5rem 0;
}

.benefits__research-link {
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-purple);
  text-decoration: none;
}

.benefits__research-link:hover {
  color: var(--color-accent-pink);
}

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

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

  .benefit-card {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   TREATMENT JOURNEY — horizontal, number on top
   ========================================================================== */

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: var(--gradient-primary);
  z-index: 0;
}

/* Override styles.css which sets display:grid with a side-number layout */
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  z-index: 1;
}

.journey-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(123, 63, 157, 0.3);
  /* Clear grid-row from styles.css */
  grid-row: unset;
  align-self: unset;
  flex-shrink: 0;
}

.journey-step__title {
  font-family: var(--font-family-heading);
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  align-self: unset;
}

.journey-step__description {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
  align-self: unset;
}

.journey-timeline {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-purple);
}

@media (max-width: 992px) {
  .journey-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

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

@media (max-width: 576px) {
  .journey-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .journey-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    text-align: left;
    align-items: unset;
  }

  .journey-step__number {
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1rem;
    margin-bottom: 0;
    align-self: start;
  }

  .journey-step__title {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-bottom: 0.25rem;
  }

  .journey-step__description {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }
}

/* ==========================================================================
   DOSAGE
   ========================================================================== */

.dosage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  /* Align both columns to the top so subtitles sit at same baseline */
  align-items: start;
}

.dosage__subtitle {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
}

.dosage__list {
  margin: 0;
}

.dosage__item {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.dosage__item dt {
  flex: 0 0 140px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
}

.dosage__item dd {
  flex: 1;
  margin: 0;
  color: var(--color-text-primary);
}

.dosage__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dosage__checklist li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-text-primary);
}

.dosage__checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 16px;
  height: 16px;
  background: var(--color-accent-purple);
  border-radius: var(--radius-full);
}

.dosage__checklist li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 17px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .dosage__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dosage__item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .dosage__item dt {
    flex: none;
    font-size: 0.875rem;
  }
}

/* ==========================================================================
   ELIGIBILITY
   ========================================================================== */

.eligibility__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.eligibility__subtitle {
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid;
}

.eligibility__subtitle--positive {
  color: #2e7d32;
  border-color: #2e7d32;
}

.eligibility__subtitle--negative {
  color: #c62828;
  border-color: #c62828;
}

.eligibility__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eligibility__list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  font-size: 0.9375rem;
  color: var(--color-text-primary);
}

.eligibility__list--positive li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 16px;
  height: 16px;
  background: #2e7d32;
  border-radius: var(--radius-full);
}

.eligibility__list--positive li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

.eligibility__list--negative li::before {
  content: '\00D7';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 16px;
  height: 16px;
  background: #c62828;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  text-align: center;
}

.eligibility__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  font-style: italic;
}

@media (max-width: 768px) {
  .eligibility__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   PRICING CARDS
   ========================================================================== */

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--color-accent-purple);
  box-shadow: var(--shadow-medium);
}

.pricing-card--featured {
  border-color: var(--color-accent-purple);
  box-shadow: var(--shadow-medium);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-family: var(--font-family-label);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  border-radius: var(--radius-pill);
}

.pricing-card__title {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
}

.pricing-card__price {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
}

.pricing-card__price-detail {
  font-size: 0.875rem;
  color: #666;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  text-align: left;
}

.pricing-card__features li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 14px;
  height: 14px;
  background: var(--color-accent-purple);
  border-radius: var(--radius-full);
}

.pricing-card__features li::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 12px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

.pricing__notes {
  text-align: center;
  margin-top: 2rem;
}

.pricing__notes p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0.5rem 0;
}

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

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   RESEARCH
   ========================================================================== */

.research__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.research__item {
  padding: 1.5rem;
  background: var(--color-background);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-accent-purple);
}

.research__citation {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.research__more {
  text-align: center;
  margin-top: 2rem;
}

/* ==========================================================================
   CTA BLOCK NOTES
   ========================================================================== */

.cta-block__notes {
  list-style: none;
  margin: 2rem 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.cta-block__notes li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 576px) {
  .cta-block__notes {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ==========================================================================
   VISUALLY HIDDEN
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ========== category-page.css ========== */
/* ==========================================================================
   CATEGORY PAGE STYLES
   Styles for category landing pages (Longevity, Weight Loss)
   ========================================================================== */

/* ==========================================================================
   CATEGORY HERO
   ========================================================================== */

.category-hero {
  padding: 6rem 0;
  background-color: var(--color-cream, #fefdfb);
  background-image: linear-gradient(135deg,
    rgba(233, 30, 140, 0.05) 0%,
    rgba(123, 63, 157, 0.08) 50%,
    rgba(0, 71, 187, 0.05) 100%
  );
  text-align: center;
}

.category-hero--longevity {
  background-color: var(--color-cream, #fefdfb);
  background-image: linear-gradient(135deg,
    rgba(123, 63, 157, 0.06) 0%,
    rgba(0, 71, 187, 0.09) 100%
  );
}

.category-hero--weight-loss {
  background-color: var(--color-cream, #fefdfb);
  background-image: linear-gradient(135deg,
    rgba(233, 30, 140, 0.07) 0%,
    rgba(123, 63, 157, 0.08) 100%
  );
}

.category-hero__content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.category-hero__title {
  font-family: var(--font-family-heading);
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.category-hero__tagline {
  font-family: var(--font-family-body);
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  margin: 0 0 1rem 0;
  color: var(--color-text-secondary);
}

.category-hero__description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 2rem 0;
  color: var(--color-text-secondary);
  max-width: 680px;
}

@media (max-width: 768px) {
  .category-hero {
    padding: 3rem 0;
  }

  .category-hero__title {
    font-size: 2rem;
  }

  .category-hero__tagline {
    font-size: 1.25rem;
  }

  .category-hero__description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .category-hero {
    padding: 2.25rem 0;
  }

  .category-hero__title {
    font-size: 1.65rem;
  }

  .category-hero__tagline {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   WHAT IS THERAPY — centered title, full-width content
   ========================================================================== */

.what-is-therapy__content,
.what-is-it__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 100%;
}

.what-is-therapy__content p,
.what-is-it__content p {
  margin: 0 0 1.5rem 0;
}

.what-is-therapy__content p:last-child,
.what-is-it__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .what-is-therapy__content,
  .what-is-it__content {
    font-size: 1rem;
  }
}

/* ==========================================================================
   TREATMENTS GRID
   ========================================================================== */

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.treatment-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.treatment-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.treatment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}

.treatment-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.treatment-card__name {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
}

.treatment-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 1rem 0;
  flex: 1;
}

.treatment-card__price {
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent-purple);
  margin: 0 0 1rem 0;
}

.treatment-card__cta {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 992px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   COMPARISON TABLE — legacy reference
   ========================================================================== */

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-100);
}

.comparison-table thead th {
  background: var(--color-background);
  font-family: var(--font-family-heading);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

.comparison-table thead th:first-child {
  background: var(--color-gray-100);
}

.comparison-table tbody th {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  background: var(--color-gray-50);
}

.comparison-table tbody td {
  font-size: 0.9375rem;
  color: var(--color-text-primary);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   TRUST GRID
   ========================================================================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-background, #fefdfb);
  border-radius: var(--radius-md);
}

.trust-card__title {
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
}

.trust-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-card {
    padding: 1.25rem;
  }
}

/* ==========================================================================
   DELIVERY METHOD COMPARISON (2-col cards)
   ========================================================================== */

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

.delivery-compare__col {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
  min-width: 0;
}

.delivery-compare__col:hover {
  box-shadow: 0 8px 32px rgba(123, 63, 157, 0.1);
}

.delivery-compare__col--featured {
  border-color: var(--color-primary-purple);
  background: linear-gradient(160deg, #fdf7ff 0%, #fff 100%);
}

.delivery-compare__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-purple);
  background: #EDE6F2;
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  align-self: flex-start;
}

.delivery-compare__badge--featured {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary-pink) 0%, var(--color-primary-purple) 100%);
}

.delivery-compare__icon {
  font-size: 2rem;
  line-height: 1;
}

.delivery-compare__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.delivery-compare__tagline {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.delivery-compare__rows {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #f0ecf8;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.delivery-compare__row {
  display: flex;
  flex-direction: column;
  padding: 0.625rem 0;
  border-bottom: 1px solid #f0ecf8;
  gap: 0.125rem;
}

.delivery-compare__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-purple);
}

.delivery-compare__value {
  font-size: 0.9375rem;
  color: #1a1a2e;
  line-height: 1.45;
}

.delivery-compare__cta {
  margin-top: 1.25rem;
  text-align: center;
}

@media (max-width: 640px) {
  .delivery-compare {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .delivery-compare__col {
    padding: 1.5rem 1.25rem;
  }

  .delivery-compare__col--featured {
    order: -1;
  }

  .delivery-compare__title {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   LIFESTYLE SECTION
   ========================================================================== */

.lifestyle-section {
  padding: var(--spacing-4, 2rem) 0;
}

.lifestyle-visual {
  width: 100%;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
}

.lifestyle-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .lifestyle-image {
    max-height: 220px;
  }
}

/* ==========================================================================
   TREATMENT JOURNEY — HOW IT WORKS
   ========================================================================== */

.treatment-journey .journey-steps {
  max-width: 720px;
  margin: 0 auto;
}

.journey-timeline {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-purple);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */

.why-choose .trust-grid {
  margin-top: 0;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq .accordion {
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   EDUCATION HUB
   ========================================================================== */

.education-hub {
  background-color: var(--color-bg-primary, #fefdfb);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
  background: var(--gradient-primary);
  padding: 5rem 0;
}

.cta-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-block__title {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.cta-block__description {
  font-family: var(--font-family-body);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
}

.cta-section .btn--primary {
  background: #ffffff;
  color: var(--color-primary-purple);
  border-color: #ffffff;
}

.cta-section .btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-block__notes {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}

.cta-block__notes li {
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-block__notes li::before {
  content: '✓';
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }

  .cta-block__title {
    font-size: 1.75rem;
  }

  .cta-block__description {
    font-size: 1rem;
  }

  .cta-block__notes {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 2.5rem 0;
  }

  .cta-block__title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   SECTION HEADINGS — mobile overrides
   ========================================================================== */

@media (max-width: 480px) {
  .section__title {
    font-size: 1.5rem !important;
  }

  .section__label {
    font-size: 0.625rem;
  }

  .section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}


