/**
 * Nutra Site Styles - Professional Edition
 * Generated by Nutra Static Site Generator
 * Design inspiration: eroferon.com
 */

/* ============================================
   FONTS
   ============================================ */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/poppins-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/poppins-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/poppins-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/poppins-700.woff2') format('woff2');
}

/* ============================================
   CSS VARIABLES - Nutra Color Scheme
   ============================================ */

:root {
  --font-primary: 'Poppins', system-ui, -apple-system, sans-serif;
  
  /* ============================================
     HEALTH-THEMED PASTEL COLOR PALETTE
     ============================================ */
  
  /* Primary colors - Soft teal/mint (health, freshness, trust) */
  --color-primary: #f97316;
  --color-primary-dark: #ea580c;
  --color-primary-light: #fb923c;
  --color-primary-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  
  /* Secondary colors - Soft green (nature, wellness) */
  --color-secondary: #f59e0b;
  --color-secondary-light: #f59e0b;
  --color-accent: #f59e0b;
  --color-accent-light: #fbbf24;
  
  /* Status colors */
  --color-success: #f59e0b;
  --color-danger: #ef4444;
  --color-warning: #f59e0b;
  
  /* Text colors - Softer, easier on eyes */
  --color-text: #1e293b;
  --color-text-secondary: #475569;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  
  /* Background colors - Soft pastel tones */
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-cream: #fff7ed;
  --color-bg-dark: #0f172a;
  --color-bg-gradient: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  
  /* ============================================
     5 HEALTH-THEMED GRADIENTS
     ============================================ */
  
  /* Gradient 1: Fresh Mint - Trust & Health */
  --gradient-mint: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #ffc56f 100%);
  
  /* Gradient 2: Ocean Calm - Serenity & Wellness */
  --gradient-ocean: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #22d3ee 100%);
  
  /* Gradient 3: Forest Green - Nature & Vitality */
  --gradient-forest: linear-gradient(135deg, #f59e0b 0%, #f59e0b 50%, #34d399 100%);
  
  /* Gradient 4: Sunset Warm - Energy & Vitality */
  --gradient-sunset: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
  
  /* Gradient 5: Lavender Dream - Calm & Healing */
  --gradient-lavender: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c4b5fd 100%);
  
  /* Border colors */
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 4px 20px rgba(13, 148, 136, 0.3);
  
  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
  
  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  max-width: none;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  padding-left: 1.5rem;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ============================================
   BUTTONS WITH MICRO-ANIMATIONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Ripple effect on click */
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Gradient variants for buttons */
.btn-primary {
  background: var(--gradient-mint);
  color: white;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
  color: white;
  text-decoration: none;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

/* Gradient button variants */
.btn-gradient-ocean {
  background: var(--gradient-ocean);
  color: white;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-gradient-ocean:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn-gradient-forest {
  background: var(--gradient-forest);
  color: white;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn-gradient-forest:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.btn-gradient-sunset {
  background: var(--gradient-sunset);
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-gradient-sunset:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-gradient-lavender {
  background: var(--gradient-lavender);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-gradient-lavender:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

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

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

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

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

.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
  border-radius: var(--radius-lg);
}

.btn-xl {
  padding: 20px 48px;
  font-size: 20px;
  border-radius: var(--radius-xl);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Button pulse animation for CTAs */
.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(13, 148, 136, 0.4); }
  70% { box-shadow: var(--shadow-md), 0 0 0 15px rgba(13, 148, 136, 0); }
  100% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(13, 148, 136, 0); }
}

/* ============================================
   GRADIENT TEXT VARIANTS FOR HEADLINES
   ============================================ */

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

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

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

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

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

/* Animated gradient text */
.gradient-text-animated {
  background: linear-gradient(90deg, 
    #f97316, #f59e0b, #0ea5e9, #8b5cf6, #f97316
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ============================================
   GLASS & CARD EFFECTS
   ============================================ */

.glass-effect {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 20px 50px -15px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

/* ============================================
   MICRO-ANIMATIONS FOR UI ELEMENTS
   ============================================ */

/* Hover lift effect */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

/* Scale on hover */
.hover-scale {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Glow effect on hover */
.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(13, 148, 136, 0.3);
}

/* Bounce on scroll animation */
.animate-bounce-in {
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.site-header .logo {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-mint);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.site-header .logo:hover {
  text-decoration: none;
  transform: scale(1.02);
}

.site-header .logo img,
.site-header .logo svg {
  height: 36px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav .nav-cta {
  padding: 10px 24px;
  background: var(--gradient-mint);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.25);
}

.main-nav .nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.35);
  text-decoration: none;
  color: white;
}

.main-nav .nav-cta::after {
  display: none;
}

/* ============================================
   TOP OFFER BOX (Hero with integrated form)
   ============================================ */

/* ============================================
   HERO MODERN - ASTRO.BUILD INSPIRED DESIGN
   ============================================ */

/* Hero Section */
.hero-modern {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 40%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

/* Animated Background */
.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -50px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  animation: floatShape 18s ease-in-out infinite 2s;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-1 {
  width: 12px;
  height: 12px;
  top: 20%;
  left: 15%;
  background: linear-gradient(135deg, var(--color-primary), #7c3aed);
  animation: floatOrb 10s ease-in-out infinite;
  opacity: 0.6;
}

.orb-2 {
  width: 8px;
  height: 8px;
  top: 60%;
  right: 20%;
  background: linear-gradient(135deg, #06b6d4, #f59e0b);
  animation: floatOrb 12s ease-in-out infinite 3s;
  opacity: 0.5;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-5deg); }
  75% { transform: translate(20px, 30px) rotate(3deg); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

/* Hero Grid */
.hero-modern .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  padding-top: 20px;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #0f172a;
  letter-spacing: -0.03em;
  position: relative;
}

/* Medical pulse animation under hero title */
.hero-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  margin-top: 16px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  animation: medicalPulse 2s ease-in-out infinite;
}

@keyframes medicalPulse {
  0% { opacity: 0.4; width: 80px; }
  50% { opacity: 1; width: 150px; }
  100% { opacity: 0.4; width: 80px; }
}

.hero-subtitle {
  font-size: 20px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 32px;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #475569;
  font-weight: 500;
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #f59e0b 0%, #f59e0b 100%);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #047857;
}

.trust-icon {
  font-size: 16px;
}

/* Hero Form Card */
.hero-form-card {
  padding: 32px;
  border-radius: 24px;
  position: relative;
}

.form-product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(248,250,252,0.5) 0%, rgba(241,245,249,0.5) 100%);
  border-radius: 16px;
}

.form-product-image img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
  animation: floatProduct 4s ease-in-out infinite;
}

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

.form-product-info {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.form-product-name {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.form-product-brand {
  font-size: 14px;
  color: #64748b;
  display: block;
  margin-bottom: 12px;
}

.form-product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 18px;
  color: #94a3b8;
  text-decoration: line-through;
}

.price-current {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
}

.price-discount {
  padding: 4px 10px;
  background: linear-gradient(135deg, #f59e0b 0%, #f59e0b 100%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
}

/* Hero Form */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  position: relative;
}

.form-row.has-prefix {
  display: flex;
}

.input-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-right: none;
  border-radius: 12px 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
}

.form-input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  background: white;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-input.with-prefix {
  border-radius: 0 12px 12px 0;
}

.form-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

/* Gradient Border Button */
.btn-gradient-border {
  position: relative;
  padding: 3px;
  background: var(--color-primary-gradient);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 6px;
}

.btn-gradient-border:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.35);
}

.btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--color-primary-gradient);
  border-radius: 11px;
  color: white;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-gradient-border:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-form-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  color: #64748b;
}

