/* TheraWolf Affiliate - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Roboto:wght@400;500;700&display=swap');

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

:root {
  --orange-primary: #e14903;
  --orange-hover: #c63100;
  --orange-border: #974202;
  --orange-dark: #bd2e00;
  --orange-accent: #E16203;
  --bg-white: #FFFFFF;
  --bg-cream: #F9E0CD;
  --bg-cream-light: #FDF7F2;
  --bg-beige: #FDF5E5;
  --bg-beige-warm: #FBEFE5;
  --bg-gray-light: #F6F2F2;
  --bg-gray: #F0F0F0;
  --bg-gray-subtle: #F9F9F9;
  --bg-dark: #0a0a0a;
  --text-primary: #191516;
  --text-secondary: #474747;
  --text-gray: #666666;
  --text-muted: #6B5F5F;
  --text-light: #747474;
  --text-dark-red: #45050c;
  --text-white: #ffffff;
  --separator: #EDD7CF;
  --separator-light: #E9E9E9;
  --border-gray: #F0F0F0;
  --green-success: #53A179;
  --rating-active: #DBAF9F;
  --rating-passive: #F8F1ED;
  --initial-bubble: #2B2852;
  --font-body: 'Open Sans', Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== DISCOUNT TIMER BAR ========== */
.discount-bar {
  background: linear-gradient(90deg, #FDDA82 0%, #FF8122 100%);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.discount-bar span {
  font-variant-numeric: tabular-nums;
}

.timer-digit {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 1px;
  font-size: 13px;
  display: inline-block;
  min-width: 24px;
  text-align: center;
}

.timer-separator {
  margin: 0 2px;
  font-weight: 700;
}

/* ========== SCROLLING BAR ========== */
.scrolling-bar {
  background: var(--bg-dark);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  position: sticky;
  top: 33px;
  z-index: 99;
}

.scrolling-bar-inner {
  display: inline-flex;
  animation: scroll-left 30s linear infinite;
}

.scrolling-bar-item {
  color: var(--text-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0 40px;
  text-transform: uppercase;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== NAVIGATION ========== */
.main-nav {
  background: var(--bg-white);
  padding: 12px 0;
  border-bottom: 1px solid var(--separator-light);
  position: sticky;
  top: 65px;
  z-index: 98;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange-primary);
}

.btn-shop-now {
  background: var(--orange-primary);
  color: var(--text-white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  transition: background 0.2s;
  border: 1px solid var(--orange-border);
}

.btn-shop-now:hover {
  background: var(--orange-hover);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-primary);
}

/* ========== HERO SECTION ========== */
.hero-section {
  background: linear-gradient(180deg, #FFF 0%, #F9E0CD 100%);
  padding: 40px 0 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Gallery */
.hero-gallery {
  position: relative;
}

.hero-main-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-cream-light);
}

.hero-main-image img,
.hero-main-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.hero-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.hero-thumb.active,
.hero-thumb:hover {
  border-color: var(--orange-primary);
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-thumb-video {
  position: relative;
}

.hero-thumb-video::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-checklist-item .check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-divider {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--separator);
}

.hero-divider::before { left: 0; }
.hero-divider::after { right: 0; }

/* Bundles */
.bundles-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bundle-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 2px solid var(--border-gray);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  background: var(--bg-white);
}

.bundle-card:hover,
.bundle-card.selected {
  border-color: var(--orange-primary);
  background: #FFF8F5;
}

.bundle-card.best-seller {
  border-color: var(--orange-primary);
}

.bundle-card.best-value {
  border-color: var(--orange-accent);
}

.bundle-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--orange-primary);
  color: var(--text-white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bundle-badge.best-value {
  background: var(--orange-accent);
}

.bundle-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-card.selected .bundle-radio {
  border-color: var(--orange-primary);
}

.bundle-card.selected .bundle-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--orange-primary);
  border-radius: 50%;
}

