/* ============================================================
   LIPO FLOW – Main Stylesheet
   Product : Lipo Flow Weight Management Supplement
   Domain  : lipo-flow-us.com
   Theme   : Blue
   ============================================================ */

/* ── CSS Custom Properties (Change colors here only) ── */
:root {
  --main-color:    #0d47a1;   /* Primary blue – headers, badges, accents   */
  --main-dark:     #0a3575;   /* Darker blue for hover / deep backgrounds  */
  --main-light:    #e3f0ff;   /* Very light blue for subtle backgrounds     */
  --accent-color:  #ffe045;   /* Yellow CTA buttons                         */
  --accent-hover:  #e0a800;   /* Yellow hover state                         */
  --dark-bg:       #0d2346;   /* Deep navy for header bar if needed         */
}

/* ============================================================
   GLOBAL RESET & BASE
============================================================ */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  color: #000000;
  background-color: #ffffff;
  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
============================================================ */
.header {
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.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 */
.logo h2 {
  color: var(--main-color);
  font-weight: bold;
  font-size: 30px;
  margin: 0;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a {
  color: #333;
  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 Now Button (header) */
.order-button {
  background-color: var(--accent-color);
  color: #000;
  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: 0 !important;
}

/* Mobile hamburger – hidden on desktop */
.mobile-menu-icon {
  background: none;
  border: none;
  color: #000 !important;
  font-size: 32px;
  cursor: pointer;
  display: none;
}

/* ============================================================
   MOBILE SIDEBAR
============================================================ */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: var(--main-color);
  color: #fff;
  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: #fff;
  text-decoration: none;
  font-size: 24px;
  padding: 10px 20px;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  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;
}

/* ============================================================
   PRODUCT TITLE (H1 Banner)
============================================================ */
.product-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
  background-color: var(--main-color);
  text-align: center;
  margin-top: 0;
  padding: 10px 0;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 10px 0 20px;
  max-width: 1600px;
  margin: 0 auto;
  background-color: #ffffff;
}

.product-image {
  flex: 1;
  min-width: 350px;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.product-image img {
  height: auto;
  max-width: 100%;
}

.product-info {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
}

.product-description {
  margin-bottom: 5px;
  line-height: 1.5;
  color: #000;
  font-size: 20px;
}

/* Hero bullet list */
.benefits-lists {
  list-style: none;
  padding-left: 25px;
  margin-bottom: 2px;
}

.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;
}

/* ── CTA Buttons ── */
.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: #000;
  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: #000;
  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);
  transform: translateY(-2px);
}

/* Section-level CTA wrapper */
.section-cta {
  margin-top: 20px;
}

/* ============================================================
   CERTIFICATIONS / WHY CHOOSE
============================================================ */
.certifications {
  background-color: #ffffff;
  padding: 0 0 40px;
  text-align: center;
  color: #333;
}

.certifications h2 {
  background-color: var(--main-color);
  color: #ffffff;
  margin: 0 0 30px;
  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: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 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 0;
}

/* Trust Badge */
.trust-badge-wrapper {
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
}

.trust-badge-wrapper img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   WHAT IS LIPO FLOW (Product Details)
============================================================ */
.product-details {
  padding: 0 0 40px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  color: #333;
}

.product-details h2 {
  background-color: var(--main-color);
  color: #ffffff;
  text-align: center;
  margin: 0 0 15px;
  padding: 20px 0;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bold;
}

.product-details-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 20px;
  align-items: flex-start;
}

