/* =========================================
   FitCafe™ - Premium USA Landing Page CSS
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --main-color: #c0392b;
  --main-dark: #922b21;
  --accent-color: #27ae60;
  --accent-hover: #1e8449;
  --text-main: #222222;
  --text-muted: #555555;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(0,0,0,0.10);
  --transition: all 0.3s ease;
}

/* --- Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.7;
  font-size: 20px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-main);
}
h2 { font-size: 30px; }

/* =========================================
   HEADER
   ========================================= */
.header {
  width: 100%;
  background-color: var(--white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.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;
}

.logo { display: flex; align-items: center; gap: 8px; }
.logo h2 { color: var(--text-main); font-weight: 900; font-size: 28px; margin: 0; }
.logo-icon { font-size: 24px; }
.logo-accent { color: var(--main-color); }

.newHeadBox { display: flex; align-items: center; gap: 20px; }

.nav-links { display: flex; gap: 5px; }
.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 0 12px;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--main-color); }

.order-button {
  background-color: var(--main-color);
  color: var(--white);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  transition: background-color 0.3s;
}
.order-button:hover { background-color: var(--accent-hover); }
.order-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" fill="white"><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>');
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 6px;
}
.max-button-padding { padding: 14px 28px; font-size: 26px; }
.mobile-button { margin: 0 !important; }

.mobile-menu-icon {
  background: none; border: none;
  color: var(--text-main); 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: var(--white); 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: var(--white); text-decoration: none; font-size: 22px; padding: 10px 20px; }
.close-btn { background: none; border: none; color: var(--white); font-size: 36px; position: absolute; top: 15px; 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; z-index: 250; }
.sidebar-overlay.show { opacity: 1; visibility: visible; }

/* =========================================
   PRODUCT TITLE H1
   ========================================= */
.product-title {
  font-size: 28px; font-weight: 800; margin: 0;
  color: var(--white); background-color: var(--main-color);
  text-align: center; padding: 12px 20px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 40px; padding: 30px 20px;
  max-width: 1200px; margin: 0 auto;
}

.product-image { flex: 1; min-width: 300px; max-width: 500px; display: flex; justify-content: center; }
.product-image img { width: 100%; height: auto; }

.product-info { flex: 2; min-width: 300px; max-width: 680px; }
.product-description { margin-bottom: 16px; line-height: 1.7; font-size: 20px; }
.product-info h3 { font-size: 22px; margin-bottom: 12px; color: var(--main-color); }

.benefits-lists { list-style: none; margin-bottom: 24px; padding-left: 0; }
.benefits-lists li {
  margin-bottom: 10px; padding-left: 28px;
  position: relative; font-size: 20px; font-weight: 600;
  display: flex; align-items: flex-start;
}
.benefits-lists li::before {
  content: '✓'; color: var(--accent-color);
  position: absolute; left: 0; font-weight: 900; font-size: 1.1rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }

.cta-button, .secondary-button {
  display: inline-flex; align-items: center;
  background-color: var(--accent-color); color: var(--white);
  font-weight: 700; padding: 14px 28px; border-radius: 30px;
  text-decoration: none; font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}
.cta-button::after {
  content: ""; display: inline-block; width: 22px; height: 22px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><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>');
  background-repeat: no-repeat; background-size: contain; margin-left: 8px;
}
.secondary-button::after {
  content: ""; display: inline-block; width: 18px; height: 18px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z"/></svg>');
  background-repeat: no-repeat; background-size: contain; margin-left: 6px;
}
.cta-button:hover, .secondary-button:hover {
  background-color: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(39,174,96,0.4);
}

/* =========================================
   CERTIFICATIONS
   ========================================= */
.certifications { background-color: var(--white); padding: 0 0 40px 0; text-align: center; }
.certifications h2 {
  background-color: var(--main-color); color: var(--white);
  margin: 0 0 30px 0; padding: 20px 0;
  font-size: 30px; text-transform: uppercase; font-weight: 800;
}
.certification-badges {
  display: flex; justify-content: space-around; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto; gap: 15px; padding: 0 20px;
}
.badge {
  display: flex; flex-direction: column; align-items: center;
  max-width: 240px; background-color: #f8f8f8;
  padding: 20px 15px; border-radius: 12px;
  transition: var(--transition); border: 2px solid transparent;
}
.badge:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--main-color); }
.badge img { max-width: 130px; max-height: 130px; object-fit: contain; margin-bottom: 10px; transition: transform 0.3s; }
.badge:hover img { transform: scale(1.08); }
.badge-title { font-weight: 800; font-size: 18px; margin: 8px 0 4px; }
.badge-description { font-size: 16px; text-align: center; color: var(--text-muted); line-height: 1.5; }