.hero-form-trust span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Live Counter in Hero */
.hero-modern .live-order-counter-wrapper {
  margin-bottom: 12px;
}

/* Offer Box Card */
.offer-box {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.offer-box-header {
  background: var(--color-primary-gradient);
  padding: 20px 24px;
  text-align: center;
  color: white;
}

.offer-box-header .discount-label {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 4px;
}

.offer-box-header .discount-value {
  font-size: 24px;
  font-weight: 700;
}

.offer-box-body {
  padding: 24px;
}

.offer-box-image {
  text-align: center;
  margin-bottom: 20px;
}

.offer-box-image img {
  max-width: 200px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.offer-box-name {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.offer-box-brand {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.offer-box-price {
  text-align: center;
  margin-bottom: 20px;
}

.offer-box-price .old-price {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-right: 8px;
}

.offer-box-price .current-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
}

.offer-box-stock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--color-success);
}

.offer-box-stock.out-of-stock {
  background: rgba(220, 53, 69, 0.1);
  color: var(--color-danger);
}

/* Inline Order Form in Offer Box */
.offer-box-form {
  border-top: 1px solid var(--color-border-light);
  padding-top: 20px;
}

.offer-box-form .form-group {
  margin-bottom: 16px;
}

.offer-box-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.offer-box-form input[type="text"],
.offer-box-form input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
}

.offer-box-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.offer-box-form .btn {
  margin-top: 8px;
}

.offer-box-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
}

.offer-box-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.offer-box-trust-item svg,
.offer-box-trust-item .icon {
  color: var(--color-success);
}

/* ============================================
   HERO SECTION (Alternative without form)
   ============================================ */

.hero-section {
  padding: 60px 0 80px;
  background: var(--color-bg-gradient);
  position: relative;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--color-primary);
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-price .old-price {
  font-size: 24px;
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.hero-price .current-price {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
}

.hero-price .save-badge {
  padding: 6px 14px;
  background: var(--color-accent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  background: var(--color-primary-gradient);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.15;
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.trust-badge:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.trust-badge .badge-icon {
  font-size: 18px;
}

/* ============================================
   SECTION TITLE COMPONENT
   ============================================ */

.section-title {
  text-align: center;
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-primary-gradient);
  border-radius: var(--radius-full);
}

.section-title p {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 16px auto 0;
}

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

.benefits-section {
  padding: 40px 0 20px;
  background: var(--color-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.benefit-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(13, 148, 136, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-mint);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
  border-color: rgba(13, 148, 136, 0.2);
  background: white;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
  border-radius: var(--radius-lg);
  font-size: 32px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-text);
}

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

/* ============================================
   INGREDIENTS SECTION - NEW CARD DESIGN
   ============================================ */

.ingredients-section {
  padding: 60px 0;
  background: var(--color-bg-alt);
}

.ingredients-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.ingredient-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.ingredient-image-fixed {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.ingredient-image-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  font-size: 40px;
}

.ingredient-info {
  flex: 1;
  min-width: 0;
}

.ingredient-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--color-text);
}

.ingredient-subtitle {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(13, 148, 136, 0.08);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 10px;
}

.ingredient-info p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   HOW IT WORKS SECTION - TIMELINE DESIGN
   ============================================ */

.how-it-works-section {
  padding: 50px 0 40px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-mint);
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 550px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 24px;
  position: relative;
}

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

.step-item .step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-mint);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.35);
  position: relative;
  z-index: 2;
}

.step-line {
  width: 3px;
  flex: 1;
  background: linear-gradient(180deg, #f97316 0%, rgba(13, 148, 136, 0.2) 100%);
  margin: 8px 0;
  border-radius: 2px;
}

.step-item:last-child .step-line {
  display: none;
}

.step-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-content:hover {
  box-shadow: 0 12px 35px rgba(13, 148, 136, 0.12);
  transform: translateX(6px);
  border-color: rgba(13, 148, 136, 0.2);
}

.step-icon {
  display: inline-block;
  font-size: 36px;
  margin-bottom: 12px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   HOW IT WORKS - HORIZONTAL LAYOUT
   ============================================ */
.steps-horizontal {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 50px;
  position: relative;
}

.step-horizontal-item {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-horizontal-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-mint);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
  position: relative;
  z-index: 2;
}

.step-horizontal-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.step-horizontal-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 10px;
}

.step-horizontal-item p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(124, 58, 237, 0.3) 100%);
  z-index: 1;
}

/* ============================================
   HOW IT WORKS - CARDS LAYOUT
   ============================================ */
.steps-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.step-card-item {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.step-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.step-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step-card-number {
  width: 44px;
  height: 44px;
  background: var(--gradient-mint);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.step-card-icon {
  font-size: 36px;
}

.step-card-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 10px;
}

.step-card-item p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Responsive for horizontal layout */
@media (max-width: 900px) {
  .steps-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .step-horizontal-item {
    max-width: 400px;
  }
  
  .step-connector {
    display: none;
  }
}

/* ============================================
   ABOUT PRODUCT SECTION - Text Left, Image Right
   ============================================ */

.about-product-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.about-product-grid.image-left {
  direction: rtl;
}

.about-product-grid.image-left > * {
  direction: ltr;
}

.about-product-content {
  padding: 20px 0;
}

.about-product-text {
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
}

.about-product-text p {
  margin-bottom: 18px;
}

.about-product-text ul,
.about-product-text ol {
  margin: 18px 0;
  padding-left: 28px;
}

.about-product-text li {
  margin-bottom: 10px;
}

.about-product-text strong {
  color: #0f172a;
  font-weight: 600;
}

.about-product-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-product-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.about-product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
}

/* Animated Overlays for Product Image */
.about-product-image .image-overlay-effect {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
}

