@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;600;700&display=swap');

:root {
  --main-color: #6a2c91; /* Sharp Violet for Product Theme */
  --accent-color: #ffc107; /* Golden Yellow for high contrast/CTAs */
  --accent-hover: #e0a800;
  --dark-bg: #2a1b38; /* Deep dark violet */
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #000000;
  background-color: white;
  line-height: 1.5;
  font-size: 20px;
}

/* Global Heading Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
}

h2 {
  font-size: 30px;
  font-weight: 500;
}

/* Header Styles */
.header {
  width: 100%;
  position: relative;
  overflow: hidden;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .header-container,
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo h2 {
  color: var(--main-color);
  font-weight: bold;
  font-size: 32px;
  margin: 0px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 22px;
  padding: 0 12px;
}

.nav-links a:hover {
  color: var(--main-color);
}

.newHeadBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

.order-button {
  background-color: var(--accent-color);
  color: black;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 24px;
}

.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);
}

.max-button-padding {
  padding: 14px 22px;
  font-size: 30px;
}

.mobile-button{
  margin: 0px !important;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 10px 0px 20px 0px;
  max-width: 1600px;
  margin: 0 auto;
  background-color: white;
}

.product-image {
  flex: 1;
  min-width: 350px;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.product-image img{
  height: auto;
}

.product-info {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
}

.product-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
  color: white;
  background-color: var(--main-color);
  text-align: center;
  margin-top: 0px;
  padding: 10px 0px;
}

.product-description {
  margin-bottom: 5px;
  line-height: 1.5;
  color: #000;
  font-size: 20px;
}

.benefits-list {
  margin-bottom: 2px;
  padding-left: 25px;
  list-style: none;
}

.benefits-lists li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 5px;
  display: flex;
  align-items: flex-start;
  font-size: 20px;
}

.benefits-lists li::before {
  content: '✓';
  color: var(--main-color);
  position: absolute;
  left: -20px;
  font-weight: bold;
}

/* Button Styles */
.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: black;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.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: 5px;
}

.cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: black;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.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: 5px;
}

.secondary-button:hover {
  background-color: var(--accent-hover);
  color: black;
  transform: translateY(-2px);
}

/* Certifications Section */
.certifications {
  background-color: white;
  padding: 0 0 40px 0;
  text-align: center;
  color: #333;
}

.certifications h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.certification-badges {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 5px;
  padding: 0 10px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  background-color: #fcfaff;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(106, 44, 145, 0.1);
}

.badge img {
  width: auto;
  height: auto;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 5px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.badge:hover img {
  transform: scale(1.1);
}

.badge-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 24px;
  margin-top: 5px;
}

.badge-description {
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  color: #000;
  margin: 10px 0px;
}

/* Product Details Section */
.product-details {
  padding: 0 0 40px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  color: #333;
}

.product-details h2 {
  background-color: var(--main-color);
  color: white;
  text-align: center;
  margin: 0 0 15px 0;
  padding: 20px 0;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bold;
}

.product-details-content {
  max-width: 1200px;
  margin: 0 auto;
}

.product-details-content p {
  font-size: 20px;
  margin: 10px 0px;
}

.product-details-content img{
  height: 300px;
  width: auto;
  margin: auto;
  display: block;
}

.ingredients-list {
  margin-top: 20px;
  line-height: 1.5;
}

.ingredients-highlight {
  font-weight: bold;
  color: #000;
}

/* How It Works Section */
.how-it-works {
  padding: 0 0 40px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  color: #333;
}

.how-it-works h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 20px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: none;
  text-align: center;
  font-weight: bold;
}

.how-it-works-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-it-works-intro {
  margin-bottom: 20px;
  font-style: normal;
  font-size: 20px;
  color: #000;
  text-align: left;
  font-weight: 500;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.how-it-works-step {
  margin-bottom: 10px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--main-color);
  font-size: 30px;
  display: block;
}