.product-details-image {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.product-details-image img {
  height: 300px;
  width: auto;
  display: block;
}

.product-details-text {
  flex: 1;
  min-width: 280px;
}

.product-details-content p {
  font-size: 20px;
  margin: 10px 0;
}

/* ============================================================
   HOW DOES LIPO FLOW WORK
============================================================ */
.how-it-works {
  padding: 0 0 40px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  color: #333;
}

.how-it-works h2 {
  background-color: var(--main-color);
  color: #ffffff;
  margin: 0 0 20px;
  padding: 20px 0;
  font-size: 30px;
  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-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;
}

.step-below-para {
  font-size: 20px;
  margin-top: 20px;
  color: #000;
  line-height: 1.6;
}

.ingredients-highlight {
  font-weight: bold;
  color: var(--main-color);
}

.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: #000;
  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
============================================================ */
.customer-reviews {
  background-color: #ffffff;
  padding: 0 0 40px;
  text-align: center;
}

.customer-reviews h2 {
  background-color: var(--main-color);
  color: #ffffff;
  margin: 0 0 30px;
  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: #ffffff;
  border-radius: 10px;
  border: 1px solid #eee;
  overflow: hidden;
  text-align: left;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4CAF50;
  font-size: 18px;
  margin-bottom: 0;
  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-avatar img {
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.reviewer-info h4 {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-weight: bold;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating svg {
  fill: #FFD700;
  width: 30px;
  height: 30px;
}

.review-text {
  color: #444;
  line-height: 1.5;
  font-size: 20px;
  margin: 0;
  font-weight: 500;
}

/* ============================================================
   PRICING SECTION
============================================================ */
.image-grid-section {
  padding: 0;
  background-color: #ffffff;
  text-align: center;
}

.image-grid-section h2 {
  background-color: var(--main-color);
  color: #ffffff;
  margin: 0;
  padding: 20px 0 0;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Downward arrow decoration below pricing heading */
.off-white-background {
  background-color: var(--main-color);
}

.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;
}

.p-4 {
  padding: 1rem !important;
}

/* Pricing Cards Container */
.pricing-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 10px;
  align-items: center;
}

/* Individual Card */
.product-card {
  border: 5px solid #ffffff;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

/* Card header bar (colour-coded per package) */
.header {
  color: #ffffff;
  padding: 5px 0;
  font-size: 1.5em;
  font-weight: 600;
  width: 100%;
  position: relative;
  z-index: 1;
}

.supply-days {
  display: block;
  font-size: 0.6em;
  font-weight: 400;
}

/* ── Package header colours ── */
.header-2x {
  background-color: #1565c0;   /* Medium blue – Try Two */
}

.header-6x {
  background-color: #43a047;   /* Green – Best Value    */
}

.header-4x {
  background-color: var(--main-color);   /* Primary blue – Most Popular */
}

.header-3x {
  background-color: #1565c0;   /* Medium blue – 3 bottles */
}

/* Best Value card */
.product-card.best-value {
  position: relative;
  z-index: 2;
  background-color: #e8f4fd;
  border-color: var(--main-color);
}

.product-card.best-value .header-6x {
  background-color: #43a047;
  position: relative;
  overflow: visible;
}

/* Most Popular card */
.product-card.most-popular {
  background-color: #eef7ff;
  border-color: var(--main-color);
}

/* Card content area */
.card-content {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product-image-new {
  width: auto;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  height: 220px;
}

/* Price display */
.price-section {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
}

.current-price {
  font-size: 3em;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1;
}

.per-bottle {
  font-size: 1.2em;
  color: #666;
  margin-left: 5px;
}

/* Package perks list */
.package-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  text-align: left;
  width: 100%;
}

.package-perks li {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 4px;
}

/* BUY NOW button */
.buy-now-btn {
  background-color: var(--accent-color);
  color: #333;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 80%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.buy-now-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.buy-now-btn-a {
  width: 100%;
  text-decoration: none;
}

/* Totals row */
.total-price {
  font-size: 1.1em;
  color: #555;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 600;
}

.original-total {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
  font-weight: 400;
}

.discounted-total {
  color: var(--main-color);
  font-size: 1.3em;
  font-weight: 700;
}

/* Shipping note */
.shipping-note {
  font-size: 0.9em;
  color: #666;
  margin: 0 0 10px;
}

.shipping-note.free-shipping {
  color: #43a047;
  font-weight: 700;
}

/* Payment method logos */
.payment-methods {
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.payment-methods img {
  height: 25px;
  width: auto;
  object-fit: contain;
}

/* Quality Assurance Banner (below pricing) */
.quality-assurance-banner {
  background-color: var(--main-light);
  border: 2px solid var(--main-color);
  border-radius: 12px;
  max-width: 900px;
  margin: 20px auto 40px;
  padding: 30px 40px;
  text-align: center;
}

.quality-assurance-banner .qa-stars span {
  font-size: 32px;
  color: #FFD700;
}

.quality-assurance-banner h3 {
  font-size: 26px;
  color: var(--main-color);
  margin: 10px 0;
}

.quality-assurance-banner p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================================
   INGREDIENTS SECTION
============================================================ */
.ingredients-section {
  padding: 0;
  background-color: #ffffff;
  color: #333;
  max-width: 100%;
  margin: 0 auto;
  font-size: 20px;
}

.ingredients-section h2 {
  background-color: var(--main-color);
  color: #ffffff;
  margin: 0 0 30px;
  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: 25px auto 0;
  max-width: 1200px;
}

.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: 20px;
  flex-shrink: 0;
}

.ingredient-content p {
  margin: 5px 0 0;
  line-height: 1.6;
}

/* ============================================================
   SCIENCE & GUARANTEE SECTION
============================================================ */
.science-section {
  padding: 40px 0;
  background-color: #ffffff;
  text-align: center;
  color: #333;
  font-size: 20px;
}

/* FDA cert logo bar */
.cert-logos {
  background-color: var(--main-color);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cert-logos img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.science-heading {
  font-size: 30px;
  font-weight: 700;
  margin: 40px 0 30px;
  text-transform: uppercase;
}

/* Three-step row */
.science-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.science-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 260px;
  text-align: center;
  gap: 10px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.step-arrow {
  font-size: 32px;
  font-weight: bold;
  margin: 0 10px;
  align-self: center;
  color: var(--main-color);
}

.step-desc {
  line-height: 1.4;
  margin: 0;
  font-size: 18px;
}

/* Money Back Guarantee Block */
.guarantee-block {
  background-color: #ffffff;
  padding: 20px;
  max-width: 1200px;
  margin: 40px auto;
}

.guarantee-block h3 {
  margin-top: 0;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
  color: #ffffff;
}

.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;
}

.gurantee-blog {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-text {
  width: 50%;
  padding: 40px;
}

.guarantee-content p {
  margin: 0 0 15px;
  line-height: 1.6;
  color: #ffffff;
  font-size: 18px;
}

.guarantee-content > span,
.guarantee-content img {
  width: 100%;
  height: auto;
  padding: 25px;
}

/* ============================================================
   BENEFITS SECTION
============================================================ */
.benefits-section {
  background-color: #f4f8ff;
  color: #333;
  padding: 0 0 60px;
  text-align: left;
}

.benefits-section h2 {
  background-color: var(--main-color);
  color: #ffffff;
  margin: 0 0 30px;
  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;
  max-width: 1200px;
  text-align: center;
  color: #444;
}

.benefits-list {
  list-style: none;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.benefits-list li {
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-weight: 700;
  font-size: 20px;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* Checkmark icon */
.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;
}

/* ============================================================
   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;
  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;
  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: #eef7ff;
}

.faq-questions li.open .faq-q {
  font-weight: 700;
  color: var(--main-color);
}

.faq-q {
  display: block;
  font-size: 20px;
  padding: 5px 0;
}

.faq-q::after {
  content: "+";
  float: right;
  font-weight: bold;
  color: var(--main-color);
}

.faq-questions li.open .faq-q::after {
  content: "−";
}

.faq-a {
  margin-top: 15px;
  color: #555;
  font-size: 20px;
  line-height: 1.6;
  padding: 0 10px;
}

/* FAQ Top CTA Banner */
.faq-banners {
  display: flex;
  align-items: center;
  background: var(--main-color);
  border: 1px solid #ccc;
  padding: 25px 30px;
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap;
  border-radius: 15px;
}

.banner-image {
  width: 50%;
}

.banner-image img {
  width: 80%;
  display: block;
  height: auto;
}

.banner-content {
  width: 50%;
}

.banner-content h3 {
  margin: 0 0 10px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

/* FAQ Answer Detail Block */
.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: 22px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--main-color);
}

.answer-subheading {
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 5px;
  color: var(--main-color);
}

/* FAQ Bottom Banner */
.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;
  border: none;
  padding: 0;
}

.bottom-banner h3 {
  background: var(--main-color);
  color: #fff;
  width: 100%;
  padding: 15px 0;
  margin: 0;
  font-size: 40px;
}

.bottom-banner .regular-price.small {
  font-size: 18px;
  margin: 0;
  color: #000;
  font-weight: bold;
}

.bottom-banner .discounted {
  font-size: 25px;
  color: var(--main-color);
  font-weight: 700;
}

.regular-price {
  font-size: 20px;
  margin: 0 0 15px;
  color: #fff;
}

/* ============================================================
   FOOTER
============================================================ */
.footer-section {
  background: #fff;
  border-top: 2px solid var(--main-color);
  padding: 30px 20px 50px;
  font-size: 14px;
  color: #000;
}

/* Footer nav link row (above disclaimer) */
.footer-nav-links {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-nav-links a {
  color: var(--main-color);
  text-decoration: none;
  margin: 0 5px;
}

.footer-nav-links a:hover {
  text-decoration: underline;
}

/* Advertising Disclosure */
.footer-advertising-disclosure {
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 12px 20px;
  background-color: #fff8e1;
  border-left: 4px solid var(--accent-color);
  border-radius: 4px;
}

.footer-advertising-disclosure p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Main disclaimer block */
.footer-disclaimer p {
  margin-bottom: 15px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  text-align: justify;
  padding: 0 20px;
  max-width: 1200px;
}

/* GDPR notice */
.footer-gdpr {
  max-width: 1200px;
  margin: 15px auto;
  padding: 0 20px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

.footer-gdpr a {
  color: var(--main-color);
  text-decoration: underline;
}

/* Footer bottom bar */
.footer-bottom {
  border: 1px solid var(--main-color);
  border-radius: 20px;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--main-color);
  background-color: #e3f0ff;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  background-color: var(--main-color);
  color: #fff;
}

.social-icons i {
  font-size: 20px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--main-color);
  text-decoration: none;
  margin: 0 5px;
  font-size: 13px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 13px;
  color: #000;
}

/* ============================================================
   UTILITY
============================================================ */
.off-white-background {
  background: var(--main-color);
}

.image-grid-section .image-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.image-row {
  max-width: 1200px;
  margin: 0 auto;
}

.image-link {
  display: inline-block;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 30%;
}

.image-link img {
  display: block;
  width: 100%;
  height: auto;
}

.image-link:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Privacy page generic */
.para-privacy-page {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 10px;
}

/* ============================================================
   RESPONSIVE – Medium (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .header .header-container,
  .header-container {
    padding: 0 16px;
  }
}

/* ============================================================
   RESPONSIVE – Tablet (≤ 900px)
============================================================ */
@media (max-width: 900px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
    max-width: 350px;
  }

  .product-card.best-value {
    transform: scale(1);
  }
}

/* ============================================================
   RESPONSIVE – Mobile (≤ 768px)
============================================================ */
@media (max-width: 768px) {

  /* Show hamburger, hide desktop nav */
  .mobile-menu-icon {
    display: block;
    margin-right: 10px;
  }

  .header .nav-links {
    display: none;
  }

  .header .order-button {
    display: none;
  }

  /* Base font */
  body {
    font-size: 16px;
  }

  /* Hero */
  .hero-section {
    flex-direction: column;
    gap: 5px;
  }

  .product-image {
    min-width: 250px;
    max-width: 100%;
  }

  .product-description {
    font-size: 16px;
  }

  .product-title {
    font-size: 25px;
  }

  .benefits-lists li {
    font-size: 16px;
  }

  .cta-button,
  .secondary-button {
    font-size: 16px;
    margin: auto;
    display: flex;
    justify-content: center;
  }

  /* Certifications */
  .certifications h2 {
    font-size: 25px;
  }

  .certification-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .badge {
    margin-bottom: 20px;
  }

  /* Product Details */
  .product-details h2 {
    font-size: 25px;
  }

  .product-details-content {
    flex-direction: column;
    padding: 0 10px;
  }

  .product-details-image img {
    height: auto;
    max-width: 80%;
    margin: 0 auto;
  }

  .product-details-content p {
    font-size: 16px;
    text-align: justify;
  }

  /* How It Works */
  .how-it-works h2 {
    font-size: 25px;
  }

  .how-it-works-intro {
    font-size: 16px;
    text-align: justify;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 16px;
    text-align: justify;
  }

  .step-below-para {
    font-size: 16px !important;
  }

  .how-it-works .cta-button {
    font-size: 16px;
  }

  /* Reviews */
  .customer-reviews h2 {
    font-size: 25px;
  }

  .reviews-container {
    padding: 0 15px;
  }

  .review {
    padding: 15px;
  }

  .review-text {
    font-size: 16px;
  }

  .reviewer-info h4 {
    font-size: 16px;
  }

  /* Pricing */
  .image-grid-section h2 {
    font-size: 25px;
  }

  .buy-now-btn {
    padding: 12px 30px;
    font-size: 1.2em;
  }

  .current-price {
    font-size: 2.5em;
  }

  .per-bottle {
    font-size: 1em;
  }

  .quality-assurance-banner {
    padding: 20px 15px;
    margin: 20px 15px;
  }

  .quality-assurance-banner h3 {
    font-size: 22px;
  }

  /* Ingredients */
  .ingredients-section h2 {
    font-size: 25px;
  }

  .ingredients-section {
    font-size: 16px;
  }

  .ingredient-item {
    flex-direction: column;
  }

  .ingredient-number {
    margin-bottom: 10px;
  }

  .ingredients-list {
    padding: 0 15px;
  }

  /* Science */
  .science-heading {
    font-size: 25px;
    margin: 20px 0;
  }

  .science-section {
    padding: 20px 0 5px;
  }

  .science-step {
    flex-direction: column;
  }

  .step-arrow {
    display: none;
  }

  /* Guarantee */
  .guarantee-content {
    flex-direction: column;
    text-align: center;
    border-radius: 0;
    padding: 10px;
  }

  .gurantee-blog,
  .guarantee-text {
    width: 100%;
    padding: 10px;
  }

  .guarantee-content img {
    width: 100%;
    padding: 5px;
  }

  .guarantee-block h3 {
    text-align: center;
    font-size: 22px;
  }

  .guarantee-content p {
    font-size: 16px;
    text-align: justify;
  }

  .guarantee-block {
    padding: 0;
  }

  /* Benefits */
  .benefits-section h2 {
    font-size: 25px;
  }

  .benefits-section {
    padding: 0 0 10px;
    font-size: 16px;
  }

  .benefits-intro {
    font-size: 16px;
  }

  .benefit-title {
    font-size: 16px;
  }

  .benefit-desc {
    font-size: 16px;
  }

  /* FAQ */
  .faq-heading {
    font-size: 25px;
    margin: 0 0 20px;
  }

  .faq-questions,
  .faq-a {
    font-size: 16px;
  }

  .faq-banners {
    flex-direction: column;
    padding: 10px;
  }

  .banner-image,
  .banner-content {
    width: 100%;
  }

  .banner-image img {
    margin: auto;
    display: block;
  }

  .banner-content h3 {
    text-align: center;
    font-size: 22px;
  }

  .order-button {
    margin: auto;
    display: block;
    text-align: center;
  }

  .faq-answer-block {
    padding: 20px 10px;
  }

  .faq-answer-block h3 {
    margin: 0 0 10px;
    font-size: 18px;
  }

  .faq-banner {
    padding-bottom: 20px;
  }

  .bottom-banner h3 {
    font-size: 22px;
  }

  /* Footer */
  .footer-section {
    padding: 20px 10px;
  }

  .footer-disclaimer {
    padding: 0 !important;
  }

  .footer-disclaimer p {
    padding: 0 !important;
    font-size: 13px;
  }

  .footer-bottom {
    padding: 20px 10px;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
  }

  .hero-section,
  .certification-badges,
  .how-it-works-content,
  .reviews-container,
  .ingredients-intro,
  .ingredients-list,
  .image-row,
  .science-steps,
  .guarantee-content,
  .benefits-content,
  .faq-questions,
  .footer-disclaimer {
    padding-left: 10px;
    padding-right: 10px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  img,
  .product-image img {
    max-width: 100%;
    height: auto;
  }

  .product-info,
  .benefits-content,
  .ingredients-intro {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* ============================================================
   RESPONSIVE – Small (≤ 640px)
============================================================ */
@media (max-width: 640px) {
  .header {
    padding: 12px 0;
  }

  .header .header-container,
  .header-container {
    padding: 0 12px;
  }

  .nav-links a {
    padding: 0 8px;
  }
}

/* ============================================================
   RESPONSIVE – Extra-small (≤ 480px)
============================================================ */
@media (max-width: 480px) {
  .header {
    padding: 10px 0;
  }

  .header .header-container,
  .header-container {
    padding: 0 10px;
  }

  .g-arrow {
    max-width: 350px;
  }
}

/* ============================================================
   QUALITY ASSURANCE BANNER – Label Images Section
============================================================ */

/* Override/extend existing .quality-assurance-banner */
.quality-assurance-banner {
    background-color: var(--main-color);
    color: #ffffff;
    text-align: center;
    padding: 40px 30px 50px;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
}

.quality-assurance-banner h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
}

.quality-assurance-banner p {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 30px;
}

/* CTA Button inside QA banner */
.qa-cta-btn {
    background-color: var(--accent-color) !important;
    color: #000 !important;
    font-size: 24px !important;
    padding: 16px 36px !important;
    border-radius: 50px !important;
    margin-bottom: 40px !important;
    display: inline-flex !important;
}

.qa-cta-btn:hover {
    background-color: var(--accent-hover) !important;
    transform: translateY(-2px);
}

/* ── Two label images row ── */
.qa-label-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.qa-label-img {
    flex: 1;
    min-width: 280px;
    max-width: 520px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.qa-label-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .quality-assurance-banner {
        padding: 30px 16px 40px;
    }

    .quality-assurance-banner h3 {
        font-size: 26px;
    }

    .quality-assurance-banner p {
        font-size: 16px;
    }

    .qa-cta-btn {
        font-size: 18px !important;
        padding: 14px 24px !important;
    }

    .qa-label-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .qa-label-img {
        min-width: unset;
        width: 100%;
        max-width: 100%;
    }
}
