/* ==================== ROOT VARIABLES ==================== */
:root {
  --primary-color: #4A90E2;        /* Blue from moon/heart icon */
  --primary-dark: #2E5C8A;         /* Darker blue for depth */
  --accent-color: #5BA3D9;         /* Light blue accent */
  --accent-hover: #3D7AB8;         /* Hover state blue */
  --dark-bg: #2B3E50;              /* Dark slate background */
  --text-color: #333333;           /* Keep existing text color */
  --heading-color: #1a1a1a;        /* Keep existing heading color */
  --light-bg: #F0F7FF;             /* Very light blue background */
}
/* ==================== RESET & BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: var(--text-color);
  background-color: white;
  line-height: 1.7;
  font-size: 18px;
  letter-spacing: 0.6px;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--heading-color);
  line-height: 1.3;
}

h1 {
  font-size: 42px;
  letter-spacing: 1px;
}

h2 {
  font-size: 36px;
  letter-spacing: 0.9px;
  margin-bottom: 20px;
}

h2 + p {
  margin-top: 25px;
}

h3 {
  font-size: 28px;
  letter-spacing: 0.8px;
}

h3 + p {
  margin-top: 18px;
}

h4 {
  font-size: 22px;
  letter-spacing: 0.7px;
}

p {
  letter-spacing: 0.6px;
  line-height: 1.8;
}

strong {
  font-weight: 600;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ==================== HEADER STYLES ==================== */
.header {
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 32px;
  margin: 0;
  letter-spacing: 1.5px;
}

.glow-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.glow-link h2 {
  transition: text-shadow 0.3s ease;
  cursor: pointer;
}

.glow-link:hover h2 {
  color: var(--primary-dark);
}

.newHeadBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 18px;
  padding: 0 12px;
  letter-spacing: 0.6px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.order-button {
  background-color: var(--accent-color);
  color: #000;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  letter-spacing: 0.7px;
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

.order-button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  font-weight: 900;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16V4H2V2h3a1 1 0 0 1 1 1v12h12.438l2-8H8V5h13.72a1 1 0 0 1 .97 1.243l-2.5 10a1 1 0 0 1-.97.757H5a1 1 0 0 1-1-1zm2 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm12 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/></svg>');
  margin-left: 8px;
}

.order-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
}

/* Mobile Menu */
.mobile-menu-icon {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 32px;
  cursor: pointer;
  display: none;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: var(--dark-bg);
  color: #ffffff;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-sidebar.open {
  right: 0;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  padding: 10px 20px;
  letter-spacing: 0.6px;
  font-weight: 500;
}

.close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 250;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-button {
  margin: 0 !important;
}

/* ==================== HERO SECTION STYLES ==================== */
.product-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
  background-color: var(--primary-color);
  text-align: center;
  margin-top: 0;
  padding: 15px 20px;
  letter-spacing: 1px;
  line-height: 1.4;
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 30px 20px;
  max-width: 1600px;
  margin: 0 auto;
  background-color: white;
}

.product-image {
  flex: 0 0 auto;
  max-width: 450px;
  width: 100%;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
}

.product-main-image {
  position: relative;
  width: 100%;
}

.product-main-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
}

.product-info {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
  padding: 10px;
}

.product-info h2 {
  margin-top: 20px;
  font-size: 38px;
  color: var(--heading-color);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
}

.ingredients-highlight {
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.8px;
}

.product-info h3 {
  font-size: 26px;
  margin: 20px 0 15px 0;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.product-description {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-color);
  font-size: 18px;
  letter-spacing: 0.6px;
}

.benefits-lists {
  margin-bottom: 25px;
  padding-left: 25px;
  list-style: none;
}

.benefits-lists li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 5px;
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  letter-spacing: 0.6px;
  line-height: 1.7;
}

.benefits-lists li::before {
  content: none !important;
  display: none !important;
}

/* CTA Button Styles */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: #000;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0.7px;
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

.cta-button::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16V4H2V2h3a1 1 0 0 1 1 1v12h12.438l2-8H8V5h13.72a1 1 0 0 1 .97 1.243l-2.5 10a1 1 0 0 1-.97.757H5a1 1 0 0 1-1-1zm2 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm12 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/></svg>');
  margin-left: 8px;
}

.cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: white;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0.7px;
  box-shadow: 0 4px 15px rgba(43, 122, 120, 0.3);
}

