/* ==========================================================================
   SODATIDE - Modern Responsive Sales Page Design System
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary: #4a157e;
  --primary-dark: #2a084e;
  --primary-light: #7c22b3;
  --primary-gradient: linear-gradient(135deg, #4a157e 0%, #7c22b3 100%);
  --hero-gradient: linear-gradient(180deg, #370b5e 0%, #4a157e 50%, #20063b 100%);
  --dark-bg: #140526;
  --dark-surface: #1e0b38;
  --dark-surface-elevated: #28104a;

  /* Accent Colors */
  --accent-yellow: #ffeb3b;
  --accent-gold: #fbbf24;
  --accent-green: #10b981;
  --accent-green-hover: #059669;
  --accent-red: #ef4444;
  --accent-orange: #f97316;

  /* Neutrals */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-white: #ffffff;
  
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-card: #e5e7eb;

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Fira Code', monospace;

  /* Spacing */
  --container-max: 1200px;
  --container-narrow: 900px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 25px rgba(255, 235, 59, 0.4);
  --shadow-glow-green: 0 0 25px rgba(16, 185, 129, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Resets & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Layout Containers & Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

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

.highlight-yellow {
  color: var(--accent-yellow);
  font-weight: 700;
}

.highlight-purple {
  color: var(--primary-light);
  font-weight: 700;
}

.section-padding {
  padding: 70px 0;
}

.section-padding-sm {
  padding: 40px 0;
}

/* --------------------------------------------------------------------------
   1. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  background: var(--hero-gradient);
  color: var(--text-white);
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 34, 179, 0.35) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image {
  max-height: 540px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
  animation: floatSlow 5s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: #e2e8f0;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.hero-badge-item {
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.hero-badge-item:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255, 255, 255, 0.16);
}

.hero-badge-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   2. Doctor Discovery Section
   -------------------------------------------------------------------------- */
.doctor-section {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.doctor-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.divider-line {
  width: 80px;
  height: 4px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.doctor-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.doctor-image-wrapper {
  display: flex;
  justify-content: center;
}

.doctor-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 480px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.doctor-image:hover {
  transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   3. Scarcity & Countdown Banner
   -------------------------------------------------------------------------- */
.countdown-banner {
  background: linear-gradient(135deg, #2b064e 0%, #440b79 50%, #1a0330 100%);
  color: var(--text-white);
  padding: 35px 20px;
  text-align: center;
  position: relative;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}

.countdown-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-timer-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 235, 59, 0.6);
  border-radius: var(--radius-md);
  padding: 8px 30px;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 2px;
  box-shadow: 0 0 20px rgba(255, 235, 59, 0.25);
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 235, 59, 0.2); }
  50% { box-shadow: 0 0 30px rgba(255, 235, 59, 0.45); }
}

/* --------------------------------------------------------------------------
   4. Pricing Cards Section
   -------------------------------------------------------------------------- */
.pricing-section {
  background: #f1f5f9;
  padding: 60px 0 80px;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-card);
  padding: 30px 24px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

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

/* Featured 6-bottle card */
.pricing-card.featured {
  border: 3px solid #7c22b3;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 15px 40px rgba(124, 34, 179, 0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 20px 50px rgba(124, 34, 179, 0.3);
}

.pricing-badge-top {
  position: absolute;
  top: -16px;
  background: linear-gradient(135deg, #7c22b3, #4a157e);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(124, 34, 179, 0.4);
}

.pricing-badge-top.best-value {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.pricing-badge-top.good-value {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.pricing-card-header {
  margin-top: 10px;
  margin-bottom: 15px;
}

.pricing-card-offer {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.pricing-card-supply {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-card-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 20px;
}

.pricing-card-image img {
  max-height: 210px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.pricing-card:hover .pricing-card-image img {
  transform: scale(1.05);
}

.pricing-price-box {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-currency {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  vertical-align: top;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.2;
}

.pricing-savings-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin-bottom: 20px;
}

.save-tag {
  background: #dcfce7;
  color: #166534;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.bonus-tag {
  background: #fef08a;
  color: #854d0e;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.guarantee-tag {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* CTA Button */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  transition: all var(--transition-fast);
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: rotate(30deg);
  animation: shimmer 3.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

.btn-cta:hover {
  background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.55);
}

.pricing-total-details {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

.price-strikethrough {
  text-decoration: line-line-through;
  color: #94a3b8;
  margin-right: 4px;
}

.price-actual {
  color: var(--text-primary);
  font-weight: 700;
}

.shipping-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
}

.payment-methods-img {
  max-width: 200px;
  margin-top: 10px;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   5. Satisfaction & Guarantee Section
   -------------------------------------------------------------------------- */
.guarantee-section {
  background: var(--bg-white);
  padding: 70px 0;
  border-bottom: 1px solid var(--border-light);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: center;
}

.guarantee-badge-col {
  display: flex;
  justify-content: center;
}

.guarantee-seal-img {
  max-width: 320px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.12));
}

.guarantee-content h3 {
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.guarantee-content h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.guarantee-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.trust-badge-item {
  width: 65px;
  height: 65px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.trust-badge-item:hover {
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   6. Doctor Emily Gottfried Endorsement Section
   -------------------------------------------------------------------------- */
.doctor-quote-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 100%);
  padding: 75px 0;
  border-bottom: 1px solid var(--border-light);
}

.doctor-quote-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.doctor-quote-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--primary-light);
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(124, 34, 179, 0.2);
  line-height: 1;
  margin-bottom: 10px;
}

.doctor-quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.doctor-quote-card p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.doctor-portrait-wrapper {
  display: flex;
  justify-content: center;
}

.doctor-portrait-img {
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

/* --------------------------------------------------------------------------
   7. Mechanism of Action / Science Section
   -------------------------------------------------------------------------- */
.mechanism-section {
  background: var(--bg-white);
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mechanism-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.mechanism-img-box {
  width: 100%;
  height: 220px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mechanism-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.mechanism-card:hover .mechanism-img-box img {
  transform: scale(1.05);
}

.mechanism-body {
  padding: 26px 22px;
  flex-grow: 1;
}

.mechanism-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.mechanism-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8 & 9. 6 Free Bonuses Section
   -------------------------------------------------------------------------- */
.bonuses-section {
  background: linear-gradient(180deg, #180630 0%, #290b50 100%);
  color: var(--text-white);
  padding: 85px 0 95px;
  position: relative;
}

.bonuses-header {
  text-align: center;
  margin-bottom: 55px;
}

.bonuses-header h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.bonuses-header p {
  font-size: 1.2rem;
  color: #cbd5e1;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal), background var(--transition-normal);
}

.bonus-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 235, 59, 0.4);
}

.bonus-img-wrapper {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bonus-img-wrapper img {
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
  transition: transform var(--transition-fast);
}

.bonus-card:hover .bonus-img-wrapper img {
  transform: scale(1.06);
}

.bonus-number-badge {
  background: var(--accent-yellow);
  color: #1e1b4b;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bonus-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.bonus-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 12px;
}

.bonus-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 15px;
}

.bonus-access-tag {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-top: 1px dashed rgba(255,255,255,0.15);
  padding-top: 10px;
  width: 100%;
}

/* --------------------------------------------------------------------------
   10. Customer Reviews & Social Proof Section
   -------------------------------------------------------------------------- */
.reviews-section {
  background: var(--bg-page);
  padding: 85px 0;
}

.polaroids-wrapper {
  margin-bottom: 45px;
  display: flex;
  justify-content: center;
}

.polaroids-desktop {
  max-width: 900px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.polaroids-mobile {
  display: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.verified-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 15px;
  display: inline-block;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. Free Shipping Banner
   -------------------------------------------------------------------------- */
.shipping-perk-banner {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  color: var(--text-white);
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  max-width: 900px;
  margin: 40px auto 0;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.shipping-perk-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.shipping-perk-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.shipping-perk-text p {
  font-size: 0.95rem;
  color: #d1fae5;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   14 & 15. Synergistic Ingredients Grid Section
   -------------------------------------------------------------------------- */
.ingredients-section {
  background: var(--bg-white);
  padding: 85px 0;
  border-top: 1px solid var(--border-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.benefit-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  background: #ffffff;
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(124, 34, 179, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   16. Special Offer Callout Box
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   16. Product Label Section
   -------------------------------------------------------------------------- */
.product-label-section {
  background: linear-gradient(135deg, #1e0534 0%, #370b5e 50%, #150325 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-label-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 235, 59, 0.4);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-label-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.product-label-img:hover {
  transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   17. Frequently Asked Questions (FAQ) Accordion
   -------------------------------------------------------------------------- */
.faq-section {
  background: var(--bg-page);
  padding: 85px 0;
}

.faq-accordion {
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  background: transparent;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-light);
  transition: transform var(--transition-normal), background var(--transition-fast);
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-light);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease;
  padding: 0 26px 24px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   21. Scientific References Section
   -------------------------------------------------------------------------- */
.references-section {
  background: var(--bg-white);
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
}

.references-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.references-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.references-logos-img {
  max-width: 750px;
  width: 100%;
  object-fit: contain;
}

.references-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 40px;
  font-size: 0.85rem;
  line-height: 1.7;
  border-top: 1px solid #1e293b;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #1e293b;
}

.footer-nav-links a {
  color: #cbd5e1;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-nav-links a:hover {
  color: var(--accent-yellow);
}

.footer-disclaimers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: justify;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.footer-copyright {
  text-align: center;
  color: #64748b;
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   Floating Sticky Buy Bar
   -------------------------------------------------------------------------- */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 5, 38, 0.95);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--accent-yellow);
  padding: 12px 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4);
}

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

.sticky-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-bar-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sticky-bar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}

.sticky-bar-badge {
  background: var(--accent-yellow);
  color: #1a0330;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.sticky-bar-cta {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.5);
  white-space: nowrap;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.sticky-bar-cta:hover {
  transform: scale(1.04);
  background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
}

/* --------------------------------------------------------------------------
   What is Sodatide & How It Works Section
   -------------------------------------------------------------------------- */
.about-sodatide-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 85px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: stretch;
  margin-top: 40px;
}

.about-card-main {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 35px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 5px solid var(--primary-light);
}

.about-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 34, 179, 0.1);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  align-self: flex-start;
}

.about-card-main h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.about-card-main p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.about-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.how-it-works-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-step-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.how-step-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.how-step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(124, 34, 179, 0.3);
}

.how-step-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.how-step-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   CTA Highlight Box Section
   -------------------------------------------------------------------------- */
.cta-highlight-section {
  background: linear-gradient(135deg, #1e0534 0%, #370b5e 50%, #150325 100%);
  color: var(--text-white);
  padding: 75px 0;
  position: relative;
  overflow: hidden;
}

.cta-highlight-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 235, 59, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-highlight-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  border: 2px solid rgba(255, 235, 59, 0.4);
  border-radius: var(--radius-xl);
  padding: 45px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 45px;
  align-items: center;
}

.cta-highlight-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-highlight-img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
  animation: floatSlow 4s ease-in-out infinite;
}

.cta-highlight-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-yellow);
  color: #1b0330;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.cta-highlight-content h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
}

.cta-highlight-content p {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.7;
}

.cta-highlight-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 5px 0 10px;
}

.cta-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
}

.cta-perk-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.cta-highlight-btn-wrapper {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 420px;
}

.cta-highlight-subtext {
  font-size: 0.85rem;
  color: #cbd5e1;
  text-align: center;
}