/* Glow Effect */
.about-product-image.overlay-glow .image-overlay-effect {
  background: radial-gradient(circle at center, var(--color-primary) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(30px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.2; transform: scale(0.95); }
  50% { opacity: 0.4; transform: scale(1.05); }
}

/* Pulse Effect */
.about-product-image.overlay-pulse::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 3px solid var(--color-primary);
  border-radius: 28px;
  opacity: 0;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 0; }
}

/* Float Effect */
.about-product-image.overlay-float img {
  animation: floatUpDown 4s ease-in-out infinite;
}

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

/* Shine Effect */
.about-product-image.overlay-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  z-index: 3;
  animation: shineMove 3s ease-in-out infinite;
}

@keyframes shineMove {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

/* ============================================
   RECOMMENDED FOR SECTION - Beautiful Gradient Cards
   ============================================ */

.recommended-for-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-title-centered {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin: 0 0 50px;
  position: relative;
}

.section-title-centered::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: 16px auto 0;
  border-radius: 2px;
}

.recommended-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.recommended-for-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  border-radius: 20px;
  padding: 3px;
  transition: all 0.4s ease;
}

.recommended-for-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.recommended-for-card:hover::before {
  opacity: 1;
}

.recommended-for-card:hover {
  transform: translateY(-6px);
}

.recommended-for-card-inner {
  background: white;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.recommended-for-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.1) 0%, rgba(var(--color-secondary-rgb), 0.1) 100%);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.recommended-for-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recommended-for-card:hover .recommended-for-icon::before {
  opacity: 0.15;
}

.recommended-for-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.recommended-for-icon svg {
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1;
}

.recommended-for-content {
  text-align: center;
}

.recommended-for-title {
  font-size: 19px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 10px;
}

.recommended-for-desc {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   HOW TO TAKE SECTION - 3 Horizontal Steps with Fixed 200x200 Icons
   ============================================ */

.how-to-take-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.how-to-take-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.how-to-take-step {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.how-to-take-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.how-to-take-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.how-to-take-icon {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 24px;
  color: var(--color-primary);
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.how-to-take-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.how-to-take-step:hover .how-to-take-icon::before {
  opacity: 0.1;
}

.how-to-take-icon img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.how-to-take-icon svg {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 1;
}

.how-to-take-icon .step-number {
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.how-to-take-title {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 12px;
}

.how-to-take-desc {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .about-product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-product-grid.image-left {
    direction: ltr;
  }
  
  .about-product-image-wrapper {
    order: -1;
  }
  
  .about-product-image img {
    max-width: 300px;
  }
  
  .about-product-text {
    text-align: center;
  }
  
  .section-title-centered {
    font-size: 26px;
  }
  
  .section-title-centered::after {
    width: 60px;
    margin: 12px auto 0;
  }
  
  .recommended-for-grid {
    grid-template-columns: 1fr;
  }
  
  .how-to-take-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .how-to-take-step {
    padding: 24px;
  }
  
  .how-to-take-icon {
    width: 160px;
    height: 160px;
    font-size: 60px;
  }
  
  .how-to-take-icon img {
    width: 160px;
    height: 160px;
  }
  
  .how-to-take-icon .step-number {
    font-size: 56px;
  }
}

/* ============================================
   RICH CONTENT (Legacy support)
   ============================================ */

.rich-content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--color-text-secondary);
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
  color: var(--color-text);
  margin-top: 40px;
  margin-bottom: 20px;
}

.rich-content h2 { font-size: 28px; }
.rich-content h3 { font-size: 24px; }
.rich-content h4 { font-size: 20px; }

.rich-content p {
  margin-bottom: 20px;
}

.rich-content ul,
.rich-content ol {
  margin-bottom: 20px;
  padding-left: 28px;
}

.rich-content li {
  margin-bottom: 12px;
}

.rich-content img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
}

.rich-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 20px 24px;
  margin: 24px 0;
  background: var(--color-bg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
  padding: 50px 0 40px;
  background: var(--color-bg);
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.review-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.review-card::after {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: rgba(13, 148, 136, 0.1);
  line-height: 1;
}

.review-card:hover {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.12);
  transform: translateY(-6px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f97316;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.review-avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-mint);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.review-meta {
  flex: 1;
}

.review-author {
  font-weight: 600;
  font-size: 17px;
  color: var(--color-text);
}

.review-location {
  font-size: 13px;
  color: var(--color-text-muted);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-success);
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.review-date {
  font-size: 13px;
  color: var(--color-text-light);
}

.review-rating {
  margin-bottom: 14px;
}

.star {
  color: var(--color-accent);
  font-size: 18px;
}

.star.empty {
  color: var(--color-border);
}

.review-text {
  line-height: 1.7;
  color: var(--color-text-secondary);
  font-size: 15px;
}

.review-text strong {
  color: var(--color-text);
}

/* Testimonial quote style */
.review-card.quote-style {
  position: relative;
  padding-top: 48px;
}

.review-card.quote-style::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
}

/* ============================================
   ORDER SECTION MODERN - SPLIT LAYOUT
   ============================================ */

.order-section-modern {
  padding: 80px 0 70px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.order-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #7c3aed 50%, #06b6d4 100%);
}

.order-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left: Product Side */
.order-product-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: linear-gradient(145deg, rgba(248,250,252,0.8) 0%, rgba(241,245,249,0.8) 100%);
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.05);
}

.order-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.order-section-label {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.order-section-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #0f172a;
}

.order-section-subtitle {
  font-size: 19px;
  color: #64748b;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
}

.order-product-showcase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,250,252,0.8) 100%);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}

.order-product-showcase img {
  display: block;
  max-width: 280px;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
  animation: floatProduct 4s ease-in-out infinite;
}

.order-product-details {
  margin-bottom: 32px;
}

.order-product-details h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.product-brand {
  font-size: 14px;
  color: #64748b;
  display: block;
  margin-bottom: 16px;
}

.product-price-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.price-was {
  font-size: 20px;
  color: #94a3b8;
  text-decoration: line-through;
}

.price-now {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-primary);
}

.price-save {
  padding: 6px 14px;
  background: linear-gradient(135deg, #f59e0b 0%, #f59e0b 100%);
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
}

.stock-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  margin: 16px 0;
}

.stock-indicator.in-stock {
  color: #f59e0b;
}

