/* ==================== ROOT VARIABLES ==================== */
:root {
  --primary-color: #1e3a8a;
  --secondary-color: #0ea5e9;
  --accent-color: #fbbf24;
  --accent-hover: #f59e0b;
  --dark-bg: #1e3a8a;
  --gradient-1: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
  --gradient-2: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  --gradient-3: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

/* ==================== RESET & BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  color: #444;
  background-color: white;
  line-height: 1.5;
  font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

h1 { font-size: 30px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 22px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

/* Fix hyperlink colors */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* ==================== SCROLL ANIMATIONS ==================== */
.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== HEADER STYLES ==================== */
.header {
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.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: bold;
  font-size: 30px;
  margin: 0;
}

.glow-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.glow-link h2 {
  transition: all 0.3s ease;
  cursor: pointer;
}

.glow-link:hover h2 {
  color: var(--secondary-color);
}

.newHeadBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 20px;
  padding: 0 12px;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.order-button {
  background-color: var(--accent-color);
  color: black;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 20px;
}

.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: 5px;
}

.order-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

/* Mobile Menu */
.mobile-menu-icon {
  background: none;
  border: none;
  color: var(--primary-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: 22px;
  padding: 10px 20px;
}

.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: 30px;
  font-weight: 700;
  margin-bottom: 0;
  color: white;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  text-align: center;
  margin-top: 0;
  padding: 20px 0;
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 20px;
  max-width: 1600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 50%, #bfdbfe 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background pattern */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
  animation: backgroundFloat 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes backgroundFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(5deg); }
  66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.product-image {
  flex: 0 0 auto;
  max-width: 500px;
  width: 100%;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-main-image {
  position: relative;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.product-main-image::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-main-image:hover::after {
  opacity: 0.3;
}

.product-main-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

.product-main-image:hover img {
  transform: scale(1.08) rotate(2deg);
}

.product-info {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
  padding: 20px;
  position: relative;
  z-index: 2;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-info h2 {
  margin-top: 0;
  font-size: 42px;
  background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: gradientShift 3s ease infinite;
  background-size: 200% auto;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ingredients-highlight {
  font-weight: bold;
  color: var(--primary-color);
}

.product-info h3 {
  font-size: 24px;
  margin: 20px 0 15px 0;
  color: var(--primary-color);
  font-weight: 700;
}

.product-description {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #1f2937;
  font-size: 19px;
}

.benefits-lists {
  margin-bottom: 20px;
  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;
  line-height: 1.5;
}

.benefits-lists li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: -20px;
  font-weight: bold;
  font-size: 22px;
}

/* Enhanced Save Badge with Pulse */
.save-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1a202c;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2;
  box-shadow: 
    0 10px 30px rgba(251, 191, 36, 0.5),
    0 0 0 0 rgba(251, 191, 36, 0.7);
  text-align: center;
  border: 4px solid #ffffff;
  z-index: 10;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 
      0 10px 30px rgba(251, 191, 36, 0.5),
      0 0 0 0 rgba(251, 191, 36, 0.7);
  }
  50% {
    box-shadow: 
      0 10px 30px rgba(251, 191, 36, 0.5),
      0 0 0 10px rgba(251, 191, 36, 0);
  }
  100% {
    box-shadow: 
      0 10px 30px rgba(251, 191, 36, 0.5),
      0 0 0 0 rgba(251, 191, 36, 0);
  }
}

/* REMOVE PRODUCT STATS SECTION */
.product-stats {
  display: none !important;
}

/* Modern Badge Pills */
.benefit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
  justify-content: flex-start;
}

.benefit-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #1a202c;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  white-space: nowrap;
}

.benefit-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
  background: #fff;
}

.benefit-badge .icon {
  margin-right: 8px;
  font-size: 16px;
}

/* CTA Button Styles */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  color: black;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 19px;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.cta-button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  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 {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
  text-decoration: none;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: var(--primary-color);
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 19px;
  border: 2px solid var(--primary-color);
}

.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"><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-color);
  color: white;
  transform: translateY(-3px);
  text-decoration: none;
}