/* =========================================
   PRODUCT DETAILS
   ========================================= */
.product-details { padding: 0 0 40px 0; background-color: var(--white); }
.product-details h2 {
  background-color: var(--main-color); color: var(--white);
  text-align: center; margin: 0 0 20px 0; padding: 20px 0;
  text-transform: uppercase; font-size: 30px; font-weight: 800;
}
.product-details-content {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap;
}
.product-details-img { flex: 1; min-width: 250px; text-align: center; }
.product-details-img img { height: 320px; width: auto; margin: auto; display: block; }
.product-details-text { flex: 2; min-width: 280px; }
.product-details-text p { font-size: 20px; margin: 0 0 16px 0; line-height: 1.7; }

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works { padding: 0 0 40px 0; background-color: var(--white); }
.how-it-works h2 {
  background-color: var(--main-color); color: var(--white);
  margin: 0 0 20px 0; padding: 20px 0;
  font-size: 30px; text-align: center; font-weight: 800;
}
.how-it-works-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.how-it-works-intro { font-size: 20px; color: var(--text-main); margin-bottom: 20px; font-weight: 500; }
.how-it-works-steps { display: flex; flex-direction: column; gap: 16px; }
.how-it-works-step { margin-bottom: 10px; }
.step-title { font-weight: 700; font-size: 24px; color: var(--main-color); display: block; margin-bottom: 8px; }
.step-description { font-size: 20px; color: var(--text-main); line-height: 1.7; }
.step-below-para { font-size: 20px; margin-top: 20px; color: var(--text-muted); }
.ingredients-highlight { font-weight: 700; color: var(--main-color); }
.cta-section { text-align: center; margin-top: 30px; }

/* =========================================
   HOW TO USE (3 STEPS)
   ========================================= */