.stock-dot {
  width: 10px;
  height: 10px;
  background: #f59e0b;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.order-guarantees {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #f59e0b 100%);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Right: Form Side - Larger Centered Form */
.order-form-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-form-card {
  padding: 48px;
  border-radius: 28px;
  width: 100%;
  background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  min-height: 100%;
}

.order-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.order-form-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.order-form-header p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

/* ============================================
   ORDER FORM
   ============================================ */

.order-form {
  padding: 32px;
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.order-form h2 {
  font-size: 26px;
  margin-bottom: 8px;
  text-align: center;
}

.order-form .form-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  font-family: var(--font-primary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  background: var(--color-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
}

.form-price-summary {
  padding: 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  text-align: center;
}

.form-price-summary .original-price {
  color: var(--color-text-muted);
  margin-bottom: 4px;
  font-size: 14px;
}

.form-price-summary .final-price {
  font-size: 24px;
}

.form-price-summary .final-price strong {
  color: var(--color-primary);
}

.form-disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 16px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: 50px 0 40px;
  background: var(--color-bg);
}

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

.faq-item {
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: rgba(13, 148, 136, 0.3);
  transform: translateX(4px);
}

.faq-item.open {
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.1);
  border-color: #f97316;
  background: white;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all var(--transition-fast);
  margin: 0;
}

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

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: #f97316;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question {
  background: var(--color-bg-alt);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer > div {
  padding: 0 24px 24px;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

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

.final-cta-section {
  padding: 60px 0;
  background: var(--gradient-mint);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.final-cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.final-cta-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.final-cta-section p {
  font-size: 20px;
  margin-bottom: 36px;
  opacity: 0.95;
}

.final-cta-section .btn {
  background: white;
  color: #f97316;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.final-cta-section .btn:hover {
  background: #f0fdfa;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

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

.site-footer {
  padding: 60px 0 30px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: white;
  border: none;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-mint);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(13, 148, 136, 0.2);
}

.footer-brand .logo {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-mint);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all var(--transition-fast);
  position: relative;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-mint);
  transition: width var(--transition);
}

.footer-nav a:hover {
  color: #2dd4bf;
  text-decoration: none;
}

.footer-nav a:hover::after {
  width: 100%;
}

.disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 1.8;
}

/* ============================================
   STICKY CTA
   ============================================ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.sticky-cta .btn {
  width: 100%;
  padding: 16px;
  font-size: 17px;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 28px;
  background: var(--color-bg-dark);
  color: white;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1001;
  box-shadow: var(--shadow-lg);
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  background: var(--color-success);
}

.toast.error {
  background: var(--color-danger);
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
  margin-bottom: 24px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li::after {
  content: '/';
  margin-left: 8px;
  color: var(--color-text-muted);
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.breadcrumbs li:last-child span {
  color: var(--color-text);
  font-weight: 500;
}

/* ============================================
   MARKETPLACE PAGE
   ============================================ */

.marketplace-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.marketplace-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-mint);
}

.marketplace-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

.marketplace-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-text);
}

.marketplace-hero h1 .gradient-text {
  background: var(--gradient-mint);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marketplace-desc {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 600px;
}

.pharmacies-section {
  padding: 60px 0;
}

.pharmacies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.pharmacy-card {
  display: block;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition);
}

.pharmacy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
  text-decoration: none;
}

.pharmacy-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pharmacy-info {
  padding: 24px;
}

.pharmacy-name {
  font-size: 20px;
  margin-bottom: 8px;
}

.pharmacy-address {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.pharmacy-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.rating-text {
  font-weight: 600;
}

.reviews-count {
  color: var(--color-text-muted);
}

.no-pharmacies {
  text-align: center;
  color: var(--color-text-muted);
  padding: 60px;
  font-size: 18px;
}

/* ============================================
   PHARMACY PAGE
   ============================================ */

.pharmacy-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.pharmacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-forest);
}

.pharmacy-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

.pharmacy-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-text);
}

.pharmacy-hero h1 .gradient-text {
  background: var(--gradient-forest);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pharmacy-address,
.pharmacy-phone {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--color-text-secondary);
}

.pharmacy-phone a {
  color: var(--color-primary);
}

.pharmacy-description,
.pharmacy-content {
  padding: 60px 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
  padding: 80px 0 50px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-mint);
}

.contact-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 600px;
}

.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--color-text);
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(6px);
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.1);
}

.contact-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-details p {
  margin: 0;
  font-size: 16px;
  color: var(--color-text);
}

.contact-details a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-cta-section .order-form-card {
  position: sticky;
  top: 100px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-cta-section .order-form-card {
    position: static;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
  padding: 60px 0;
}

.legal-page h1 {
  font-size: 40px;
  margin-bottom: 32px;
}

.legal-content {
  line-height: 1.9;
  color: var(--color-text-secondary);
}

.legal-content h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--color-text);
}

.legal-content p {
  margin-bottom: 16px;
}

/* ============================================
   BRIDGE PAGE
   ============================================ */

.bridge-section {
  padding: 100px 0;
  text-align: center;
}

.bridge-section h1 {
  font-size: 40px;
  margin-bottom: 24px;
}

.bridge-content {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: left;
  color: var(--color-text-secondary);
}

/* ============================================
   CONFIRMATION PAGE
   ============================================ */

.confirmation-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background: var(--color-bg-alt);
}