.bundle-image {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

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

.bundle-info {
  flex: 1;
}

.bundle-qty {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.bundle-desc {
  font-size: 11px;
  color: var(--text-light);
}

.bundle-pricing {
  text-align: right;
  flex-shrink: 0;
}

.bundle-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.bundle-price-sub {
  font-size: 11px;
  color: var(--text-light);
}

.bundle-original-price {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
}

/* CTA Button */
.cta-button {
  display: block;
  width: 100%;
  background: var(--orange-primary);
  color: var(--text-white);
  text-align: center;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--orange-border);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.cta-button:hover {
  background: var(--orange-hover);
}

.low-stock-notice {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  padding: 4px 0;
}

.low-stock-notice strong {
  color: #c00;
}

/* Reviews Badge */
.hero-reviews-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 8px 0;
}

.hero-reviews-stars {
  color: var(--orange-primary);
  font-size: 14px;
}

.hero-reviews-text {
  font-size: 12px;
  color: var(--text-secondary);
}

.hero-reviews-text strong {
  color: var(--text-primary);
}

/* Shipping badges */
.hero-shipping-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
}

.shipping-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
}

.shipping-badge img {
  width: 20px;
  height: 20px;
}

/* Banner Quote */
.hero-banner-quote {
  background: var(--bg-dark);
  color: var(--text-white);
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.hero-banner-quote span {
  font-weight: 800;
}

/* ========== PAIN AREAS SECTION ========== */
.pain-areas-section {
  background: var(--bg-white);
  padding: 60px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 40px;
}

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

.pain-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.pain-icon {
  width: 60px;
  height: 60px;
  padding: 10px;
}

.pain-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== SCIENTIFIC BACKING ========== */
.science-section {
  background: var(--bg-cream-light);
  padding: 40px 0;
  text-align: center;
}

.science-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.science-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.science-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.science-logos img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(30%);
}

/* ========== COMPOSITION / INGREDIENTS ========== */
.composition-section {
  background: linear-gradient(180deg, #F9E0CD 0%, #FFF 100%);
  padding: 60px 0;
}

.composition-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.composition-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* Badges */
.composition-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.comp-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--separator);
}

.comp-badge img {
  width: 20px;
  height: 20px;
}

/* Ingredient Cards */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.ingredient-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--separator-light);
}

.ingredient-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.ingredient-card-body {
  padding: 16px;
}

.ingredient-card-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ingredient-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Full ingredient list */
.full-ingredient-list {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--separator-light);
}