/* RESPONSIVE STYLES FOR HERO */
@media (max-width: 768px) {
  .product-title {
    font-size: 24px;
    padding: 15px 10px;
  }

  .hero-section {
    gap: 40px;
    padding: 60px 20px;
  }

  .product-image {
    min-width: 250px;
    max-width: 400px;
  }

  .product-info h2 {
    font-size: 32px;
  }

  .product-info h3 {
    font-size: 20px;
  }

  .product-description {
    font-size: 17px;
  }

  .benefits-lists li {
    font-size: 16px;
  }

  .cta-button, .secondary-button {
    font-size: 17px;
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .cta-buttons {
    width: 100%;
    gap: 10px;
  }

  .save-badge {
    width: 80px;
    height: 80px;
    font-size: 18px;
  }

  .benefit-badges {
    gap: 10px;
    justify-content: center;
  }

  .benefit-badge {
    padding: 10px 16px;
    font-size: 13px;
  }

  .nav-links a {
    font-size: 18px;
  }

  .order-button {
    font-size: 18px;
  }

  .mobile-menu-icon {
    display: block;
  }

  .newHeadBox {
    display: none;
  }
}
/* ==================== CERTIFICATIONS SECTION ==================== */
.certifications {
  background-color: white;
  padding: 0 0 60px 0;
  text-align: center;
  color: #333;
}

.certifications h2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  margin: 0 0 40px 0;
  padding: 25px 20px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.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: #fff;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid #f5f5f5;
}

.badge:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.badge img {
  width: auto;
  height: auto;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.badge:hover img {
  transform: scale(1.05);
}

.badge-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  font-size: 22px;
}

.badge-description {
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
  color: #000;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .certifications h2 {
    font-size: 24px;
  }

  .certification-badges {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .badge {
    margin-bottom: 20px;
    max-width: 350px;
  }

  .badge-title {
    font-size: 20px;
  }

  .badge-description {
    font-size: 16px;
  }
}

/* ==================== PRODUCT DETAILS SECTION ==================== */
.product-details {
  padding: 0 0 60px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  color: #333;
}

.product-details h2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
  margin: 0 0 30px 0;
  padding: 25px 20px;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.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: 19px;
  margin: 15px 0;
  line-height: 1.6;
  color: #1f2937;
}

.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;
  transition: transform 0.3s ease;
}

.product-details-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .product-details h2 {
    font-size: 24px;
  }

  .product-details-content {
    flex-direction: column;
    padding: 0 10px;
  }

  .product-details-content p {
    font-size: 17px;
    text-align: justify;
  }

  .product-details-image {
    order: -1;
  }

  .product-details-image img {
    max-width: 300px;
  }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
  padding: 0 0 60px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  color: #333;
}

.how-it-works h2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  margin: 0 0 30px 0;
  padding: 25px 20px;
  font-size: 28px;
  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: 30px;
  font-style: normal;
  font-size: 19px;
  color: #1f2937;
  text-align: left;
  font-weight: 400;
  line-height: 1.7;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: left;
}

.how-it-works-step {
  margin-bottom: 10px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 22px;
  display: block;
}

.step-description {
  line-height: 1.7;
  color: #1f2937;
  font-size: 19px;
  margin-top: 0;
  margin-bottom: 0;
}

.step-below-para {
  margin-top: 30px;
  font-size: 20px;
  color: #1f2937;
  font-weight: 600;
  line-height: 1.6;
}

.usage-guide {
  margin-top: 40px;
}

.usage-guide h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.usage-guide p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 19px;
  color: #1f2937;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
}

.how-it-works .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  color: black;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 19px;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.how-it-works .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

@media (max-width: 768px) {
  .how-it-works h2 {
    font-size: 24px;
  }

  .how-it-works-intro {
    font-size: 17px;
    text-align: justify;
  }

  .step-title {
    font-size: 19px;
    text-align: justify;
  }

  .step-description {
    font-size: 17px;
    text-align: justify;
  }

  .step-below-para {
    font-size: 18px !important;
  }

  .how-it-works .cta-button {
    font-size: 17px;
    width: 100%;
  }

  .usage-guide h3 {
    font-size: 20px;
  }

  .usage-guide p {
    font-size: 17px;
  }
}

/* ==================== CUSTOMER REVIEWS SECTION ==================== */
.customer-reviews {
  background-color: white;
  padding: 0 0 60px 0;
  text-align: center;
}