.confirmation-card {
  max-width: 520px;
  padding: 48px;
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.success-icon {
  width: 88px;
  height: 88px;
  background: var(--color-success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin: 0 auto 28px;
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-card h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.confirmation-card > p {
  color: var(--color-text-secondary);
  margin-bottom: 28px;
  font-size: 17px;
}

.order-details {
  text-align: left;
  padding: 24px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}

.order-details p {
  font-weight: 600;
  margin-bottom: 16px;
}

.order-details ol {
  margin: 0;
  padding-left: 24px;
}

.order-details li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

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

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }
  
  .desktop-only {
    display: none !important;
  }
  
  .sticky-cta.mobile-only {
    display: block !important;
  }
  
  body {
    padding-bottom: 80px;
  }
}

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

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
  .offer-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .offer-box {
    position: static;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .ingredient-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .ingredient-item:nth-child(even) {
    direction: ltr;
  }
  
  .order-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  /* Hero Modern Mobile */
  .hero-modern {
    padding: 50px 0 60px;
    min-height: auto;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  .hero-features {
    align-items: center;
  }
  
  .hero-trust-row {
    justify-content: center;
  }
  
  .hero-form-card {
    padding: 24px;
    border-radius: 20px;
  }
  
  .form-product-image img {
    max-width: 140px;
    max-height: 140px;
  }
  
  .form-product-name {
    font-size: 20px;
  }
  
  .price-current {
    font-size: 28px;
  }
  
  .floating-shape {
    display: none;
  }
  
  .floating-orb {
    display: none;
  }
  
  /* Order Section Modern Mobile */
  .order-section-modern {
    padding: 60px 0;
  }
  
  .order-grid-modern {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .order-product-side {
    padding-right: 0;
    text-align: center;
  }
  
  .order-section-title {
    font-size: 32px;
  }
  
  .order-product-showcase {
    padding: 24px;
  }
  
  .order-product-showcase img {
    max-width: 200px;
    max-height: 200px;
  }
  
  .product-price-block {
    justify-content: center;
  }
  
  .stock-indicator {
    justify-content: center;
    width: 100%;
  }
  
  .order-guarantees {
    align-items: center;
  }
  
  .order-form-side {
    justify-content: center;
  }
  
  .order-form-card {
    padding: 28px;
    border-radius: 20px;
    max-width: 100%;
  }
  
  .order-form-header h3 {
    font-size: 22px;
  }
  
  .offer-hero h1,
  .hero-content h1 {
    font-size: 36px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
  
  .final-cta-section h2 {
    font-size: 32px;
  }
  
  .final-cta-section p {
    font-size: 17px;
  }
  
  .reviews-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .offer-hero h1,
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-subtitle,
  .offer-hero-subtitle {
    font-size: 16px;
  }
  
  .btn-lg,
  .btn-xl {
    padding: 16px 28px;
    font-size: 16px;
  }
  
  .offer-box-body {
    padding: 20px;
  }
  
  .order-form,
  .offer-block {
    padding: 24px;
  }
  
  .benefit-card {
    padding: 24px;
  }
  
  .review-card {
    padding: 20px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .sticky-cta,
  .modal,
  .site-header,
  .nav-cta,
  .final-cta-section {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: black;
    background: white;
  }
  
  .offer-hero,
  .hero-section {
    background: white;
  }
  
  a {
    color: black;
  }
}

/* ============================================
   AFFILIATE FORMS PRO STYLE (AFP)
   Inspired by affiliate-forms-pro WordPress plugin
   ============================================ */

.afp-form-wrapper {
  max-width: 420px;
  margin: 0;
}

.afp-form-container {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

/* Form Header with Discount Badge */
.afp-form-header {
  background: var(--color-primary-gradient);
  padding: 14px 20px;
  text-align: center;
}

.afp-discount-badge {
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Form Body */
.afp-form-body {
  padding: 24px;
}

.afp-product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.afp-product-image img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.afp-product-name {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 8px;
  color: var(--color-text);
}

/* Price Header (after product name) */
.afp-price-header {
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.afp-price-header .afp-old-price {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-right: 10px;
}

.afp-price-header .afp-current-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Benefits List */
.afp-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.afp-benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.afp-benefit-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-success);
}

/* Stock Counter */
.afp-stock-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fef3cd;
  border: 1px solid #ffc107;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 13px;
  color: #856404;
}

.afp-stock-icon {
  font-size: 16px;
}

/* Form Fields */
.afp-form {
  margin: 0;
}

.afp-form-group {
  margin-bottom: 12px;
}

.afp-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-primary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  background: var(--color-bg);
  outline: none;
}

.afp-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.afp-input::placeholder {
  color: var(--color-text-light);
}

/* Price Display */
.afp-price-display {
  text-align: center;
  padding: 16px 0;
  margin-bottom: 12px;
}

.afp-old-price {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-right: 10px;
}

.afp-current-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Submit Button */
.afp-submit-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.afp-btn-gradient {
  background: var(--color-primary-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.35);
}

.afp-btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
}

.afp-btn-solid {
  background: var(--color-primary);
  color: white;
}

.afp-btn-solid:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

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

.afp-btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.afp-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Trust Row */
.afp-trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
}

.afp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.afp-trust-icon {
  width: 20px;
  height: 20px;
  color: var(--color-success);
}

/* AFP Theme Variations */
.afp-theme-dark {
  background: #1a1a2e;
  color: white;
}

.afp-theme-dark .afp-product-name {
  color: white;
}

.afp-theme-dark .afp-benefits-list li {
  color: rgba(255, 255, 255, 0.8);
}

.afp-theme-dark .afp-input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.afp-theme-dark .afp-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.afp-theme-dark .afp-trust-item {
  color: rgba(255, 255, 255, 0.6);
}

.afp-theme-light {
  background: white;
  border: 1px solid var(--color-border);
}

.afp-theme-light .afp-form-header {
  background: var(--color-bg-alt);
}

.afp-theme-light .afp-discount-badge {
  color: var(--color-primary);
}

/* Modern Form Theme */
.afp-theme-modern {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.afp-theme-modern .afp-form-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 16px;
}

.afp-theme-modern .afp-discount-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 8px 20px;
  color: white;
  font-weight: 600;
}

.afp-theme-modern .afp-form-body {
  padding: 32px;
}

.afp-theme-modern .afp-product-name {
  font-size: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.afp-theme-modern .afp-price-header .afp-current-price {
  color: #667eea;
}

.afp-theme-modern .afp-input {
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  padding: 16px 20px;
}

.afp-theme-modern .afp-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.afp-theme-modern .afp-btn-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 16px;
  letter-spacing: 1px;
}

.afp-theme-modern .afp-btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Glassmorphism Form Theme */
.afp-theme-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.afp-theme-glass .afp-form-header {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.afp-theme-glass .afp-discount-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  border-radius: 30px;
  padding: 10px 24px;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.afp-theme-glass .afp-form-body {
  padding: 28px;
}

.afp-theme-glass .afp-input {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
}

.afp-theme-glass .afp-input:focus {
  background: white;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.afp-theme-glass .afp-btn-gradient {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
}

/* Minimal Form Theme */
.afp-theme-minimal {
  background: #fafafa;
  border: none;
  border-radius: 16px;
}

.afp-theme-minimal .afp-form-header {
  display: none;
}

.afp-theme-minimal .afp-form-body {
  padding: 40px 32px;
}

.afp-theme-minimal .afp-product-name {
  font-size: 26px;
  font-weight: 800;
  color: #111;
}

.afp-theme-minimal .afp-price-header {
  border-bottom: none;
  padding-bottom: 8px;
}

.afp-theme-minimal .afp-price-header .afp-current-price {
  font-size: 32px;
  color: #111;
}

.afp-theme-minimal .afp-benefits-list {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.afp-theme-minimal .afp-input {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px 18px;
}

.afp-theme-minimal .afp-input:focus {
  border-color: #111;
  box-shadow: none;
}

.afp-theme-minimal .afp-submit-btn {
  background: #111;
  border-radius: 10px;
  font-size: 15px;
  letter-spacing: 2px;
}

.afp-theme-minimal .afp-submit-btn:hover {
  background: #333;
}

/* Neon Form Theme */
.afp-theme-neon {
  background: #0f0f23;
  border: 2px solid #00d4ff;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2), inset 0 0 30px rgba(0, 212, 255, 0.05);
}

.afp-theme-neon .afp-form-header {
  background: transparent;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.afp-theme-neon .afp-discount-badge {
  background: transparent;
  border: 1px solid #00d4ff;
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.afp-theme-neon .afp-form-body {
  padding: 30px;
}

.afp-theme-neon .afp-product-name {
  color: white;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.afp-theme-neon .afp-price-header .afp-current-price {
  color: #00d4ff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.afp-theme-neon .afp-price-header .afp-old-price {
  color: rgba(255, 255, 255, 0.4);
}

.afp-theme-neon .afp-price-header {
  border-bottom-color: rgba(0, 212, 255, 0.2);
}

.afp-theme-neon .afp-benefits-list li {
  color: rgba(255, 255, 255, 0.8);
}

.afp-theme-neon .afp-benefit-icon {
  color: #00ff88;
}

.afp-theme-neon .afp-stock-counter {
  background: rgba(255, 193, 7, 0.1);
  border-color: #ffc107;
  color: #ffc107;
}

.afp-theme-neon .afp-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: white;
  border-radius: 10px;
}

.afp-theme-neon .afp-input:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.afp-theme-neon .afp-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.afp-theme-neon .afp-submit-btn {
  background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
  color: #0f0f23;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.afp-theme-neon .afp-submit-btn:hover {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.afp-theme-neon .afp-trust-item {
  color: rgba(255, 255, 255, 0.6);
}

.afp-theme-neon .afp-trust-icon {
  color: #00ff88;
}

/* Gallery for Pharmacy Images */
.pharmacy-gallery {
  padding: 40px 0;
  background: var(--color-bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.gallery-image:hover {
  transform: scale(1.03);
}

/* Icon rendering */
.icon-emoji {
  display: inline-block;
  font-size: 1.5em;
  line-height: 1;
}

.icon-svg {
  display: inline-flex;
  width: 1.5em;
  height: 1.5em;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
}

/* Logo image in header */
.logo-img {
  max-height: 40px;
  width: auto;
}

/* Responsive AFP */
@media (max-width: 768px) {
  .afp-form-wrapper {
    max-width: 100%;
  }
  
  .afp-trust-row {
    gap: 16px;
  }
  
  .afp-trust-item {
    font-size: 10px;
  }
  
  .afp-current-price {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .afp-form-body {
    padding: 20px;
  }
  
  .afp-submit-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ============================================
   AFP COUNTRY CODE STYLES
   ============================================ */

.afp-has-country-code {
  display: flex;
  align-items: stretch;
}

.afp-country-code {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-weight: 600;
  color: var(--color-text);
  font-size: 15px;
  white-space: nowrap;
}

.afp-input-with-prefix {
  border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
}

/* AFP Data Protection */
.afp-data-protection {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  font-size: 12px;
}

.afp-lock-icon {
  width: 14px;
  height: 14px;
  color: var(--color-success);
}

/* ============================================
   MODAL - GLASSMORPHISM MODERN STYLE
   ============================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active,
.modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(15, 23, 42, 0.7) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: overlayFadeIn 0.3s ease-out;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.05) inset;
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  color: var(--color-text);
  font-size: 22px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  transform: rotate(90deg) scale(1.1);
}

.modal-discount-header {
  background: var(--gradient-mint);
  padding: 16px 24px;
  text-align: center;
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
}

.modal-discount-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

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

.discount-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.modal-header {
  padding: 28px 28px 16px;
  text-align: center;
}

.modal-product-image {
  margin-bottom: 20px;
  padding: 24px;
  background: linear-gradient(135deg, #fff7ed 0%, #ecfdf5 100%);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-product-image img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  animation: floatProduct 4s ease-in-out infinite;
}

.modal-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.modal-body {
  padding: 0 24px 24px;
}

.modal-content-text {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.modal-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.modal-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.modal-benefits .benefit-check {
  color: var(--color-success);
  font-weight: 700;
}

.modal-price {
  text-align: center;
  margin-bottom: 20px;
}

.modal-old-price {
  display: inline-block;
  font-size: 18px;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-right: 12px;
}

.modal-current-price {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
}

.modal-form {
  margin-bottom: 16px;
}

.modal-form .form-group {
  margin-bottom: 12px;
}

.modal-form .form-group.has-country-code {
  display: flex;
}

.modal-form .country-code-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-weight: 600;
  color: var(--color-text);
  font-size: 14px;
}

.modal-form .has-country-code input {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.modal-form input[type="text"],
.modal-form input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}

.modal-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.modal-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--color-primary-gradient);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
}

.modal-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.modal-trust span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.modal-data-protection {
  text-align: center;
  margin-top: 12px;
  color: var(--color-text-light);
  font-size: 11px;
}

.modal-data-protection span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Modal responsive */
@media (max-width: 480px) {
  .modal {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }
  
  .modal-content {
    max-width: 100%;
    max-height: none;
    overflow-y: visible;
    border-radius: var(--radius-lg);
  }
  
  .modal-header {
    padding: 16px 16px 10px;
  }
  
  .modal-body {
    padding: 0 16px 16px;
  }
  
  .modal-header h2 {
    font-size: 17px;
  }
  
  .modal-product-image img {
    max-width: 80px;
    max-height: 80px;
  }
  
  .modal-current-price {
    font-size: 24px;
  }
  
  .modal-old-price {
    font-size: 14px;
  }
  
  .modal-benefits {
    display: none;
  }
  
  .modal-price {
    padding: 12px;
    margin-bottom: 12px;
  }
  
  .modal-form input {
    padding: 12px 14px;
    font-size: 15px;
  }
  
  .modal-form .btn {
    padding: 14px;
    font-size: 15px;
  }
  
  .modal-trust {
    display: none;
  }
  
  .modal-data-protection {
    font-size: 10px;
    margin-top: 8px;
  }
}

/* ============================================
   INGREDIENTS & OTHER SECTIONS
   ============================================ */

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.ingredient-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.ingredient-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.ingredient-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.ingredient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ingredient-item:hover .ingredient-image img {
  transform: scale(1.05);
}

.ingredient-content {
  padding: 24px;
}

.ingredient-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.ingredient-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* How It Works - Mobile Timeline */
@media (max-width: 768px) {
  .steps-timeline {
    padding-left: 8px;
  }
  
  .step-item {
    gap: 16px;
  }
  
  .step-item .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .step-content {
    padding: 20px;
  }
  
  .step-icon {
    font-size: 28px;
  }
}

/* Certificates Section */
.certificates-section {
  padding: 60px 0;
  background: var(--color-bg-cream);
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.certificate-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.certificate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.certificate-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certificate-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.certificate-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.certificate-card p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Doctor Recommendation Section */
.doctor-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f5f9fc 0%, #e8f4f8 100%);
}

.doctor-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .doctor-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 24px;
  }
}

.doctor-photo {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--color-bg-cream);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-content {
  flex: 1;
}

.doctor-quote {
  position: relative;
  margin-bottom: 24px;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  opacity: 0.2;
}

.doctor-quote blockquote {
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
  padding-left: 30px;
}

.doctor-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.doctor-title {
  font-size: 15px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.doctor-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.doctor-credentials li {
  font-size: 12px;
  background: var(--color-bg-cream);
  color: var(--color-text-secondary);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Comparison Table Section */
.comparison-section {
  padding: 60px 0;
  background: white;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
  background: var(--color-bg-dark);
}

.comparison-table th {
  padding: 18px 20px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}

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

.comparison-table th.our-product {
  background: var(--color-primary);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
}

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

.comparison-table tbody tr:hover {
  background: var(--color-bg-alt);
}

.comparison-table td {
  padding: 16px 20px;
  font-size: 14px;
  text-align: center;
  color: var(--color-text-secondary);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--color-text);
}

.comparison-table td.positive {
  color: var(--color-success);
  font-weight: 600;
  font-size: 18px;
}

.comparison-table td.negative {
  color: var(--color-danger);
  font-weight: 600;
  font-size: 18px;
}

.comparison-table td.our-product {
  background: rgba(13, 148, 136, 0.05);
}

/* Phone input mask indicator */
.phone-input-masked {
  letter-spacing: 1px;
}

/* Lazy loading styles */
[data-lazy="true"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-lazy="true"].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CENTERED PRODUCT IMAGE IN FORM
   ============================================ */
.afp-product-image-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
}

.afp-product-image-centered img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* ============================================
   IMPROVED FORM PRICE DISPLAY
   ============================================ */
.form-price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  margin-bottom: 16px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.form-old-price {
  font-size: 18px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.form-current-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

/* ============================================
   PHONE INPUT WITH COUNTRY CODE
   ============================================ */
.phone-input-wrapper {
  display: flex;
  align-items: stretch;
}

.country-code-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--color-bg-dark);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  white-space: nowrap;
}

.phone-input-wrapper input.with-prefix {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  flex: 1;
}

.has-country-code .form-group {
  margin-bottom: 12px;
}

/* ============================================
   COUNTERFEIT WARNING SECTION (MARKETPLACE)
   ============================================ */
.counterfeit-warning-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
}

.warning-card {
  background: white;
  border: 2px solid #dc3545;
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.1);
}

.warning-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
}

.warning-headline {
  font-size: 28px;
  font-weight: 700;
  color: #dc3545;
  margin: 0 0 16px;
}

.warning-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.counterfeit-risks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.risk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff5f5;
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: #721c24;
}

.risk-icon {
  font-size: 18px;
}

/* Official Benefits Card */
.official-benefits-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, #8b1429 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
  text-align: center;
}

.official-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 30px;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: white;
  color: var(--color-primary);
  border-radius: 50%;
  font-weight: 700;
}

.official-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: left;
}