.full-ingredient-list h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.full-ingredient-list p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: var(--bg-white);
  padding: 60px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-images img {
  width: 100%;
  border-radius: 12px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.about-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-disclaimer {
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 16px;
}

/* ========== TIMELINE SECTION ========== */
.timeline-section {
  background: linear-gradient(180deg, #FFF 0%, #F9E0CD 100%);
  padding: 60px 0;
  text-align: center;
}

.timeline-image {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.timeline-image img {
  width: 100%;
}

.timeline-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 30px auto 0;
}

.timeline-stage {
  text-align: center;
}

.timeline-stage-period {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.timeline-stage-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-stage-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-disclaimer {
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
  max-width: 700px;
  margin: 20px auto 0;
}

/* ========== COMPARISON TABLE ========== */
.comparison-section {
  background: var(--bg-cream-light);
  padding: 60px 0;
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.comparison-column {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--separator-light);
}

.comparison-column.therawolf {
  border: 2px solid var(--orange-primary);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--separator-light);
}

.comparison-header img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.comparison-header h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.comparison-item .icon-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========== HOW TO USE ========== */
.howto-section {
  background: var(--bg-white);
  padding: 60px 0;
}

.howto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.howto-video {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 500px;
  background: var(--bg-gray-light);
}

.howto-video video,
.howto-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.howto-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.howto-content > p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.howto-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.howto-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.howto-step-number {
  width: 32px;
  height: 32px;
  background: var(--orange-primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.howto-step-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 4px;
}

/* ========== SOCIAL PROOF ========== */
.social-proof-section {
  background: var(--bg-cream-light);
  padding: 40px 0;
  overflow: hidden;
}

.social-proof-scroll {
  display: flex;
  gap: 12px;
  animation: scroll-left 40s linear infinite;
}

.social-proof-img {
  width: 200px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.social-proof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== CUSTOMER COMMENTS ========== */
.comments-section {
  background: var(--bg-white);
  padding: 60px 0;
}

.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.comment-card {
  background: var(--bg-white);
  border: 1px solid var(--separator-light);
  border-radius: 12px;
  padding: 16px;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-username {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.comment-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== EXPERT ENDORSEMENT ========== */
.expert-section {
  background: linear-gradient(90deg, #FDF5E5 0%, #FBEFE5 100%);
  padding: 60px 0;
}

.expert-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.expert-image {
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
}

.expert-image img {
  width: 100%;
}

.expert-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.expert-role {
  font-size: 13px;
  color: var(--orange-primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.expert-quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.expert-signature img {
  height: 40px;
  width: auto;
}

.expert-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ========== BENEFITS RIBBON ========== */
.benefits-ribbon {
  background: var(--orange-primary);
  overflow: hidden;
  padding: 12px 0;
}

.benefits-ribbon-inner {
  display: inline-flex;
  animation: scroll-left 25s linear infinite;
  white-space: nowrap;
}

.benefits-ribbon-item {
  color: var(--text-white);
  font-size: 14px;
  font-weight: 700;
  padding: 0 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== REVIEWS SECTION ========== */
.reviews-section {
  background: var(--bg-white);
  padding: 60px 0;
}

.reviews-score {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.reviews-score-big {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.reviews-score-stars {
  color: var(--orange-primary);
  font-size: 24px;
  margin: 8px 0;
}

.reviews-score-count {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.reviews-score-recommend {
  font-size: 13px;
  color: var(--text-light);
}

/* Star breakdown */
.reviews-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 400px;
  margin: 20px auto;
}

.breakdown-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.breakdown-label {
  width: 50px;
  text-align: right;
}

.breakdown-bar {
  flex: 1;
  height: 8px;
  background: var(--rating-passive);
  border-radius: 4px;
  overflow: hidden;
}

.breakdown-bar-fill {
  height: 100%;
  background: var(--rating-active);
  border-radius: 4px;
}

.breakdown-count {
  width: 40px;
  text-align: left;
}

/* Quality metrics */
.reviews-metrics {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.metric {
  text-align: center;
}

.metric-label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.metric-bar {
  width: 80px;
  height: 6px;
  background: var(--rating-passive);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto 4px;
}

.metric-bar-fill {
  height: 100%;
  background: var(--rating-active);
  border-radius: 3px;
}

.metric-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Individual Reviews */
.reviews-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  border: 1px solid var(--separator-light);
  border-radius: 12px;
  padding: 20px;
  background: var(--bg-white);
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--initial-bubble);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.review-verified {
  font-size: 11px;
  color: var(--green-success);
  font-weight: 600;
}

.review-stars {
  color: var(--orange-primary);
  font-size: 14px;
}

.review-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

.review-image {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  max-width: 200px;
}

.review-image img {
  width: 100%;
}

.review-date {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 8px;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background: var(--bg-cream-light);
  padding: 60px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--separator-light);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-gray-subtle);
}

.faq-arrow {
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}

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

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

.faq-item.open .faq-answer {
  padding: 0 20px 16px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== GUARANTEE SECTION ========== */
.guarantee-section {
  background: var(--bg-white);
  padding: 60px 0;
}

.guarantee-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(90deg, #FDF5E5 0%, #FBEFE5 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.guarantee-icon {
  width: 120px;
  flex-shrink: 0;
}

.guarantee-icon img {
  width: 100%;
}

.guarantee-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.guarantee-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-primary);
  margin-bottom: 12px;
}

.guarantee-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== BOTTOM BANNER ========== */
.bottom-banner {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.bottom-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
}

.bottom-banner-content {
  position: relative;
  z-index: 1;
}

.bottom-banner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--text-white);
  margin-bottom: 20px;
}

.bottom-banner .cta-button {
  max-width: 400px;
  margin: 0 auto;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #f0c8a4;
  color: #0a0a0a;
  padding: 0;
}

/* Newsletter section */
.footer-newsletter-section {
  text-align: center;
  padding: 50px 20px 30px;
  max-width: 600px;
  margin: 0 auto;
}

.footer-newsletter-section h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #878787;
  border-right: none;
  border-radius: 6px 0 0 6px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
}

.newsletter-form input::placeholder {
  color: #878787;
}

.newsletter-form button {
  background: var(--orange-primary);
  color: var(--text-white);
  border: 1px solid var(--orange-border);
  padding: 14px 24px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--orange-hover);
}

.newsletter-subtext {
  font-size: 14px;
  color: #0a0a0a;
  margin-top: 10px;
}

/* Footer trust badges */
.footer-badges {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 20px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-badge img {
  width: 40px;
  height: 40px;
  opacity: 0.85;
}

.footer-badge-title {
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.footer-badge-subtitle {
  font-size: 12px;
  color: #0a0a0a;
}

/* Footer main grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  border-top: 1px solid #878787;
}

.footer-brand p {
  font-size: 14px;
  color: #0a0a0a;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-col a {
  font-size: 14px;
  color: #0a0a0a;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange-primary);
}

/* Customer care section */
.footer-customer-care {
  padding: 20px 20px 10px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #878787;
}

.footer-customer-care h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-care-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-care-links a {
  font-size: 14px;
  color: #0a0a0a;
  transition: color 0.2s;
}

.footer-care-links a:hover {
  color: var(--orange-primary);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #333;
}

.footer-contact {
  font-size: 13px;
  color: #0a0a0a;
  margin-bottom: 8px;
  line-height: 1.8;
}

.footer-copyright {
  font-size: 12px;
  color: #0a0a0a;
}

/* ========== FLOATING CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 200;
  display: none;
  text-align: center;
}

.floating-cta.visible {
  display: block;
}

.floating-cta .cta-button {
  max-width: 500px;
  margin: 0 auto;
  font-size: 14px;
  padding: 12px 20px;
}

.floating-cta .low-stock-notice {
  margin-top: 4px;
  font-size: 11px;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding: 40px 0 80px;
  min-height: 60vh;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.legal-page h2 {
  font-family: 'Roboto', var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-page p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-page ul li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 4px;
}

.legal-page a {
  color: var(--orange-primary);
  text-decoration: underline;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.legal-page table th,
.legal-page table td {
  border: 1px solid var(--separator-light);
  padding: 10px 12px;
  font-size: 13px;
  text-align: left;
  vertical-align: top;
}

.legal-page table th {
  background: var(--bg-gray-light);
  font-weight: 700;
  color: var(--text-primary);
}

.legal-page table td {
  color: var(--text-secondary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-gallery {
    max-width: 500px;
    margin: 0 auto;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 16px 20px;
    border-bottom: 1px solid var(--separator-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .section-title,
  .composition-title {
    font-size: 24px;
  }

  .hero-title {
    font-size: 26px;
  }

  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-inner,
  .howto-inner {
    grid-template-columns: 1fr;
  }

  .howto-video {
    max-height: 400px;
  }

  .expert-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .expert-image {
    margin: 0 auto;
  }

  .timeline-stages {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-badges {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .reviews-metrics {
    flex-wrap: wrap;
    gap: 20px;
  }

  .floating-cta {
    display: none !important;
  }

  .floating-cta.visible {
    display: block !important;
  }
}

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

  .hero-shipping-badges {
    flex-wrap: wrap;
    gap: 12px;
  }

  .science-logos {
    gap: 16px;
  }

  .science-logos img {
    height: 28px;
  }

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

  .composition-badges {
    gap: 8px;
  }

  .comp-badge {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* Footer benefits bar (HIGHLY RATED, 24/7 SUPPORT, PREMIUM, WORLDWIDE) -- center on mobile */
@media screen and (max-width: 743px) {
  ._benefits_1j3z3_1 {
    justify-items: center;
  }
  ._benefits_1j3z3_1 ._desktopSeparator_1j3z3_81 {
    display: none;
  }
  ._benefits_1j3z3_1 ._item_1j3z3_16 {
    padding: 0 !important;
    border-right: none !important;
  }
}
