/* ==========================================================================
   ProDentim High-Converting Affiliate Theme Stylesheet
   ========================================================================== */

:root {
  --primary: #007953;
  --primary-dark: #005a3e;
  --primary-light: #e6f7f0;
  --primary-gradient: linear-gradient(135deg, #007953 0%, #00a536 100%);
  --secondary: #0ea5e9;
  --accent-gold: #f59e0b;
  --accent-gold-dark: #d97706;
  --accent-red: #c92a2a;
  --dark-slate: #1e293b;
  --text-main: #334155;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 35px -10px rgba(0, 121, 83, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Typography Helpers & Semantic Heading Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Plus Jakarta Sans', sans-serif;
  color: var(--dark-slate);
  font-weight: 700;
  line-height: 1.25;
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-gold { color: #fef08a !important; }
.text-green { color: var(--primary) !important; }
.text-sm { font-size: 0.9rem; color: var(--text-muted); }
.mt-5 { margin-top: 2rem; }

/* Section Common Layout */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  text-align: center;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background: var(--dark-slate);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.urgency-tag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.top-bar-timer {
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: #fef08a;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Site Header & Nav (Clean Logo without icons or subtext)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

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

.brand-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #007953;
  letter-spacing: -0.02em;
  line-height: 1;
  font-family: 'Quicksand', sans-serif;
}

.brand-sup {
  font-size: 0.75rem;
  color: var(--text-muted);
  vertical-align: super;
  margin-left: 2px;
}

.main-nav {
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-align: center;
}

.btn-nav {
  background: var(--primary-gradient);
  color: white;
  padding: 10px 24px;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 121, 83, 0.3);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 121, 83, 0.4);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--dark-slate);
  padding: 6px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 3.5rem 0 4.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #e6f7f0 100%);
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcfce7;
  color: #15803d;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid #bbf7d0;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.18;
  max-width: 900px;
  margin-bottom: 1.25rem;
}

.highlight-text {
  background: linear-gradient(120deg, #007953, #00a536);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 820px;
  margin-bottom: 2.5rem;
}

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

.hero-media-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid #d1fae5;
  text-align: center;
}

.hero-product-img {
  max-height: 380px;
  margin: 0 auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.hero-product-img:hover {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  z-index: 2;
}

.badge-top-right {
  top: -15px;
  right: -15px;
  border-left: 4px solid var(--primary);
}

.badge-bottom-left {
  bottom: -15px;
  left: -15px;
  border-left: 4px solid var(--accent-gold);
}

.badge-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-slate);
  line-height: 1.1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  display: flex;
  gap: 2px;
}

.rating-val {
  font-weight: 800;
  color: var(--dark-slate);
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
}

.feature-icon {
  width: 26px;
  height: 26px;
  background: #dcfce7;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-cta-box {
  margin-top: 10px;
}

.btn-hero {
  background: var(--primary-gradient);
  color: white;
  padding: 16px 36px;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 121, 83, 0.4);
  width: 100%;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 121, 83, 0.5);
}

.hero-guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 10px;
}

.hero-guarantee-note i {
  color: var(--primary);
}

/* Trust Bar */
.trust-bar {
  margin-top: 3.5rem;
  background: white;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--dark-slate);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
}

.trust-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ==========================================================================
   Scientific Discovery Section
   ========================================================================== */
.science-section {
  background: #ffffff;
}

.science-discovery-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 3.5rem;
}

.science-doc-col {
  text-align: center;
}