.official-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  font-size: 14px;
}

.official-benefits .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Marketplace warning list */
.marketplace-warning-list .section-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--color-text-secondary);
  font-size: 18px;
}

.pharmacy-card-warning {
  pointer-events: none;
  opacity: 0.7;
  border: 2px dashed #dc3545;
}

.pharmacy-card-warning:hover {
  transform: none;
  box-shadow: none;
}

.warning-label {
  margin-top: 12px;
}

.warning-badge-small {
  display: inline-block;
  padding: 6px 12px;
  background: #fff5f5;
  color: #dc3545;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
}

/* ============================================
   PHARMACY WARNING SECTION
   ============================================ */
.pharmacy-warning-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
}

.warning-card-pharmacy {
  max-width: 700px;
  margin: 0 auto 40px;
}

.warning-icon-large {
  font-size: 80px;
  display: block;
  margin-bottom: 24px;
}

.pharmacy-warning-reasons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 30px auto 0;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fff5f5;
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: #721c24;
  text-align: left;
}

.reason-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Official Purchase Card */
.official-purchase-card {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.official-purchase-card h3 {
  text-align: center;
  font-size: 24px;
  margin: 0 0 30px;
  color: white;
}

.official-benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.official-benefits-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  font-size: 14px;
}

.official-benefits-list .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: white;
  color: #28a745;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Order wrapper centered */