.secondary-button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z"/></svg>');
  margin-left: 8px;
}

.secondary-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 122, 120, 0.4);
}

/* Save Badge on Product Image */
.save-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #E5B722 100%);
  color: #1a202c;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(244, 196, 48, 0.5);
  text-align: center;
  animation: pulse-badge 2s infinite;
  border: 3px solid #ffffff;
  z-index: 10;
  letter-spacing: 1.2px;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(244, 196, 48, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(244, 196, 48, 0.7);
  }
}

/* Animated Stats Container - Below Image */
.product-stats {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-box {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  transition: background 0.5s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-box.color-1 {
  background: linear-gradient(135deg, #4FA89D 0%, #3d8a81 100%);
}

.stat-box.color-2 {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
}

.stat-box.color-3 {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.stat-box.color-4 {
  background: linear-gradient(135deg, #5BC4B5 0%, #4FA89D 100%);
}
.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  letter-spacing: 1.2px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Animation for Images */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.product-main-image img {
  animation: float 3s ease-in-out infinite;
}

.save-badge {
  animation: float 3s ease-in-out infinite 0.5s;
}

/* Animated Benefit Badges */
.benefit-badges {
  display: flex;
  gap: 15px;
  margin: 25px 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.benefit-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  transition: all 0.5s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  letter-spacing: 0.6px;
}

.benefit-badge .icon {
  margin-right: 8px;
  font-size: 18px;
}

.badge-color-1 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.badge-color-2 {
  background: linear-gradient(135deg, #3B8A88 0%, var(--primary-color) 100%);
}

.badge-color-3 {
  background: linear-gradient(135deg, var(--accent-color) 0%, #E5B722 100%);
}

.badge-color-4 {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1F5654 100%);
}

.badge-color-5 {
  background: linear-gradient(135deg, #3B8A88 0%, var(--primary-dark) 100%);
}

.badge-color-6 {
  background: linear-gradient(135deg, var(--accent-color) 0%, #D4A50A 100%);
}

/* ==================== CERTIFICATIONS SECTION ==================== */
.certifications {
  background-color: white;
  padding: 0 0 40px 0;
  text-align: center;
  color: var(--text-color);
}

.certifications h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 25px 20px;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.certification-badges {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  padding: 0 20px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(43, 122, 120, 0.2);
}

.badge img {
  width: auto;
  height: auto;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 15px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.badge:hover img {
  transform: scale(1.05);
}

.badge-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-size: 22px;
  margin-top: 10px;
  letter-spacing: 0.8px;
}

.badge-description {
  font-size: 17px;
  text-align: center;
  line-height: 1.7;
  color: var(--text-color);
  margin: 10px 0;
  letter-spacing: 0.6px;
}

/* ==================== PRODUCT DETAILS SECTION ==================== */
.product-details {
  padding: 0 0 40px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  color: var(--text-color);
}

.product-details h2 {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  margin: 0 0 30px 0;
  padding: 25px 20px;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.product-details-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

.product-details-text {
  flex: 1;
  min-width: 300px;
}

.product-details-content p {
  font-size: 18px;
  margin: 15px 0;
  line-height: 1.8;
  color: var(--text-color);
  letter-spacing: 0.6px;
}

.product-details-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.product-details-image img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
  padding: 0 0 40px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  color: var(--text-color);
}

.how-it-works h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 25px 20px;
  font-size: 32px;
  text-transform: none;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.how-it-works-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-it-works-intro {
  margin-bottom: 25px;
  font-style: normal;
  font-size: 18px;
  color: var(--text-color);
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: 1.8;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.how-it-works-step {
  margin-bottom: 15px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-size: 22px;
  display: block;
  letter-spacing: 0.7px;
}

.step-description {
  line-height: 1.8;
  color: var(--text-color);
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0.6px;
}

.step-below-para {
  margin-top: 25px;
  font-size: 24px;
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.8px;
}

.cta-section {
  text-align: center;
  margin-top: 35px;
}

.how-it-works .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: #000;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
  letter-spacing: 0.7px;
}

.how-it-works .cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
}

/* ==================== CUSTOMER REVIEWS SECTION ==================== */
.customer-reviews {
  background-color: white;
  padding: 0 0 40px 0;
  text-align: center;
}

.customer-reviews h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 25px 20px;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.review {
  background-color: white;
  border-radius: 15px;
  border: 1px solid #eee;
  overflow: hidden;
  text-align: left;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.review:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(43, 122, 120, 0.15);
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.verified-badge svg {
  fill: var(--primary-color);
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-image {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 10%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reviewer-image img {
  width: 100%;
  height: auto;
}

.reviewer-info h4 {
  margin: 0;
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.rating {
  display: flex;
  gap: 3px;
  margin-top: 5px;
}

.rating svg {
  fill: var(--accent-color);
  width: 24px;
  height: 24px;
}

.review-text {
  color: #555;
  line-height: 1.8;
  font-size: 17px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.6px;
}

/* ==================== PRICING SECTION ==================== */
.image-grid-section {
  padding: 0;
  background-color: white;
  text-align: center;
  margin-top: 0;
}

.image-grid-section h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0;
  padding: 35px 20px 45px;
  font-size: 34px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.2px;
}

.off-white-background {
  position: relative;
  width: 100%;
  height: 0;
}

.buying-background {
  background: var(--primary-color);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  top: -1px;
}

.g-arrow {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  height: 30px;
  width: 100%;
}

.p-4 {
  padding: 0;
}

.pricing-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px auto 40px;
  padding: 0 20px;
  max-width: 1300px;
  align-items: flex-start;
}

.product-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(43, 122, 120, 0.2);
}

.card-header {
  color: #ffffff;
  padding: 18px 15px;
  font-size: 26px;
  font-weight: 700;
  border-radius: 15px 15px 0 0;
  line-height: 1.3;
  letter-spacing: 1px;
}

.supply-days {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.7px;
}

.header-1x,
.header-3x {
  background-color: var(--primary-color);
  margin-top: 15px;
}

.header-6x {
  background-color: var(--primary-dark);
}

.card-content {
  padding: 30px 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background-color: white;
  border-radius: 0 0 15px 15px;
}

.product-image-new {
  width: 100%;
  max-width: 100%;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}

.price-section {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
}

.current-price {
  font-size: 54px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  letter-spacing: 1.2px;
}

.per-bottle {
  font-size: 20px;
  color: #666;
  margin-left: 10px;
  letter-spacing: 0.6px;
  font-weight: 500;
}

.ebooks {
  background-color: #fff;
  color: var(--primary-color);
  border: 2px dashed var(--primary-color);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.7px;
}

.buy-now-btn {
  background-color: var(--accent-color);
  color: #000;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
  margin-bottom: 20px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1.2px;
}

.buy-now-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(244, 196, 48, 0.4);
}

.total-price {
  font-size: 18px;
  color: var(--text-color);
  margin: 15px 0;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.original-total {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
  font-weight: 400;
  font-size: 16px;
}

.discounted-total {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.payment-methods {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}

.payment-methods img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

/* Best Value Card */
.product-card.best-value {
  background-color: #fffef0;
  border: 3px solid var(--accent-color);
}

.product-card.best-value .card-content {
  background-color: #fffef0;
}

/* ==================== BONUSES SECTION ==================== */
.bonuses-section {
  padding: 0;
  background-color: white;
  color: var(--text-color);
  max-width: 100%;
  margin: 0 auto;
  font-size: 18px;
}

.bonuses-section h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0;
  padding: 25px 20px;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.ebook-bonus-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
  background-color: #fff;
}

.ebook-card {
  flex: 1 1 45%;
  max-width: 500px;
  text-align: center;
  border: 2px solid var(--primary-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(43, 122, 120, 0.15);
  transition: all 0.3s ease;
}

.ebook-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(43, 122, 120, 0.25);
}

.ebook-card img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
}

.ebook-text {
  margin-top: 20px;
  font-size: 16px;
  color: var(--text-color);
  letter-spacing: 0.6px;
}

.ebook-text strong {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.ebook-text p {
  margin-top: 15px;
  line-height: 1.8;
  text-align: left;
  letter-spacing: 0.6px;
}

/* ==================== INGREDIENTS SECTION ==================== */
.ingredients-section {
  padding: 0 0 60px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  color: var(--text-color);
  max-width: 100%;
  margin: 0 auto;
  font-size: 18px;
}

.ingredients-section h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 40px 0;
  padding: 25px 20px;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.ingredients-intro {
  margin: 0 auto 50px auto;
  line-height: 1.8;
  padding: 0 20px;
  max-width: 1200px;
  text-align: center;
  font-size: 18px;
  color: var(--text-color);
  letter-spacing: 0.6px;
}

.ingredients-list {
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ingredient-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(43, 122, 120, 0.2);
  border-color: var(--primary-color);
}

.ingredient-number {
  min-width: 60px;
  min-height: 60px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(43, 122, 120, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.ingredient-item:hover .ingredient-number {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, var(--accent-color) 0%, #E5B722 100%);
}

.ingredient-content {
  flex: 1;
}

.ingredient-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: 0.7px;
}

.ingredient-description {
  margin: 0;
  line-height: 1.8;
  color: #555;
  font-size: 17px;
  letter-spacing: 0.6px;
}

/* ==================== SCIENCE & GUARANTEE SECTION ==================== */
.science-section {
  padding: 40px 0;
  background-color: white;
  text-align: center;
  color: var(--text-color);
  font-size: 18px;
}

.cert-logos {
  background-color: #000;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cert-logos img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.science-heading {
  font-size: 32px;
  font-weight: 700;
  margin: 40px 0 35px 0;
  text-transform: uppercase;
  color: var(--heading-color);
  letter-spacing: 1.2px;
}

.science-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  max-width: 1200px;
  padding: 0 20px;
}

.science-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  text-align: center;
  gap: 15px;
  flex: 1;
  min-width: 250px;
}

.step-number {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(43, 122, 120, 0.3);
  letter-spacing: 0.5px;
}

.step-title {
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  color: var(--heading-color);
  letter-spacing: 0.7px;
}

.step-desc {
  line-height: 1.8;
  margin: 0;
  font-size: 17px;
  color: #555;
  letter-spacing: 0.6px;
}

.step-arrow {
  font-size: 40px;
  font-weight: bold;
  color: var(--primary-color);
  align-self: center;
  margin: 0 10px;
}

.guarantee-block {
  background-color: #ffffff;
  padding: 40px 20px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  flex-wrap: wrap;
  background-color: var(--primary-color);
  border-radius: 15px;
  padding: 40px;
}

.guarantee-badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-badge img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.guarantee-text {
  flex: 1;
  min-width: 300px;
}

.guarantee-text h3 {
  color: white;
  font-size: 28px;
  margin: 0 0 20px 0;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.guarantee-text p {
  margin: 0;
  line-height: 1.8;
  color: white;
  font-size: 17px;
  letter-spacing: 0.6px;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  background-color: white;
  color: var(--text-color);
  padding: 0 0 60px 0;
  text-align: left;
}

.benefits-section h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 40px 0;
  padding: 25px 20px;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-intro {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  text-align: center;
  color: var(--text-color);
  letter-spacing: 0.6px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 18px;
  letter-spacing: 0.6px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: 0.6px;
}

.benefit-desc {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.6px;
}

.checkmark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--primary-color);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
  box-shadow: 0 3px 10px rgba(43, 122, 120, 0.3);
}

.checkmark::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: #fff;
  color: var(--text-color);
  padding: 0;
  font-size: 18px;
}

.faq-heading {
  background-color: var(--primary-color);
  color: #fff;
  margin: 0 0 40px 0;
  padding: 25px 20px;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.faq-questions {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  font-size: 18px;
}

.faq-item {
  padding: 20px 25px;
  border-bottom: 2px solid #e0e0e0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-item:hover {
  background: #f7f7f7;
}

.faq-q {
  font-weight: 600;
  display: block;
  position: relative;
  letter-spacing: 0.6px;
  font-size: 19px;
}

.faq-q::after {
  content: "+";
  float: right;
  font-weight: bold;
  font-size: 28px;
  color: var(--primary-color);
}

.faq-item.open .faq-q::after {
  content: "-";
}

.faq-a {
  margin-top: 15px;
  color: #555;
  font-size: 17px;
  line-height: 1.8;
  display: none;
  letter-spacing: 0.6px;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-banners {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  border: 2px solid var(--primary-dark);
  padding: 30px 35px;
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap;
  border-radius: 15px;
}

.banner-image {
  width: 50%;
  display: flex;
  justify-content: center;
}

.banner-image img {
  width: 80%;
  max-width: 400px;
  height: auto;
}

.banner-content {
  width: 50%;
}

.banner-content h3 {
  margin: 0 0 25px 0;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.max-button-padding {
  padding: 16px 28px;
  font-size: 26px;
  letter-spacing: 0.8px;
}

.faq-answer-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.8;
  font-size: 18px;
}

.faq-answer-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.faq-text-content {
  flex: 1;
  min-width: 300px;
}

.faq-image-content {
  flex: 0 0 auto;
  max-width: 500px;
  width: 100%;
}

.checkout-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(43, 122, 120, 0.2);
  border: 1px solid #e0e0e0;
}

.faq-answer-block h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: var(--primary-color);
  letter-spacing: 0.7px;
}

.answer-subheading {
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 8px;
  letter-spacing: 0.6px;
}

.bottom-banner {
  flex-direction: column;
  text-align: center;
  gap: 15px;
  max-width: none;
  width: 100%;
  margin: 20px 0;
  border: none;
  padding: 0;
}

.bottom-banner h3 {
  background: var(--primary-color);
  color: #fff;
  width: 100%;
  padding: 20px 10px;
  margin: 0;
  font-size: 38px;
  letter-spacing: 1px;
}

.bottom-banner img {
  max-width: 550px;
  width: 100%;
  height: auto;
  padding: 10px;
}

.bottom-banner .regular-price.small {
  font-size: 18px;
  margin: 10px 0 5px 0;
  color: var(--text-color);
  font-weight: 600;
  letter-spacing: 0.6px;
}

.bottom-banner .discounted {
  font-size: 26px;
  color: var(--heading-color);
  margin-bottom: 20px;
  display: block;
  letter-spacing: 0.7px;
  font-weight: 700;
}

/* ==================== FOOTER SECTION ==================== */
.footer-section {
  background: #fff;
  border-top: 2px solid var(--primary-color);
  padding: 30px 20px 50px;
  font-size: 15px;
  color: var(--text-color);
}

.footer-disclaimer {
  padding: 20px;
  margin: 0 auto 20px auto;
}

.footer-disclaimer p {
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 15px;
  text-align: justify;
  color: var(--text-color);
  letter-spacing: 0.5px;
}

.footer-bottom {
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  padding: 30px;
  text-align: center;
  margin: 0 auto;
  background: #f8f9fa;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--primary-color);
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.social-icons a:hover {
  transform: scale(1.1);
  background-color: var(--primary-color);
  color: white;
}

.social-icons i {
  font-size: 18px;
}

.footer-links {
  margin-bottom: 15px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.footer-copy {
  font-size: 15px;
  color: var(--text-color);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ==================== BOTTOM CTA BANNER ==================== */
.bottom-cta-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease;
  border-top: 3px solid var(--accent-color);
}

.bottom-cta-banner.hidden {
  transform: translateY(100%);
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 25px;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.cta-banner-text h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.7px;
}

.cta-banner-text p {
  margin: 0;
  font-size: 15px;
  color: #ffffff;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

.cta-banner-price {
  text-align: center;
}

.cta-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  letter-spacing: 0.7px;
}

.cta-original-price {
  font-size: 13px;
  color: #ccc;
  text-decoration: line-through;
  letter-spacing: 0.5px;
}

.cta-banner-button {
  background-color: var(--accent-color);
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
  letter-spacing: 0.6px;
}

.cta-banner-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 196, 48, 0.6);
}

.cta-banner-button svg {
  width: 18px;
  height: 18px;
}

.cta-banner-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.cta-banner-close:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* ==================== LEGAL PAGES STYLES ==================== */
.legal-page {
  min-height: 100vh;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.legal-page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 50px 20px;
  text-align: center;
  margin: 0;
}

.legal-page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
}

.legal-content {
  padding: 60px 0;
  background-color: #fff;
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content h2 {
  font-size: 30px;
  color: var(--heading-color);
  margin-bottom: 30px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.7px;
}

.legal-content h3 {
  font-size: 26px;
  color: var(--primary-color);
  margin: 40px 0 20px 0;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.6px;
}

.legal-content h4 {
  font-size: 22px;
  color: var(--heading-color);
  margin: 30px 0 15px 0;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.6px;
}

.legal-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
  letter-spacing: 0.6px;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 35px;
}

.legal-content li {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
  letter-spacing: 0.6px;
}

.legal-content strong {
  color: var(--heading-color);
  font-weight: 600;
}

.legal-content em {
  font-style: italic;
  color: var(--primary-color);
}

.legal-highlight {
  background-color: #f8f9fa;
  border-left: 4px solid var(--accent-color);
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
}

.legal-highlight p {
  margin-bottom: 0;
  font-weight: 500;
}

.legal-divider {
  border: none;
  height: 2px;
  background-color: #e9ecef;
  margin: 40px 0;
}

.legal-section {
  margin-bottom: 50px;
}

.legal-subsection {
  margin-bottom: 35px;
}

.contact-info {
  background-color: var(--primary-color);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
}

.contact-info h3 {
  color: var(--accent-color);
  margin-top: 0;
}

.contact-info p {
  color: white;
  margin-bottom: 12px;
  text-align: left;
}

.contact-info a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.effective-date {
  font-style: italic;
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.5px;
}

.legal-navigation {
  margin-top: 50px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  margin-right: 15px;
  margin-bottom: 10px;
  letter-spacing: 0.6px;
}

.legal-back-link:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.legal-nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legal-nav-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.legal-nav-link:hover {
  background-color: var(--primary-color);
  color: white;
}

.legal-nav-link.active {
  background-color: var(--primary-color);
  color: white;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-table th,
.legal-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
  letter-spacing: 0.5px;
}

.legal-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.legal-table tr:hover {
  background-color: #f8f9fa;
}

.legal-notice {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
}

.legal-notice h4 {
  color: #856404;
  margin-top: 0;
}

.legal-notice p {
  color: #856404;
  margin-bottom: 0;
}

.last-updated {
  text-align: right;
  font-style: italic;
  color: #666;
  font-size: 15px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
  letter-spacing: 0.5px;
}

/* ==================== PURCHASE NOTIFICATION POPUP ==================== */
.purchase-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2), 
              0 0 0 1px rgba(28, 39, 52, 0.2);
  padding: 22px 26px;
  min-width: 380px;
  max-width: 440px;
  z-index: 10000;
  opacity: 0;
  transform: translateX(-120%);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-family: 'Poppins', sans-serif;
  border-left: 5px solid var(--primary-color);
}

.purchase-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.purchase-notification-content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.purchase-icon {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(28, 39, 52, 0.2);
  padding: 8px;
}

.purchase-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.purchase-details {
  flex: 1;
  line-height: 1.6;
}

.purchase-header {
  font-size: 16px;
  color: #2d3748;
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.purchase-header strong {
  color: #1a202c;
  font-weight: 700;
}

.purchase-product {
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.purchase-time {
  font-size: 14px;
  color: #718096;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.purchase-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: 0 3px 8px rgba(28, 39, 52, 0.3);
  font-weight: 700;
}

.purchase-close:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(28, 39, 52, 0.5);
}

/* Hidden SEO Links */
.seo-hidden-links {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 16px;
  }
  
  .ingredients-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  /* Header Responsive */
  .mobile-menu-icon {
    display: block;
    margin-right: 10px;
  }

  .header .nav-links {
    display: none;
  }

  .header .order-button {
    display: none;
  }

  .logo h2 {
    font-size: 26px;
  }

  /* Hero Section Responsive */
  .product-title {
    font-size: 26px;
    padding: 12px 15px;
  }

  .hero-section {
    gap: 20px;
    flex-direction: column;
    padding: 20px 15px;
  }

  .product-image {
    min-width: 250px;
    max-width: 650px;
    gap: 15px;
  }

  .product-info h2 {
    font-size: 28px;
  }

  .product-info h3 {
    font-size: 22px;
  }

  .product-description {
    font-size: 16px;
  }

  .benefits-lists li {
    font-size: 16px;
  }

  .cta-button, .secondary-button {
    font-size: 16px;
    width: 100%;
    justify-content: center;
    margin: 8px 0;
    padding: 12px 24px;
  }

  .cta-buttons {
    width: 100%;
    gap: 10px;
  }

  .save-badge {
    width: 75px;
    height: 75px;
    font-size: 18px;
    top: 10px;
    right: 10px;
  }
  
  .product-stats {
    gap: 10px;
    margin-top: 20px;
  }
  
  .stat-box {
    min-width: 110px;
    padding: 15px 10px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .benefit-badges {
    gap: 10px;
  }
  
  .benefit-badge {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* Certifications Responsive */
  .certifications h2 {
    font-size: 26px;
  }

  .certification-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .badge {
    margin-bottom: 20px;
    max-width: 350px;
  }

  .badge-title {
    font-size: 20px;
  }

  .badge-description {
    font-size: 16px;
  }

  /* Product Details Responsive */
  .product-details h2 {
    font-size: 26px;
  }

  .product-details-content {
    flex-direction: column;
    padding: 0 15px;
  }

  .product-details-content p {
    font-size: 16px;
    text-align: justify;
  }

  .product-details-image {
    order: -1;
  }

  .product-details-image img {
    max-width: 300px;
  }

  /* How It Works Responsive */
  .how-it-works h2 {
    font-size: 26px;
  }

  .how-it-works-intro {
    font-size: 16px;
    text-align: justify;
  }

  .step-title {
    font-size: 18px;
    text-align: justify;
  }

  .step-description {
    font-size: 16px;
    text-align: justify;
  }

  .step-below-para {
    font-size: 20px !important;
  }

  .how-it-works .cta-button {
    font-size: 16px;
    width: 100%;
  }

  /* Reviews Responsive */
  .customer-reviews h2 {
    font-size: 26px;
  }

  .reviews-container {
    padding: 0 15px;
  }

  .review {
    padding: 20px;
  }

  .review-text {
    font-size: 16px;
  }

  .reviewer-info h4 {
    font-size: 18px;
  }

  /* Pricing Responsive */
  .image-grid-section h2 {
    font-size: 28px;
    padding: 25px 15px 35px;
  }
  
  .pricing-container {
    margin: 40px auto 30px;
    padding: 0 15px;
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    max-width: 450px;
    width: 100%;
  }

  .card-header {
    font-size: 22px;
  }

  /* Bonuses Responsive */
  .ebook-bonus-section {
    flex-direction: column;
    align-items: center;
  }

  .ebook-card {
    flex: 1 1 100%;
    max-width: 90%;
    margin-bottom: 30px;
  }

  .ebook-text {
    font-size: 15px;
    padding: 0 10px;
  }

  .bonuses-section h2 {
    font-size: 26px;
  }

  /* Ingredients Responsive */
  .ingredients-section h2 {
    font-size: 26px;
    padding: 20px 15px;
  }

  .ingredients-intro {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .ingredients-list {
    gap: 20px;
    padding: 0 15px;
    grid-template-columns: 1fr;
  }

  .ingredient-item {
    padding: 20px;
    gap: 15px;
  }

  .ingredient-number {
    min-width: 50px;
    min-height: 50px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .ingredient-title {
    font-size: 20px;
  }

  .ingredient-description {
    font-size: 16px;
  }

  /* Science Section Responsive */
  .science-heading {
    font-size: 26px;
    margin: 20px 0 20px;
  }

  .science-steps {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step-arrow {
    display: none;
  }

  .science-step {
    max-width: 100%;
  }

  .guarantee-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    border-radius: 0;
  }

  .guarantee-badge {
    order: -1;
  }

  .guarantee-badge img {
    max-width: 250px;
  }

  .guarantee-text h3 {
    font-size: 24px;
    text-align: center;
  }

  .guarantee-text p {
    font-size: 16px;
    text-align: justify;
  }

  .cert-logos {
    padding: 20px 10px;
  }

  .cert-logos img {
    max-width: 90%;
  }

  .step-number {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-desc {
    font-size: 16px;
  }

  /* Benefits Responsive */
  .benefits-section h2 {
    font-size: 26px;
  }

  .benefits-intro {
    font-size: 16px;
  }

  .benefit-title {
    font-size: 18px;
  }

  .benefit-desc {
    font-size: 16px;
  }

  .benefits-section {
    padding: 0 0 40px 0;
  }

  /* FAQ Responsive */
  .faq-heading {
    font-size: 26px;
    margin: 0 0 30px;
  }

  .faq-banners {
    flex-direction: column;
    padding: 25px;
    margin: 30px 15px;
  }

  .banner-image,
  .banner-content {
    width: 100%;
    text-align: center;
  }

  .banner-content h3 {
    font-size: 28px;
  }

  .faq-answer-block {
    padding: 30px 15px;
  }

  .faq-answer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .faq-image-content {
    order: -1;
    max-width: 100%;
  }
  
  .faq-answer-block h3 {
    margin: 0 0 15px;
    font-size: 22px;
  }

  .bottom-banner h3 {
    font-size: 28px;
  }

  .checkout-image {
    border-radius: 5px;
  }

  /* Footer Responsive */
  .footer-disclaimer p {
    text-align: left;
    padding: 0 10px;
  }

  .footer-bottom {
    margin: 0 10px;
    padding: 25px 20px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
  }

  .social-icons i {
    font-size: 17px;
  }

  .footer-section {
    padding: 25px 15px 40px;
  }

  /* CTA Banner Responsive */
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
    gap: 12px;
  }

  .cta-banner-text h4 {
    font-size: 18px;
  }

  .cta-banner-text p {
    font-size: 14px;
  }

  .cta-price {
    font-size: 22px;
  }

  .cta-banner-button {
    padding: 12px 24px;
    font-size: 16px;
  }

  .cta-banner-close {
    top: 8px;
    right: 12px;
  }

  /* Legal Pages Responsive */
  .legal-page-header {
    padding: 35px 15px;
  }

  .legal-page-header h1 {
    font-size: 34px;
    letter-spacing: 1.2px;
    padding: 0 15px;
  }

  .legal-content {
    padding: 40px 0;
  }

  .legal-container {
    padding: 0 15px;
  }

  .legal-content h2 {
    font-size: 26px;
  }

  .legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
  }

  .legal-content h4 {
    font-size: 20px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 16px;
    text-align: left;
  }

  .legal-back-link {
    font-size: 16px;
    padding: 12px 24px;
  }

  .legal-nav-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .legal-nav-link {
    width: 220px;
    text-align: center;
  }

  .legal-table {
    font-size: 14px;
  }

  .legal-table th,
  .legal-table td {
    padding: 12px 10px;
  }

  .contact-info {
    padding: 25px 20px;
  }

  /* Purchase Notification Responsive */
  .purchase-notification {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-width: auto;
    max-width: calc(100% - 20px);
    padding: 18px 20px;
  }

  .purchase-notification-content {
    gap: 15px;
  }

  .purchase-icon {
    width: 60px;
    height: 60px;
  }

  .purchase-header {
    font-size: 15px;
  }

  .purchase-product {
    font-size: 14px;
  }

  .purchase-time {
    font-size: 13px;
  }

  .purchase-close {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 12px 0;
  }

  .header-container {
    padding: 0 12px;
  }

  .nav-links a {
    padding: 0 10px;
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .image-grid-section h2 {
    font-size: 24px;
    padding: 20px 12px 30px;
  }

  .buy-now-btn {
    padding: 16px 40px;
    font-size: 20px;
  }

  .current-price {
    font-size: 46px;
  }

  .card-header {
    font-size: 20px;
    padding: 15px 12px;
  }
  
  .ingredient-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
  }

  .ingredient-number {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .header {
    padding: 10px 0;
  }

  .header-container {
    padding: 0 10px;
  }

  .product-title {
    font-size: 22px;
    padding: 10px 8px;
  }

  .product-info h2 {
    font-size: 26px;
  }

  .product-info h3 {
    font-size: 20px;
  }

  .cta-banner-content {
    padding: 12px 15px;
  }

  .cta-banner-text h4 {
    font-size: 16px;
  }

  .cta-price {
    font-size: 20px;
  }
  
  .legal-page-header h1 {
    font-size: 28px;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .legal-content h3 {
    font-size: 20px;
  }

  .legal-content h4 {
    font-size: 18px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }

  .legal-highlight,
  .legal-notice,
  .contact-info {
    padding: 20px 15px;
  }

  .legal-table {
    font-size: 13px;
  }

  .legal-table th,
  .legal-table td {
    padding: 10px 8px;
  }
  
  .purchase-notification {
    padding: 16px 18px;
  }

  .purchase-icon {
    width: 55px;
    height: 55px;
  }

  .purchase-header {
    font-size: 14px;
  }

  .purchase-product {
    font-size: 13px;
  }

  .purchase-time {
    font-size: 12px;
  }
}

@media (max-width: 425px) {
  .g-arrow {
    height: 25px;
  }
  
  .product-card {
    min-width: 100%;
  }
}

/* ==================== PRINT STYLES ==================== */
@media print {
  .legal-navigation,
  .legal-back-link,
  .legal-nav-links {
    display: none;
  }

  .legal-page-header {
    background-color: var(--primary-color) !important;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }

  .legal-content {
    font-size: 12px;
  }

  .legal-content h2,
  .legal-content h3,
  .legal-content h4 {
    page-break-after: avoid;
  }

  .legal-section {
    page-break-inside: avoid;
  }
}