.doctor-img {
  max-height: 280px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.science-accent-tag {
  display: inline-block;
  color: var(--accent-red);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.science-headline {
  font-size: 1.55rem;
  line-height: 1.35;
  color: var(--dark-slate);
  margin-bottom: 8px;
}

.science-sub-accent {
  color: var(--accent-red);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.science-body-text {
  font-size: 1.02rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 16px;
}

.science-ref-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
}

.science-ref-link:hover {
  color: var(--primary);
}

/* Strawberry Showcase Callout */
.strawberry-showcase-box {
  background: #fff5f5;
  border: 2px solid #fed7d7;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.strawberry-lead {
  font-size: 1.25rem;
  color: var(--dark-slate);
  margin-bottom: 8px;
}

.showcase-logo {
  max-width: 240px;
  margin-bottom: 16px;
}

.strawberry-desc {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 20px;
}

.strawberry-pill-note {
  background: var(--primary-gradient);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.strawberry-img-col {
  text-align: center;
}

.strawberry-product-img {
  max-height: 290px;
  margin: 0 auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

/* ==========================================================================
   Ingredients Section
   ========================================================================== */
.ingredients-section {
  background: #f8fafc;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
  margin-bottom: 3.5rem;
}

.ingredient-card {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  transition: var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.featured-ing-card {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.ing-image-wrapper {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-real-img {
  max-height: 125px;
  margin: 0 auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
}

.ing-header-bar {
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  box-shadow: 0 4px 10px rgba(0, 121, 83, 0.2);
}

.ing-header-bar h3 {
  color: white;
  font-size: 1.15rem;
  margin: 0;
}

.triangle-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  padding-top: 6px;
}

.triangle-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--dark-slate);
  font-weight: 500;
}

.triangle-check-list li i {
  color: var(--primary);
  font-size: 0.65rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Blend Showcase Box */
.blend-showcase-box {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 36px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: center;
}

.blend-img-col {
  text-align: center;
}

.blend-img {
  max-height: 200px;
  margin: 0 auto;
}

.blend-title {
  font-size: 1.45rem;
  color: var(--dark-slate);
  margin-bottom: 1rem;
}

.blend-list li {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-section {
  background: #ffffff;
}

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

.benefit-box {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.benefit-box:hover {
  transform: translateY(-4px);
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.b-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.benefit-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.benefit-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
  background: #f8fafc;
}

.review-stats-card {
  background: white;
  padding: 30px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.stat-left {
  text-align: center;
  border-right: 1px solid var(--border-color);
  padding-right: 20px;
}

.huge-rating {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark-slate);
  line-height: 1;
}

.stat-stars {
  color: #f59e0b;
  font-size: 1.3rem;
  margin: 8px 0;
}

.stat-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.stat-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: var(--radius-full);
}

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

.review-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

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

.featured-review {
  border-left: 4px solid var(--primary);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.reviewer-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #dcfce7;
}

.reviewer-name {
  font-weight: 700;
  color: var(--dark-slate);
}

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

.verified-badge {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.review-stars {
  color: #f59e0b;
  font-size: 0.9rem;
}

.review-heading {
  font-size: 1.05rem;
  color: var(--dark-slate);
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.6;
}

/* ==========================================================================
   Bonuses Section
   ========================================================================== */
.bonuses-section {
  background: linear-gradient(135deg, #005a3e 0%, #007953 100%);
  color: white;
}

.bonus-header-box {
  margin-bottom: 3.5rem;
}

.bonus-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.bonus-title {
  font-size: 2.3rem;
  margin-bottom: 0.75rem;
}

.bonus-sub {
  font-size: 1.1rem;
  opacity: 0.9;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 3rem;
}

.bonus-card {
  background: white;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  transition: var(--transition);
}

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

.bonus-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.bonus-num {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.bonus-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.free-pill {
  color: #15803d;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 800;
}

.bonus-img-wrapper {
  padding: 10px 0;
}

.bonus-img {
  max-height: 180px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.bonus-book-title {
  font-size: 1.2rem;
  color: var(--dark-slate);
}

.bonus-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.shipping-perk-banner {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: left;
}

.shipping-badge-img {
  max-width: 90px;
}

.shipping-text h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.shipping-text p {
  color: #fef08a;
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   Pricing & Packages Section
   ========================================================================== */
.pricing-section {
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 2rem;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

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

.best-value-card {
  border: 3px solid #007953;
  box-shadow: 0 15px 35px rgba(0, 121, 83, 0.2);
  transform: scale(1.03);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  z-index: 2;
}

.best-value-card:hover {
  transform: scale(1.05) translateY(-6px);
}

.best-value-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #0f172a;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}

.card-tier-tag {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin: 0 auto;
}

.tier-basic { background: #f1f5f9; color: var(--text-muted); }
.tier-popular { background: #e0f2fe; color: #0369a1; }
.tier-best { background: #dcfce7; color: var(--primary); }

.pricing-bottle-count h3 {
  font-size: 1.5rem;
  color: var(--dark-slate);
}

.supply-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-product-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-product-img img {
  max-height: 160px;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-per-bottle {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--dark-slate);
  font-weight: 800;
  line-height: 1;
}

.currency { font-size: 1.5rem; margin-top: 6px; }
.amount { font-size: 3.5rem; }
.period { font-size: 1rem; color: var(--text-muted); align-self: flex-end; margin-bottom: 8px; margin-left: 4px; }

.price-savings {
  font-size: 0.9rem;
  font-weight: 700;
  color: #15803d;
}

.gold-text {
  color: #b45309;
}

.pricing-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  font-size: 0.9rem;
}

.pricing-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-perks li i {
  color: var(--primary);
  font-size: 1rem;
}

.perk-disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

.perk-disabled i {
  color: #94a3b8 !important;
}

.perk-highlight {
  color: var(--primary-dark);
  font-weight: 700;
}

.pricing-total {
  font-size: 1.1rem;
  color: var(--dark-slate);
}

.btn-pricing {
  background: var(--dark-slate);
  color: white;
  padding: 14px 24px;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
  width: 100%;
}

.btn-pricing:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.btn-pricing-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  padding: 16px 24px;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
  width: 100%;
}

.btn-pricing-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.5);
}

.pulse-btn {
  animation: buttonPulse 2.2s infinite;
}

@keyframes buttonPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.card-guarantee-note {
  margin-top: 6px;
}

.cc-icons {
  max-width: 180px;
  margin: 0 auto;
}

/* ==========================================================================
   Guarantee Section
   ========================================================================== */
.guarantee-section {
  background: #f8fafc;
}

.guarantee-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid #bbf7d0;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
}

.guarantee-badge-img {
  max-height: 180px;
  margin: 0 auto;
}

.guarantee-content-col h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.guarantee-content-col p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.guarantee-checklist {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.guarantee-checklist span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.certifications-strip {
  margin-top: 2.5rem;
  text-align: center;
}

.certifications-img {
  max-width: 500px;
  margin: 0 auto;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: #ffffff;
}

.faq-container {
  max-width: 860px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 2.5rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: white;
  transition: var(--transition);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-slate);
  margin: 0;
  transition: var(--transition);
}

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

.faq-arrow {
  color: var(--primary);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #f8fafc;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 24px 22px;
}

.faq-answer p {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.65;
}

/* ==========================================================================
   Legal & Regulatory Modals (US Govt / FTC Compliance)
   ========================================================================== */
.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.legal-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-box {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: modalScale 0.25s ease;
}

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

.legal-modal-header {
  padding: 20px 24px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-modal-header h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0;
}

.legal-modal-close {
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.legal-modal-close:hover {
  color: var(--dark-slate);
}

.legal-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
}

.legal-modal-body h4 {
  color: var(--dark-slate);
  margin: 18px 0 8px;
  font-size: 1.1rem;
}

.legal-modal-body p {
  margin-bottom: 14px;
}

.legal-modal-body ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.affiliate-compliance-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* ==========================================================================
   Mobile Drawer Menu
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: white;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: var(--shadow-xl);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.drawer-close {
  font-size: 1.4rem;
  color: var(--text-main);
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-slate);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.drawer-link:hover {
  color: var(--primary);
}

.drawer-footer {
  margin-top: auto;
}

.btn-block {
  width: 100%;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Footer Section (Compliance Ready)
   ========================================================================== */
.site-footer {
  background: #090e17;
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.2fr;
  gap: 36px;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-name {
  color: white;
  margin-bottom: 12px;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-cert-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #34d399;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  transition: var(--transition);
  cursor: pointer;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 4px;
}

.footer-trust-img {
  margin-top: 14px;
  max-width: 220px;
  opacity: 0.85;
}

.footer-disclaimers {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.8rem;
  line-height: 1.65;
  color: #64748b;
}

.footer-disclaimers h5 {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-legal-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-legal-links a {
  cursor: pointer;
}

.footer-legal-links a:hover {
  color: white;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .best-value-card { transform: scale(1); }
  .best-value-card:hover { transform: translateY(-6px); }
  .science-discovery-card { grid-template-columns: 1fr; text-align: center; }
  .strawberry-showcase-box { grid-template-columns: 1fr; text-align: center; }
  .blend-showcase-box { grid-template-columns: 1fr; text-align: center; }
  .shipping-perk-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .top-bar-content { justify-content: center; text-align: center; }
  .top-bar-timer { display: none; }
  .hero-title { font-size: 1.85rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: 1.75rem; }
  .guarantee-box { grid-template-columns: 1fr; text-align: center; }
  .guarantee-checklist { justify-content: center; }
  .review-stats-card { grid-template-columns: 1fr; }
  .stat-left { border-right: none; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