.order-wrapper-centered {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-wrapper-centered .afp-form-wrapper {
  margin: 0;
  width: 100%;
}

.order-wrapper-centered .afp-form-container {
  width: 100%;
}

/* Order section centered layout */
.order-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-section .section-title {
  text-align: center;
  width: 100%;
  margin-bottom: 32px;
}

.order-section .section-title h2 {
  margin: 0 0 8px;
}

/* Note: Old warning-page-layout, alert-hero, benefits-box, platforms styles removed - replaced by silo-* classes */

/* ============================================
   SILO PAGE HERO - SPLIT LAYOUT WITH IMAGE
   ============================================ */
.silo-hero {
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 50%, #fff7ed 100%);
  position: relative;
  overflow: hidden;
}

.silo-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b 0%, #ef4444 100%);
}

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

.silo-hero-image {
  position: relative;
}

.silo-hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.silo-hero-image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.silo-hero-content h1 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.silo-warning-box {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #ef4444;
  border-radius: 16px;
  padding: 24px;
}

.silo-warning-box h2 {
  font-size: 20px;
  font-weight: 700;
  color: #dc2626;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.silo-warning-box p {
  font-size: 15px;
  color: #7f1d1d;
  margin: 0;
  line-height: 1.6;
}

.silo-custom-text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.silo-description {
  margin: 8px 0;
}

.silo-description p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.silo-custom-content {
  margin: 16px 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

.silo-custom-content p {
  margin-bottom: 12px;
}

.silo-custom-content ul,
.silo-custom-content ol {
  margin: 12px 0;
  padding-left: 24px;
}

.silo-custom-content li {
  margin-bottom: 6px;
}

.silo-rich-content {
  margin: 16px 0;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
}

.silo-rich-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

.silo-rich-content p:last-child {
  margin-bottom: 0;
}

.silo-rich-content ul,
.silo-rich-content ol {
  margin: 12px 0;
  padding-left: 24px;
}

.silo-rich-content li {
  margin-bottom: 6px;
  color: #475569;
}

.silo-rich-content strong {
  color: #0f172a;
  font-weight: 600;
}

/* ============================================
   SILO PAGE SECTIONS
   ============================================ */
.silo-section {
  padding: 50px 0;
}

.silo-section-light {
  background: #f8fafc;
}

.silo-section-white {
  background: #ffffff;
}

.silo-section-title {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 36px;
  text-align: center;
  position: relative;
}

.silo-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Order Benefits Grid */
.silo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.silo-benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.silo-benefit-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.silo-benefit-text {
  font-size: 15px;
  font-weight: 500;
  color: #334155;
  line-height: 1.4;
}

/* How to Order Steps */
.silo-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.silo-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.silo-step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-mint);
  color: white;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.silo-step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
}