.customer-reviews h2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  margin: 0 0 40px 0;
  padding: 25px 20px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.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: 2px solid #f0f0f0;
  overflow: hidden;
  text-align: left;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.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: 15px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.reviewer-image img {
  width: 100%;
  height: auto;
}

.reviewer-info h4 {
  margin: 0;
  color: #333;
  font-size: 19px;
  font-weight: 700;
}

.rating {
  display: flex;
  gap: 2px;
  margin-top: 5px;
}

.rating svg {
  fill: #FFD700;
  width: 18px;
  height: 18px;
}

.review-text {
  color: #374151;
  line-height: 1.7;
  font-size: 18px;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .customer-reviews h2 {
    font-size: 24px;
  }

  .reviews-container {
    padding: 0 15px;
  }

  .review {
    padding: 20px;
  }

  .review-text {
    font-size: 16px;
  }

  .reviewer-info h4 {
    font-size: 17px;
  }
}
/* ==================== PRICING SECTION ==================== */
.image-grid-section {
  padding: 50px 20px;
  margin: 40px 0;
  background-color: white;
  text-align: center;
}

.image-grid-section h2 {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  margin: 0 0 35px 0;
  padding: 25px 20px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
}

.off-white-background {
  position: relative;
  width: 100%;
  height: 0;
}

.buying-background {
  background: #d93636;
  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: 30px auto 40px;
  padding: 30px 0;
  max-width: 1300px;
  align-items: flex-start;
}

.product-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  margin: 15px 0;
  padding-bottom: 25px;
}

.product-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.card-header {
  color: #ffffff;
  padding: 15px 10px;
  font-size: 1.5em;
  font-weight: 700;
  border-radius: 24px 24px 0 0;
  line-height: 1.2;
}

.supply-days {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  margin-top: 5px;
}