.step-description {
  line-height: 1.6;
  color: #000;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.how-it-works .ingredients-highlight {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.cta-section {
  text-align: center;
  margin-top: 30px;
}

.how-it-works .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: black;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.how-it-works .cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Customer Reviews Section */
.customer-reviews {
  background-color: white;
  padding: 0px 0px 40px 0;
  text-align: center;
}

.customer-reviews h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.review {
  background-color: white;
  border-radius: 10px;
  border: 1px solid #eee;
  overflow: hidden;
  text-align: left;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4CAF50;
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 500;
}

.verified-badge svg {
  fill: #4CAF50;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.reviewer-image {
  flex-shrink: 0;
}

.reviewer-info h4 {
  margin: 0px;
  color: #333;
  font-size: 20px;
  font-weight: bold;
}

.rating {
  display: flex;
  gap: 2px;
  color: #FFD700;
  font-size: 20px;
}

.review-text {
  color: #555;
  line-height: 1.5;
  font-size: 20px;
  margin: 0;
  font-weight: 500;
}

/* =========================================
   NEW PRICING CARDS (Matched to Image)
========================================= */
.pricing-container-new {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  margin: 40px auto;
  max-width: 1100px;
  flex-wrap: wrap;
}

.new-product-card {
  border: 2px solid var(--main-color);
  border-radius: 8px;
  background: white;
  width: 31%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.best-value-card {
  background: var(--main-color);
  color: white;
  transform: scale(1.05); /* Middle card slightly bigger */
  z-index: 2;
}

.card-top-header {
  background: var(--main-color);
  color: white;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
}

.best-value-card .card-top-header {
  background: transparent;
  color: var(--accent-color);
  font-size: 22px;
  padding-bottom: 0;
}

.card-titles {
  padding: 15px 10px 5px;
}

.card-titles h3 {
  font-size: 35px;
  margin: 0;
  font-weight: 800;
  color: #222;
}

.best-value-card .card-titles h3 {
  color: white;
}

.card-titles p {
  font-size: 16px;
  margin: 5px 0 0px;
  text-transform: uppercase;
  color: #555;
}

.best-value-card .card-titles p {
  color: #ddd;
}

.card-img-box {
  padding: 10px;
}

.card-img-box img {
  height: 200px;
  width: auto;
  object-fit: contain;
}

.best-value-card .card-img-box img {
  height: 220px; /* Slightly larger image for middle */
}

.price-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.price-dollar {
  font-size: 35px;
  font-weight: bold;
  align-self: flex-start;
  margin-top: 5px;
}

.price-amount {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

.price-per {
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  line-height: 1.1;
  margin-left: 8px;
  color: #000;
}

.best-value-card .price-per {
  color: #fff;
}

/* Features List with Dashed Lines */
.features-list {
  margin: 10px 20px;
}

.dashed-divider {
  border-top: 2px dashed #999;
  width: 100%;
}

.best-value-card .dashed-divider {
  border-top: 2px dashed rgba(255, 255, 255, 0.4);
}

.feature-item {
  font-size: 16px;
  font-weight: 700;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.text-blue { color: #1976d2; }
.text-yellow { color: var(--accent-color); }
.text-black { color: #000; }
.text-white { color: #fff; }

/* Buttons */
.btn-wrap { margin: 15px 0; }

.btn-grey {
  background: linear-gradient(to bottom, #f9f9f9, #dcdcdc);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px 10px;
  font-size: 24px;
  font-weight: 900;
  color: #222;
  width: 85%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-grey:hover { background: #dcdcdc; }

.btn-yellow {
  background: var(--accent-color);
  border: none;
  border-radius: 5px;
  padding: 15px 10px;
  font-size: 24px;
  font-weight: 900;
  color: #222;
  width: 85%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-yellow:hover { background: var(--accent-hover); }

/* Footer Totals */
.cc-logos img {
  height: 22px;
  margin-bottom: 10px;
}

.card-footer-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}

.strike {
  text-decoration: line-through;
  font-weight: normal;
  font-size: 16px;
}

.shipping-text { display: block; font-size: 16px; }
.shipping-yellow { color: var(--accent-color); }

/* Responsive adjustments */
@media (max-width: 900px) {
  .pricing-container-new {
    flex-direction: column;
    align-items: center;
  }
  .new-product-card {
    width: 90%;
    max-width: 400px;
    margin-bottom: 20px;
  }
  .best-value-card {
    transform: scale(1); /* Remove scale on mobile so it doesn't overlap weirdly */
  }
}

/* FAQ Section */
.faq-section {
  background: #fff;
  color: #333;
  padding: 0;
  font-size: 20px;
}

.faq-heading {
  background-color: var(--main-color);
  color: #fff;
  margin: 0 0 40px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.faq-questions {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  font-size: 20px;
}

.faq-questions li {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-questions li:hover {
  background: #f7f7f7;
}

.faq-questions li.open .faq-q {
  font-weight: 700;
  color: var(--main-color);
}

.faq-q::after {
  content: "+";
  float: right;
  font-weight: bold;
}

.faq-questions li.open .faq-q::after {
  content: "-";
}

.faq-a {
  margin-top: 15px;
  color: #555;
  font-size: 20px;
  line-height: 1.6;
}

.faq-banner {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 25px 30px;
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.bottom-banner {
  flex-direction: column;
  text-align: center;
  gap: 10px;
  max-width: none;
  width: 100%;
  margin: 20px 0 20px 0;
  border: none;
  padding: 0;
}

.bottom-banner h3 {
  background: var(--main-color);
  color: #fff;
  width: 100%;
  padding: 15px 0;
  margin: 0;
  font-size: 32px;
}

.bottom-banner .regular-price.small {
  font-size: 18px;
  margin: 15px 0 0 0;
  color: #000;
  font-weight: bold;
}

.bottom-banner .discounted {
  font-size: 25px;
  color: #d32f2f;
  font-weight: bold;
}

.faq-answer-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  font-size: 20px;
}

.faq-answer-block h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: var(--main-color);
}

.answer-subheading {
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 5px;
}

/* Guarantee & Science Section */
.science-section {
  padding: 40px 0;
  background-color: white;
  text-align: center;
  color: #333;
  font-size: 20px;
}

.guarantee-block {
  background-color: #ffffff;
  padding: 20px 20px;
  margin-top: 40px;
  max-width: 1200px;
  margin: auto;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  flex-wrap: nowrap;
  background-color: var(--main-color);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(106, 44, 145, 0.2);
}

.gurantee-blog {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-text {
  width: 50%;
  padding: 40px;
}

.guarantee-text h3 {
  margin-top: 0;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
  color: var(--accent-color);
}

.guarantee-content p {
  margin: 0 0 15px 0;
  line-height: 1.6;
  color: white;
}

.guarantee-content img {
  width: 100%;
  max-width: 300px;
  height: auto;
  padding: 25px;
}

/* Benefits Section */
.benefits-section {
  background-color: #faf8fc;
  color: #333;
  padding: 0 0 60px 0;
  text-align: left;
}

.benefits-section h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-intro {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  text-align: center;
  color: #444;
}

.benefits-list {
  list-style: none;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.benefit-title {
  font-weight: 700;
  font-size: 22px;
  color: var(--main-color);
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.checkmark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--main-color);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.checkmark::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

/* Ingredients Section */
.ingredients-section {
  padding: 0 0 40px 0;
  background-color: white;
  color: #333;
  max-width: 100%;
  margin: 0 auto;
  font-size: 20px;
}

.ingredients-section h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.ingredients-intro {
  margin-bottom: 30px;
  line-height: 1.6;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ingredients-list {
  list-style: none;
  padding: 0 30px;
  margin: 0 auto;
  max-width: 1200px;
  margin-top: 25px;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.ingredient-number {
  min-width: 48px;
  min-height: 48px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
}

.ingredient-content strong {
  font-size: 24px;
  color: var(--main-color);
}

.ingredient-content p {
  margin: 5px 0 0 0;
  line-height: 1.6;
}

.ingredients-footer-text {
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  padding: 0 20px;
}

.image-grid-section {
  padding: 0;
  background-color: white;
  text-align: center;
}

.image-grid-section h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0;
  padding: 20px 0;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: bold;
}


.buying-background {
  background: var(--main-color);
  border-top: 4px solid var(--main-color);
  max-width: 600px;
  top: -1px;
}
.g-arrow {
  position: relative;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  height: 15px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border-top: none !important;
}

/* Footer CSS */
.footer-section {
  background: #fdfdfd;
  border-top: 3px solid var(--main-color);
  padding: 30px 20px 50px;
  font-size: 14px;
  color: #333;
}

.footer-disclaimer p {
  margin-bottom: 15px;
  line-height: 1.6;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  text-align: justify;
  padding: 0px 20px;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  max-width: 1200px;
  margin: 30px auto 0;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 14px;
  color: #666;
}

/* Mobile Sidebar */
.mobile-menu-icon {
  background: none;
  border: none;
  color: var(--main-color) !important;
  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(--main-color);
  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: 24px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 40px;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 250;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .header .header-container {
    padding: 0 16px;
  }
}

@media (max-width: 900px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    width: 90%;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-icon { display: block; margin-right: 10px;}
  .header .nav-links, .header .order-button { display: none; }
  
  html, body { overflow-x: hidden; }
  body { font-size: 16px; }
  
  .hero-section { flex-direction: column; padding: 10px 10px; }
  .product-image { min-width: 250px; max-width: 100%; }
  
  .certification-badges { flex-direction: column; align-items: center; gap: 15px; }
  .badge { width: 100%; max-width: 320px; }
  
  .guarantee-content { flex-direction: column; text-align: center; border-radius: 0; padding: 20px; }
  .gurantee-blog, .guarantee-text { width: 100%; padding: 10px; }
  .guarantee-text h3 { text-align: center; }
  
  .reviews-container { padding: 0 15px; }
  .review { padding: 15px; }
  
  .ingredient-item { flex-direction: column; align-items: center; text-align: center; }
  .ingredient-number { margin-bottom: 10px; }
  
  .bottom-banner h3 { font-size: 25px; }
  
  h2 { font-size: 25px !important; }
}

@media (max-width: 500px) {
  .buy-now-btn { padding: 12px 30px; font-size: 1.2em; }
  .current-price { font-size: 2.5em; }
  .per-bottle { font-size: 1em; }
  .product-title { font-size: 25px; }
}

.buy-now-btn-a {
  width: 100%;
  text-decoration: none;
}

/* =========================================
   Why Choose Section (Single Image)
========================================= */
.certifications {
  width: 100%;
  padding: 50px 20px;
  background-color: #ffffff; /* Background color */
  display: flex;
  justify-content: center;
  align-items: center;
}

.certifications-container {
  max-width: 1000px; /* Adjust this width based on your image size */
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.single-trust-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* Mobile Responsiveness for Trust Image */
@media screen and (max-width: 768px) {
  .certifications {
    padding: 30px 10px;
  }
}

/* =========================================
   Isolated Banner Section
========================================= */
.isolated-banner-section {
  width: 100%;
  padding: 40px 15px;
  background-color: #ffffff;
  display: block;
  clear: both; /* Prevents overlapping with pricing cards */
  position: relative;
  overflow: hidden;
}

.isolated-banner-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.isolated-banner-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  border: none;
  box-shadow: none; /* Removed shadow to prevent spacing layout issues */
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .isolated-banner-section {
    padding: 20px 10px;
  }
}