.how-to-use { padding: 0 0 50px 0; background-color: var(--light-bg); }
.how-to-use h2 {
  background-color: var(--main-color); color: var(--white);
  text-align: center; margin: 0 0 0 0; padding: 20px;
  font-size: 30px; font-weight: 800; text-transform: uppercase;
}
.how-use-sub { text-align: center; font-size: 18px; color: var(--text-muted); padding: 14px 20px 30px; }
.steps-container {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 20px; max-width: 1100px; margin: 0 auto; padding: 0 20px; flex-wrap: wrap;
}
.step-card {
  background: var(--white); border-radius: 16px; padding: 30px 24px;
  flex: 1; min-width: 220px; max-width: 300px; text-align: center;
  box-shadow: var(--shadow); border-top: 4px solid var(--main-color);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background-color: var(--main-color); color: var(--white);
  font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.step-arrow-h { font-size: 36px; font-weight: bold; color: var(--main-color); align-self: center; }

/* =========================================
   CUSTOMER REVIEWS
   ========================================= */
.customer-reviews { background-color: var(--white); padding: 0 0 40px 0; text-align: center; }
.customer-reviews h2 {
  background-color: var(--main-color); color: var(--white);
  margin: 0 0 20px 0; padding: 20px 0;
  font-size: 30px; text-transform: uppercase; font-weight: 800;
}
.reviews-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 20px; }
.reviews-container { display: flex; flex-direction: column; gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.review {
  background: var(--white); border-radius: 12px; border: 1px solid #eee;
  padding: 24px; text-align: left; box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.review:hover { box-shadow: var(--shadow); }
.reviewer-profile { display: flex; align-items: center; gap: 15px; margin-bottom: 14px; }
.reviewer-avatar img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 3px solid var(--main-color); }
.verified-badge { display: flex; align-items: center; gap: 5px; color: #27ae60; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.verified-badge svg { fill: #27ae60; }
.reviewer-info h4 { margin: 4px 0; font-size: 18px; font-weight: 700; }
.rating { font-size: 20px; }
.review-text { color: var(--text-muted); font-size: 18px; line-height: 1.7; font-style: italic; margin: 0; }

/* =========================================
   PRICING
   ========================================= */
.image-grid-section { padding: 40px 0; background-color: #fff; text-align: center; font-family: 'Montserrat', sans-serif; }
.image-grid-section h2 {
    background-color: #111; color: #fff;
    margin: 0; padding: 20px; font-size: 30px;
    text-transform: uppercase; font-weight: 800;
}
.pricing-sub { font-size: 18px; font-weight: 600; color: #111; padding: 14px 20px 0; font-family: 'Open Sans', sans-serif; }

.pricing-container {
    display: flex; gap: 25px; flex-wrap: wrap;
    justify-content: center; margin: 60px auto 30px; /* Extra margin for floating badge */
    align-items: stretch; padding: 0 20px; max-width: 1150px;
}

/* Card Styling */
.product-card {
    background-color: #fff5f5; /* Light Pinkish Background */
    border: 1px solid #fbdada;
    border-radius: 8px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 330px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; position: relative; padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

/* Best Value Middle Card */
.product-card.best-value {
    border: 2px solid #e63946; /* Red Border */
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);
}
.product-card.best-value:hover { transform: scale(1.04); }

/* Top Floating Badge for 6 Bottles */
.top-floating-badge {
    position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
    background-color: #f8d7da; color: #333;
    padding: 8px 15px; font-size: 12px; font-weight: 600;
    border-radius: 5px; width: 85%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: 'Open Sans', sans-serif;
}
.top-floating-badge::after {
    content: ""; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
    border-width: 6px 6px 0; border-style: solid;
    border-color: #f8d7da transparent transparent transparent;
}

/* Headers */
.card-header-main {
    font-size: 30px; font-weight: 900; color: #000;
    padding: 25px 10px 15px; text-transform: uppercase;
}
.card-sub-header {
    background-color: #ffcccc; /* Darker Pink Strip */
    color: #222; font-size: 13px; font-weight: 700;
    padding: 10px 0; width: 100%; margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
}

/* Images & Save Badge */
.card-content { padding: 0 20px; display: flex; flex-direction: column; align-items: center; width: 100%; box-sizing: border-box; }
.image-wrapper { position: relative; display: inline-block; margin-bottom: 10px; }
.product-image-new { width: auto; height: 180px; object-fit: contain; }

.save-badge {
    position: absolute; top: -10px; right: -25px;
    background-color: #ffe600; /* Vibrant Yellow */
    color: #000; border-radius: 50%;
    width: 80px; height: 80px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    font-weight: 800; font-size: 13px; line-height: 1.1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); z-index: 10;
}
.save-amt { font-size: 22px; font-weight: 900; }

/* Pricing Text */
.price-section { display: flex; align-items: baseline; justify-content: center; margin-bottom: 5px; }
.current-price { font-size: 60px; font-weight: 900; color: #000; line-height: 1; }
.per-bottle { font-size: 20px; font-weight: 700; color: #000; margin-left: 2px; }
.total-price { font-size: 11px; color: #555; text-transform: uppercase; font-weight: 600; margin-bottom: 25px; font-family: 'Open Sans', sans-serif; }

/* Green Add To Cart Button */
.buy-now-btn-a { width: 100%; text-decoration: none; display: block; margin-bottom: 5px; }
.buy-now-btn {
    background-color: #00cc2a; /* Bright Green */
    color: #fff; border: none;
    padding: 16px 30px; border-radius: 50px;
    font-size: 20px; font-weight: 800;
    cursor: pointer; width: 100%;
    position: relative; transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 204, 42, 0.3);
    display: flex; justify-content: center; align-items: center;
}
.buy-now-btn:hover { background-color: #00b325; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 204, 42, 0.4); }
.btn-arrow { position: absolute; right: 20px; font-size: 14px; }

/* Payment Gateway Section */
.secure-text { font-size: 12px; color: #444; margin-bottom: 12px; font-family: 'Open Sans', sans-serif; }
.payment-methods { display: flex; justify-content: center; }
.payment-methods img { height: 22px; width: auto; object-fit: contain; }

/* =========================================
   INGREDIENTS
   ========================================= */
.ingredients-section { padding: 0; background-color: var(--white); font-size: 20px; }
.ingredients-section h2 {
  background-color: var(--main-color); color: var(--white);
  margin: 0; padding: 20px 0; font-size: 30px;
  text-transform: uppercase; text-align: center; font-weight: 800;
}
.ingredients-intro { max-width: 1200px; margin: 20px auto 0; padding: 0 20px; font-size: 20px; line-height: 1.7; }
.ingredients-list { list-style: none; padding: 10px 30px 30px; max-width: 1200px; margin: 0 auto; }
.ingredient-item {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 30px; padding: 20px; border-radius: 12px;
  background: #fafafa; border: 1px solid #f0f0f0; transition: var(--transition);
}
.ingredient-item:hover { box-shadow: var(--shadow); border-color: var(--main-color); }
.ingredient-number {
  min-width: 48px; min-height: 48px;
  background-color: var(--main-color); color: var(--white);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 20px; flex-shrink: 0;
}
.ingredient-content strong { font-size: 22px; color: var(--main-color); display: block; margin-bottom: 6px; }
.ingredient-content p { margin: 0; line-height: 1.7; font-size: 18px; color: var(--text-muted); }

/* =========================================
   SCIENCE / GUARANTEE
   ========================================= */
.science-section { padding: 40px 0; background-color: var(--white); text-align: center; font-size: 20px; }
.science-heading { font-size: 26px; font-weight: 800; margin: 30px 20px; text-transform: uppercase; }
.science-steps {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 30px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto 40px; padding: 0 20px;
}
.science-step { display: flex; flex-direction: column; align-items: center; max-width: 260px; text-align: center; gap: 12px; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background-color: var(--main-color); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; flex-shrink: 0;
}
.step-arrow { font-size: 30px; font-weight: bold; color: var(--main-color); align-self: center; }
.science-step .step-title { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.science-step .step-desc { font-size: 16px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.guarantee-block { max-width: 1200px; margin: 20px auto; padding: 0 20px; }
.guarantee-content {
  display: flex; align-items: center; gap: 0;
  background-color: var(--main-color); border-radius: 16px;
  flex-wrap: nowrap; overflow: hidden;
}
.gurantee-blog { width: 45%; display: flex; align-items: center; justify-content: center; padding: 20px; }
.gurantee-blog img { width: 100%; height: auto; max-width: 220px; }
.guarantee-text { width: 55%; padding: 30px; text-align: left; }
.guarantee-text h3 { font-size: 26px; font-weight: 800; color: var(--white); margin: 0 0 16px; }
.guarantee-text p { color: var(--white); font-size: 18px; line-height: 1.7; margin: 0; }

/* =========================================
   BENEFITS
   ========================================= */
.benefits-section { background-color: var(--light-bg); padding: 0 0 50px 0; }
.benefits-section h2 {
  background-color: var(--main-color); color: var(--white);
  margin: 0 0 30px 0; padding: 20px 0;
  font-size: 30px; text-transform: uppercase; text-align: center; font-weight: 800;
}
.benefits-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.benefits-intro { font-size: 20px; line-height: 1.6; text-align: center; color: var(--text-muted); margin-bottom: 30px; }
.benefits-list { list-style: none; padding: 0; max-width: 1200px; margin: 0 auto; }
.benefits-list li { margin-bottom: 16px; }
.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: 12px; padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: var(--transition);
}
.benefit-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.checkmark {
  width: 34px; height: 34px; 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: var(--white); font-weight: 800; font-size: 18px;
}
.benefit-content { flex: 1; }
.benefit-title { font-weight: 700; font-size: 20px; color: var(--text-main); margin-bottom: 6px; }
.benefit-desc { font-size: 18px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* =========================================
   COMPARISON TABLE
   ========================================= */
.comparison-section { padding: 0 0 50px 0; background-color: var(--white); }
.comparison-section h2 {
  background-color: var(--main-color); color: var(--white);
  margin: 0 0 30px 0; padding: 20px; font-size: 30px;
  text-transform: uppercase; text-align: center; font-weight: 800;
}
.comparison-table-wrap { max-width: 900px; margin: 0 auto; padding: 0 20px; overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 18px; box-shadow: var(--shadow); border-radius: 14px; overflow: hidden; }
.comparison-table thead tr { background-color: var(--main-color); color: var(--white); }
.comparison-table th { padding: 16px 20px; font-weight: 800; font-size: 18px; text-align: center; }
.comparison-table th.feature-col { text-align: left; }
.comparison-table th.fitcafe-col { background-color: var(--main-dark); }
.comparison-table tbody tr:nth-child(even) { background-color: #fafafa; }
.comparison-table tbody tr:hover { background-color: #fff5f5; }
.comparison-table td { padding: 14px 20px; text-align: center; border-bottom: 1px solid #f0f0f0; font-size: 18px; color: var(--text-muted); }
.comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--text-main); }
.comparison-table td.fitcafe-col { background-color: #fff8f8; }
.check { font-size: 20px; color: var(--accent-color); font-weight: 900; }
.cross { font-size: 20px; color: #e74c3c; }

/* =========================================
   FAQ
   ========================================= */
.faq-section { background: var(--white); padding: 0; font-size: 20px; }
.faq-heading {
  background-color: var(--main-color); color: var(--white);
  margin: 0 0 30px 0; padding: 20px 0; font-size: 30px;
  text-transform: uppercase; text-align: center; font-weight: 800;
}
.faq-questions { list-style: none; padding: 0; margin: 0 auto 40px; max-width: 1200px; }
.faq-questions li { padding: 14px 20px; border-bottom: 1px solid #e8e8e8; cursor: pointer; transition: background 0.2s; }
.faq-questions li:hover { background: #fef9f9; }
.faq-questions li.open .faq-q { font-weight: 700; color: var(--main-color); }
.faq-q { font-size: 20px; font-weight: 600; display: block; }
.faq-q::after { content: "+"; float: right; font-weight: 700; color: var(--main-color); }
.faq-questions li.open .faq-q::after { content: "−"; }
.faq-a { margin-top: 12px; color: var(--text-muted); font-size: 18px; line-height: 1.7; }

.faq-banners {
  display: flex; align-items: center;
  background: var(--main-color); padding: 25px 30px;
  max-width: 1200px; margin: 30px auto;
  flex-wrap: wrap; border-radius: 16px;
}
.banner-image { width: 50%; }
.banner-image img { width: 80%; display: block; height: auto; }
.banner-content { width: 50%; }
.banner-content h3 { font-size: 32px; font-weight: 800; color: var(--white); margin: 0 0 16px; }
.regular-price { font-size: 18px; color: var(--white); margin: 0 0 12px; }

/* =========================================
   BOTTOM FAQ BANNER STYLING
   ========================================= */
.bottom-banner {
    background: linear-gradient(135deg, #fff5f5 0%, #ffebeb 100%);
    border: 2px solid #fbdada;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    margin: 50px auto;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.08);
    font-family: 'Open Sans', sans-serif;
}

.bottom-banner h3 {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.banner-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.bottom-product-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}
.bottom-product-img:hover {
    transform: scale(1.05);
}

.banner-pricing-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.regular-price {
    font-size: 18px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}
.strike-through {
    text-decoration: line-through;
    color: #999;
}

.discounted {
    font-size: 32px;
    color: #e63946;
    font-weight: 900;
    margin-bottom: 20px;
    display: block;
}

.order-button {
    background-color: #c0392b; /* Match the bright green */
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 204, 42, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.order-button:hover {
    background-color: #00b325;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 204, 42, 0.4);
}
.order-button .btn-arrow {
    margin-left: 10px;
    font-size: 16px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .banner-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .bottom-banner h3 {
        font-size: 22px;
    }
    .discounted {
        font-size: 26px;
    }
    .order-button {
        font-size: 18px;
        padding: 15px 30px;
    }
}

.faq-answer-block { max-width: 1200px; margin: 0 auto; padding: 40px 20px; font-size: 18px; line-height: 1.7; }
.faq-answer-block h3 { font-size: 22px; font-weight: 700; margin: 0 0 16px; }
.answer-subheading { font-weight: 700; margin-top: 20px; margin-bottom: 6px; color: var(--text-main); }

/* =========================================
   FOOTER
   ========================================= */
.footer-section { background: var(--white); border-top: 3px solid var(--main-color); padding: 30px 20px 50px; font-size: 14px; }
.footer-disclaimer p { margin-bottom: 14px; line-height: 1.7; font-size: 13px; text-align: justify; max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 10px; }
.footer-bottom { border: 1px solid #ddd; border-radius: 16px; margin-top: 24px; padding: 20px; text-align: center; max-width: 1200px; margin-left: auto; margin-right: auto; }
.social-icons { display: flex; gap: 12px; justify-content: center; margin-bottom: 14px; }
.social-icons a { display: flex; justify-content: center; align-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--white); background-color: var(--main-color); text-decoration: none; transition: var(--transition); }
.social-icons a:hover { transform: scale(1.1); background-color: var(--main-dark); }
.social-icons i { font-size: 18px; }
.footer-links { margin-bottom: 10px; font-size: 14px; }
.footer-links a { color: var(--text-main); text-decoration: none; margin: 0 6px; }
.footer-links a:hover { color: var(--main-color); text-decoration: underline; }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .header-container { padding: 0 16px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .mobile-menu-icon { display: block; }
  .header .nav-links, .header .order-button { display: none; }

  .hero-section { flex-direction: column; gap: 16px; padding: 20px 15px; }
  .product-image { min-width: 220px; max-width: 100%; }
  .product-title { font-size: 22px; }
  .product-description, .benefits-lists li { font-size: 16px; }
  .cta-button, .secondary-button { font-size: 16px; margin: 5px auto; }
  .hero-cta { justify-content: center; }

  .certifications h2, .product-details h2, .how-it-works h2,
  .customer-reviews h2, .image-grid-section h2, .ingredients-section h2,
  .benefits-section h2, .comparison-section h2, .faq-heading,
  .how-to-use h2 { font-size: 22px; }

  .certification-badges { flex-direction: column; align-items: center; gap: 16px; }
  .product-details-content { flex-direction: column; }
  .product-details-img img { height: 220px; }
  .product-details-text p { font-size: 16px; text-align: justify; }

  .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; }

  .steps-container { flex-direction: column; align-items: center; }
  .step-arrow-h { display: none; }
  .step-card { max-width: 100%; }

  .review-text { font-size: 16px; }
  .reviews-container { padding: 0 10px; }

  .pricing-container { flex-direction: column; align-items: center; }
  .product-card { width: 92%; max-width: 360px; }
  .product-card.best-value { transform: scale(1); }

  .science-steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .science-section { padding: 20px 0; }
  .science-heading { font-size: 20px; margin: 16px 10px; }

  .guarantee-content { flex-direction: column; border-radius: 12px; }
  .gurantee-blog, .guarantee-text { width: 100%; }
  .guarantee-text { padding: 20px; }
  .guarantee-text h3 { font-size: 22px; text-align: center; }
  .guarantee-text p { font-size: 16px; text-align: justify; }

  .benefit-title { font-size: 17px; }
  .benefit-desc { font-size: 15px; }
  .benefits-section { padding: 0 0 20px 0; }

  .comparison-table { font-size: 14px; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }

  .faq-banners { flex-direction: column; padding: 16px; }
  .banner-image, .banner-content { width: 100%; }
  .banner-image img { margin: auto; }
  .banner-content h3 { text-align: center; font-size: 22px; }
  .bottom-banner h3 { font-size: 22px; }
  .order-button { margin: auto; display: block; text-align: center; }
  .faq-answer-block { padding: 20px 12px; }
  .footer-disclaimer p { padding: 0; }
  .g-arrow { max-width: 350px; }
}

@media (max-width: 480px) {
  .header { padding: 10px 0; }
  .logo h2 { font-size: 22px; }
  .product-card { width: 96%; }
  .buy-now-btn { font-size: 1em; padding: 12px 24px; }
  .current-price { font-size: 2.2em; }
  .g-arrow { max-width: 280px; }
  .max-button-padding { font-size: 20px; padding: 12px 20px; }
}