.silo-step-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Order Form Section */
.silo-order-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
}

.silo-order-section::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #7c3aed 100%);
  margin-bottom: 60px;
}

.silo-order-header {
  margin-bottom: 40px;
  text-align: center;
}

.silo-order-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 14px;
}

.silo-order-header h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: 14px auto 0;
  border-radius: 2px;
}

.silo-order-header p {
  font-size: 18px;
  color: #64748b;
  margin: 0;
  max-width: 450px;
  margin: 0 auto;
}

.silo-order-form {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

.silo-order-form .afp-form-wrapper {
  margin: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  overflow: visible;
}

.silo-order-form .afp-form-container {
  border-radius: 20px;
  overflow: hidden;
}

/* Cross-linking Section */
.silo-crosslinks {
  padding: 50px 0;
  background: #f1f5f9;
}

.silo-crosslinks-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 32px;
  text-align: center;
}

.silo-crosslinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.silo-crosslink-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.silo-crosslink-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.silo-crosslink-card.current {
  border: 2px solid var(--color-primary);
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.silo-crosslink-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.silo-crosslink-card:hover .silo-crosslink-image {
  opacity: 1;
}

.silo-crosslink-name {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  text-align: center;
}

.silo-crosslink-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.silo-crosslink-badge.warning {
  background: #fef2f2;
  color: #dc2626;
}

.silo-crosslink-badge.current {
  background: #f0fdfa;
  color: #f97316;
}

/* Responsive */
@media (max-width: 768px) {
  .silo-hero {
    padding: 30px 0 40px;
  }
  
  .silo-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .silo-hero-image {
    order: -1;
  }
  
  .silo-hero-image img {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .silo-hero-content h1 {
    font-size: 28px;
  }
  
  .silo-warning-box {
    padding: 20px;
  }
  
  .silo-warning-box h2 {
    font-size: 18px;
  }
  
  .silo-section-title {
    font-size: 24px;
  }
  
  .silo-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .silo-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .silo-crosslinks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .silo-order-header h2 {
    font-size: 26px;
  }
}

/* ============================================
   LIVE ORDER COUNTER - COMPACT MEDICAL DESIGN
   ============================================ */
.live-order-counter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 6px 12px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
}

.live-order-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #f59e0b 0%, #f59e0b 100%);
  color: white;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-order-counter.animated {
  animation: counterGlow 3s ease-in-out infinite;
}

@keyframes counterGlow {
  0%, 100% { 
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  }
  50% { 
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.45);
  }
}

.live-order-counter.pulse {
  animation: counterPulse 0.5s ease;
}

@keyframes counterPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.counter-icon {
  font-size: 18px;
  animation: iconBounce 2s ease-in-out infinite;
}

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

.counter-number {
  font-size: 18px;
  font-weight: 800;
  min-width: 30px;
  text-align: center;
}

.counter-text {
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.will-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Specific element animations */
.benefit-card.will-animate {
  transform: translateY(40px) scale(0.95);
}

.benefit-card.animated {
  transform: translateY(0) scale(1);
}

.step-item.will-animate {
  opacity: 0;
  transform: translateX(-30px);
}

.step-item.animated {
  opacity: 1;
  transform: translateX(0);
}

.review-card.will-animate {
  transform: translateY(30px) rotate(-2deg);
}

.review-card.animated {
  transform: translateY(0) rotate(0);
}

.faq-item.will-animate {
  transform: translateX(20px);
}

.faq-item.animated {
  transform: translateX(0);
}

/* Section title animation */
.section-title.will-animate,
.section-header.will-animate {
  transform: translateY(20px);
}

.section-title.animated,
.section-header.animated {
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Tablet and below */
@media (max-width: 992px) {
  .offer-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .offer-hero-form {
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .offer-hero h1 {
    font-size: 40px;
  }
  
  .offer-hero-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Offer Hero Mobile */
  .offer-hero {
    padding: 40px 0 50px;
  }
  
  .offer-hero h1 {
    font-size: 32px;
  }
  
  .offer-hero-subtitle {
    font-size: 17px;
  }
  
  .offer-hero-badge {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .live-order-counter-wrapper {
    padding: 12px 16px;
  }
  
  .live-order-counter {
    padding: 10px 18px;
    font-size: 12px;
    gap: 8px;
  }
  
  .counter-icon {
    font-size: 16px;
  }
  
  .counter-number {
    font-size: 16px;
    min-width: 25px;
  }
  
  /* Warning cards */
  .warning-card {
    padding: 30px 20px;
  }
  
  .warning-headline {
    font-size: 22px;
  }
  
  .warning-icon {
    font-size: 48px;
  }
  
  .counterfeit-risks {
    flex-direction: column;
    gap: 12px;
  }
  
  .risk-item {
    justify-content: center;
  }
  
  .official-benefits-card {
    padding: 30px 20px;
  }
  
  .official-benefits {
    grid-template-columns: 1fr;
  }
  
  .pharmacy-warning-section {
    padding: 40px 0;
  }
  
  .warning-icon-large {
    font-size: 60px;
  }
  
  .official-purchase-card {
    padding: 30px 20px;
  }
  
  .official-purchase-card h3 {
    font-size: 20px;
  }
  
  .official-benefits-list {
    grid-template-columns: 1fr;
  }
  
  .afp-product-image-centered img {
    max-width: 140px;
    max-height: 140px;
  }
  
  /* Ingredients mobile */
  .ingredients-grid-new {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .ingredient-card {
    padding: 16px;
    gap: 16px;
  }
  
  .ingredient-image-fixed {
    width: 80px;
    height: 80px;
  }
  
  .ingredient-info h3 {
    font-size: 16px;
  }
  
  .ingredient-info p {
    font-size: 13px;
  }
  
  /* Trust badges hero mobile */
  .trust-badges-hero {
    gap: 8px;
  }
  
  .trust-badge-hero {
    padding: 6px 10px;
    font-size: 12px;
  }
  
  /* Order section */
  .order-section-fullwidth {
    padding: 50px 0;
  }
  
  .order-section-title {
    font-size: 28px;
  }
  
  .order-section-subtitle {
    font-size: 16px;
  }
  
  /* Note: Old warning page mobile styles removed - replaced by silo-* responsive styles */
}