.header-1x,
.header-3x {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.header-6x {
  background: linear-gradient(135deg, #ff9800 0%, #ff6b00 100%);
}

.card-content {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background-color: white;
  border-radius: 0 0 24px 24px;
}

.product-image-new {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 25px auto;
  display: block;
  object-fit: contain;
}

.price-section {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
}

.current-price {
  font-size: 3.5em;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.per-bottle {
  font-size: 1.3em;
  color: #666;
  margin-left: 8px;
}

.ebooks {
  background-color: #fff;
  color: #ff9900;
  border: 2px dashed #ff9900;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 20px;
}

.buy-now-btn {
  background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
  color: #000;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  margin: 15px 0;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1px;
}

.buy-now-btn::before {
  content: '🛒 ';
  margin-right: 8px;
}

.buy-now-btn:hover {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.total-price {
  font-size: 1.2em;
  color: #333;
  margin: 15px 0;
  font-weight: 600;
}

.original-total {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-weight: 400;
  font-size: 0.9em;
}

.discounted-total {
  color: #000;
  font-size: 1.4em;
  font-weight: 700;
}

.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 Badges Container */
.best-value-badges {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: absolute;
    top: -15px;
    left: 10px;
    right: 10px;
    z-index: 10;
}

/* Most Popular Badge (Left Side) */
.badge-popular {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-popular br {
    display: block;
    margin: 2px 0;
}

/* Free Shipping Badge (Right Side) */
.badge-shipping {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(5deg);
}

.badge-shipping br {
    display: block;
    margin: 2px 0;
}

/* Free Shipping Corner Badge (For 3-Bottle Card) */
.shipping-badge-corner {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(8deg);
    z-index: 5;
}

.shipping-badge-corner br {
    display: block;
    margin: 2px 0;
}

/* Savings Badge (Checkmark Style) */
.savings-badge {
    background: #fff;
    color: #333;
    padding: 10px 15px;
    margin: 10px 0;
    border: 2px dotted #333;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-badge::before {
    content: '✓ ';
    color: #27ae60;
    font-weight: 900;
    margin-right: 5px;
}

/* Discount Badge (For 6-Bottle "BIGGEST DISCOUNT") */
.discount-badge {
    background: #fff;
    color: #333;
    padding: 10px 15px;
    margin: 10px 0;
    border: 2px dotted #333;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-badge::before {
    content: '✓ ';
    color: #27ae60;
    font-weight: 900;
    margin-right: 5px;
}

/* Guarantee Badge (Checkmark Style) */
.guarantee-badge {
    background: #fff;
    color: #333;
    padding: 10px 15px;
    margin: 10px 0;
    border: 2px dotted #333;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guarantee-badge::before {
    content: '✓ ';
    color: #27ae60;
    font-weight: 900;
    margin-right: 5px;
}

/* Shipping Info Below Total */
.shipping-info {
    background: #d32f2f;
    color: #fff;
    padding: 8px 15px;
    margin: 15px 0;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shipping-info.free {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

/* Best Value Card Styling */
.product-card.best-value {
    background: linear-gradient(135deg, #ff9800 0%, #ff6b00 100%);
    border: 4px solid #ff6b00;
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.product-card.best-value .card-content {
    background: #fff;
    border-radius: 0 0 12px 12px;
    padding: 20px;
    position: relative;
}

@media (max-width: 1100px) {
  .pricing-container {
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    max-width: 450px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .image-grid-section {
    padding: 40px 15px;
    margin: 30px 0;
  }

  .image-grid-section h2 {
    font-size: 24px;
    padding: 20px 15px;
  }
  
  .pricing-container {
    margin: 30px auto 30px;
    padding: 0 15px;
  }

  .product-card {
    max-width: 400px;
  }

  .card-header {
    font-size: 1.4em;
  }

  .product-image-new {
    max-width: 220px;
    margin: 20px auto;
  }

  .best-value-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    top: 0;
    margin-bottom: 15px;
  }
  
  .badge-popular,
  .badge-shipping {
    transform: rotate(0deg);
    width: 100%;
    max-width: 200px;
  }
  
  .shipping-badge-corner {
    top: 10px;
    right: 10px;
    font-size: 9px;
    padding: 6px 10px;
  }
  
  .product-card.best-value {
    transform: scale(1);
  }
}

@media (max-width: 500px) {
  .image-grid-section h2 {
    font-size: 22px;
    padding: 20px 10px 30px;
  }

  .buy-now-btn {
    padding: 15px 40px;
    font-size: 1.3em;
  }

  .current-price {
    font-size: 2.8em;
  }

  .card-header {
    font-size: 1.3em;
    padding: 12px 8px;
  }
}
/* ==================== BONUSES SECTION ==================== */
.bonuses-section {
  padding: 0 0 60px 0;
  background-color: white;
  color: #333;
  max-width: 100%;
  margin: 0 auto;
  font-size: 19px;
}

.bonuses-section h2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  margin: 0 0 40px 0;
  padding: 25px 20px;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.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: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.ebook-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.ebook-card img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
}

.ebook-text {
  margin-top: 20px;
  font-size: 15px;
  color: #1f2937;
}

.ebook-text strong {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.ebook-text p {
  margin-top: 10px;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .bonuses-section h2 {
    font-size: 24px;
  }

  .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: 14px;
    padding: 0 10px;
  }
}

/* ==================== INGREDIENTS SECTION ==================== */
.ingredients-section {
  padding: 0 0 80px 0;
  background: linear-gradient(180deg, #f0f9ff 0%, #dbeafe 50%, #bfdbfe 100%);
  color: #333;
  position: relative;
  overflow: hidden;
}

.ingredients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ingredients-section h2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  margin: 0 0 50px 0;
  padding: 30px 20px;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}

.ingredients-section h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.ingredients-intro {
  margin: 0 auto 60px auto;
  line-height: 1.8;
  padding: 30px 40px;
  max-width: 1000px;
  text-align: center;
  font-size: 20px;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  font-weight: 400;
}

.ingredients-list {
  list-style: none;
  padding: 50px 20px 0;
  margin: 0 auto;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 25px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Animated gradient border */
.ingredient-item::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, 
    var(--primary-color), 
    var(--secondary-color), 
    var(--accent-color), 
    var(--primary-color));
  background-size: 300% 300%;
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: gradientRotate 6s linear infinite;
}

@keyframes gradientRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.ingredient-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, 
    rgba(30, 58, 138, 0.05) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ingredient-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.ingredient-item:hover::before {
  opacity: 1;
}

.ingredient-item:hover::after {
  opacity: 1;
}

/* Enhanced 3D Number Badge */
.ingredient-number {
  min-width: 80px;
  min-height: 80px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 32px;
  flex-shrink: 0;
  box-shadow: 
    0 8px 20px rgba(30, 58, 138, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.ingredient-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, 
    rgba(251, 191, 36, 0.8), 
    rgba(251, 191, 36, 0.4));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ingredient-item:hover .ingredient-number {
  transform: scale(1.15) rotateY(180deg);
  background: linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);
  color: #000;
}

.ingredient-item:hover .ingredient-number::before {
  opacity: 1;
}

.ingredient-content {
  flex: 1;
}

.ingredient-title {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 15px 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ingredient-description {
  margin: 0;
  line-height: 1.8;
  color: #475569;
  font-size: 18px;
  font-weight: 400;
}

/* RESPONSIVE STYLES FOR INGREDIENTS */
@media (max-width: 1024px) {
  .ingredients-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ingredients-section {
    padding: 0 0 40px 0;
  }

  .ingredients-section h2 {
    font-size: 26px;
    padding: 25px 15px;
  }

  .ingredients-intro {
    font-size: 17px;
    padding: 25px 20px;
  }

  .ingredients-list {
    gap: 30px;
    padding: 40px 15px 0;
  }

  .ingredient-item {
    padding: 30px 25px;
    gap: 20px;
  }

  .ingredient-number {
    min-width: 60px;
    min-height: 60px;
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .ingredient-title {
    font-size: 21px;
  }

  .ingredient-description {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .ingredients-list {
    grid-template-columns: 1fr;
  }

  .ingredient-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

  .ingredient-number {
    margin-bottom: 15px;
  }
}

/* ==================== SCIENCE & GUARANTEE SECTION ==================== */
.science-section {
  padding: 60px 0;
  background-color: white;
  text-align: center;
  color: #333;
  font-size: 19px;
}

.cert-logos {
  background-color: #000;
  padding: 30px 0;
  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: 28px;
  font-weight: 700;
  margin: 40px 0 30px 0;
  text-transform: uppercase;
  color: var(--primary-color);
}

.science-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  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: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-title {
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  color: #333;
}

.step-desc {
  line-height: 1.6;
  margin: 0;
  font-size: 17px;
  color: #555;
}

.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: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  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: 26px;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.guarantee-text p {
  margin: 0 0 15px 0;
  line-height: 1.7;
  color: white;
  font-size: 17px;
}

@media (max-width: 768px) {
  .science-section {
    padding: 40px 0;
  }

  .science-heading {
    font-size: 24px;
    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: 22px;
    text-align: center;
  }

  .guarantee-text p {
    font-size: 16px;
    text-align: justify;
  }

  .cert-logos {
    padding: 20px 10px;
  }

  .cert-logos img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-desc {
    font-size: 16px;
  }
}
/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #dbeafe 100%);
  color: #333;
  padding: 0 0 80px 0;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.benefits-section h2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  margin: 0 0 50px 0;
  padding: 30px 20px;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}

.benefits-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: var(--accent-color);
  box-shadow: 0 0 20px var(--accent-color);
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-intro {
  font-size: 20px;
  line-height: 1.8;
  margin: 0 auto 60px auto;
  max-width: 1000px;
  text-align: center;
  color: #1e293b;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  font-weight: 400;
}

.benefits-list {
  list-style: none;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 35px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
}

.benefits-list li:hover {
  transform: translateX(10px);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(30, 58, 138, 0.3);
}

.benefits-list li:hover::before {
  transform: scaleY(1);
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  width: 100%;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-weight: 800;
  font-size: 22px;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

/* Enhanced Checkmark with Animation */
.checkmark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  flex-shrink: 0;
  position: relative;
  box-shadow: 
    0 6px 20px rgba(30, 58, 138, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkmark::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  color: #fff;
  font-weight: 900;
  font-size: 26px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkmark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefits-list li:hover .checkmark {
  transform: scale(1.2) rotate(360deg);
  background: linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);
}

.benefits-list li:hover .checkmark::before {
  transform: translate(-50%, -50%) scale(1.2);
  color: #000;
}

.benefits-list li:hover .checkmark::after {
  opacity: 1;
}

/* RESPONSIVE STYLES FOR BENEFITS */
@media (max-width: 768px) {
  .benefits-section {
    padding: 0 0 40px 0;
  }

  .benefits-section h2 {
    font-size: 26px;
    padding: 25px 15px;
  }

  .benefits-intro {
    font-size: 17px;
    padding: 25px 20px;
  }

  .benefits-list {
    padding: 0 20px;
    gap: 25px;
  }

  .benefits-list li {
    padding: 25px 20px;
  }

  .checkmark {
    width: 40px;
    height: 40px;
  }

  .checkmark::before {
    font-size: 20px;
  }

  .benefit-title {
    font-size: 19px;
  }

  .benefit-desc {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .benefits-list li:hover {
    transform: translateX(0) translateY(-5px);
  }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: #fff;
  color: #333;
  padding: 0;
  font-size: 19px;
}

.faq-heading {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  margin: 0 0 40px 0;
  padding: 25px 20px;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.faq-questions {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  font-size: 19px;
}

.faq-item {
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-item:hover {
  background: #f7f7f7;
}

.faq-q {
  font-weight: 700;
  font-size: 20px;
  display: block;
  position: relative;
  color: #1e293b;
}

.faq-q::after {
  content: "+";
  float: right;
  font-weight: bold;
  font-size: 24px;
}

.faq-item.open .faq-q::after {
  content: "-";
}

.faq-a {
  margin-top: 15px;
  color: #475569;
  font-size: 17px;
  line-height: 1.6;
  display: none;
}

.faq-a p {
  margin: 0;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-banners {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: 1px solid #ccc;
  padding: 25px 30px;
  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 20px 0;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.max-button-padding {
  padding: 14px 22px;
  font-size: 28px;
}

.faq-answer-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  font-size: 19px;
}

.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(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
}

.faq-answer-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: var(--primary-color);
}

.faq-answer-block h6,
.answer-subheading {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 10px;
}

.bottom-banner {
  flex-direction: column;
  text-align: center;
  gap: 10px;
  max-width: none;
  width: 100%;
  margin: 20px 0;
  border: none;
  padding: 0;
}

.bottom-banner h3 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  width: 100%;
  padding: 15px 0;
  margin: 0;
  font-size: 36px;
}

.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: #000;
  font-weight: bold;
}

.bottom-banner .discounted {
  font-size: 25px;
  color: #000;
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 768px) {
  .faq-heading {
    font-size: 24px;
    margin: 0 0 20px;
  }

  .faq-q {
    font-size: 18px;
  }

  .faq-a {
    font-size: 16px;
  }

  .faq-banners {
    flex-direction: column;
    padding: 20px;
    margin: 20px;
  }

  .banner-image,
  .banner-content {
    width: 100%;
    text-align: center;
  }

  .banner-content h3 {
    font-size: 24px;
  }

  .faq-answer-block {
    padding: 20px 10px;
  }

  .faq-answer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .faq-image-content {
    order: -1;
    max-width: 100%;
  }
  
  .faq-answer-block h3 {
    margin: 0 0 10px;
    font-size: 20px;
  }

  .bottom-banner h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .checkout-image {
    border-radius: 5px;
  }
}
/* ==================== FOOTER SECTION ==================== */
.footer-section {
  background: #fff;
  border-top: 1px solid #000;
  padding: 30px 20px 50px;
  font-size: 14px;
  color: #000;
}

.footer-disclaimer {
  padding: 15px;
  margin: 0 auto 15px auto;
}

.footer-disclaimer p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 14px;
  text-align: justify;
  color: #000;
}

.footer-disclaimer a {
  color: var(--primary-color);
}

.footer-bottom {
  border: 2px solid #000;
  border-radius: 25px;
  padding: 25px;
  text-align: center;
  margin: 0 auto;
  background: #b3b3b300;
}

.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: #000;
  background-color: transparent;
  text-decoration: none;
  transition: transform 0.3s ease;
  border: 1px solid #000;
}

.social-icons a:hover {
  transform: scale(1.1);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.social-icons i {
  font-size: 18px;
}

.footer-links {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-links a {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 3px;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.footer-copy {
  font-size: 14px;
  color: #000;
  margin: 0;
}

.footer-copy a {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .footer-disclaimer p {
    text-align: left;
    padding: 0 10px;
  }

  .footer-bottom {
    margin: 0 5px;
    padding: 20px 15px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons i {
    font-size: 16px;
  }

  .footer-section {
    padding: 20px 10px;
  }
}

/* ==================== BOTTOM CTA BANNER ==================== */
.bottom-cta-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 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: 15px 20px;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
}

.cta-banner-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.cta-banner-text p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}

.cta-banner-price {
  text-align: center;
}

.cta-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

.cta-original-price {
  font-size: 12px;
  color: #ccc;
  text-decoration: line-through;
}

.cta-banner-button {
  background-color: var(--accent-color);
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.cta-banner-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

.cta-banner-button svg {
  width: 16px;
  height: 16px;
}

.cta-banner-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  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.1);
}

@media (max-width: 768px) {
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 12px 15px;
    gap: 10px;
  }

  .cta-banner-text h4 {
    font-size: 16px;
  }

  .cta-banner-text p {
    font-size: 13px;
  }

  .cta-price {
    font-size: 20px;
  }

  .cta-banner-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .cta-banner-close {
    top: 5px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .cta-banner-content {
    padding: 10px 12px;
  }

  .cta-banner-text h4 {
    font-size: 14px;
  }

  .cta-price {
    font-size: 18px;
  }
}

/* ==================== LEGAL PAGES STYLES ==================== */
.legal-page {
  min-height: 100vh;
  background-color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 40px 0;
  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: 'Roboto Condensed', 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: 28px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 40px 0 20px 0;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content h4 {
  font-size: 22px;
  color: #333;
  margin: 30px 0 15px 0;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content h5 {
  font-size: 20px;
  color: var(--primary-color);
  margin: 25px 0 12px 0;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content h6 {
  font-size: 18px;
  color: #333;
  margin: 20px 0 10px 0;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

.legal-content strong {
  color: #333;
  font-weight: 600;
}

.legal-content em {
  font-style: italic;
  color: var(--primary-color);
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.legal-highlight {
  background-color: #f8f9fa;
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.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: 30px;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 25px;
  border-radius: 10px;
  margin: 40px 0;
}

.contact-info h3 {
  color: var(--accent-color);
  margin-top: 0;
}

.contact-info p {
  color: white;
  margin-bottom: 10px;
  text-align: left;
}

.contact-info a {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.effective-date {
  font-style: italic;
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}

.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: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-right: 15px;
  margin-bottom: 10px;
}

.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: 8px 16px;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.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;
}

.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: 5px;
  padding: 20px;
  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: 14px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

@media (max-width: 768px) {
  .legal-page-header {
    padding: 30px 0;
  }

  .legal-page-header h1 {
    font-size: 32px;
    letter-spacing: 1px;
    padding: 0 15px;
  }

  .legal-content {
    padding: 40px 0;
  }

  .legal-container {
    padding: 0 15px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px 0;
  }

  .legal-content h4 {
    font-size: 18px;
  }

  .legal-content h5 {
    font-size: 18px;
  }

  .legal-content h6 {
    font-size: 16px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 16px;
    text-align: left;
  }

  .legal-back-link {
    font-size: 14px;
    padding: 10px 20px;
  }

  .legal-nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .legal-nav-link {
    width: 200px;
    text-align: center;
  }

  .legal-table {
    font-size: 14px;
  }

  .legal-table th,
  .legal-table td {
    padding: 10px 8px;
  }

  .contact-info {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .legal-page-header h1 {
    font-size: 28px;
  }

  .legal-content h2 {
    font-size: 20px;
  }

  .legal-content h3 {
    font-size: 18px;
  }

  .legal-content h4 {
    font-size: 16px;
  }

  .legal-content h5 {
    font-size: 16px;
  }

  .legal-content h6 {
    font-size: 15px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }

  .legal-highlight,
  .legal-notice,
  .contact-info {
    padding: 15px;
  }

  .legal-table {
    font-size: 12px;
  }

  .legal-table th,
  .legal-table td {
    padding: 8px 6px;
  }
}

@media print {
  .legal-navigation,
  .legal-back-link,
  .legal-nav-links {
    display: none;
  }

  .legal-page-header {
    background-color: #333 !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;
  }
}