/* ==========================================================================
   GOLDALIGN PREMIUM CSS (FULL COMPLETE VERSION)
   Theme: Gold & Dark (Energetic Alignment)
   ========================================================================== */

:root {
  --main-color: #111827; /* Premium Dark Blue/Black for trust */
  --accent-color: #D4AF37; /* Rich Gold */
  --accent-hover: #B8860B; /* Dark Gold for hover states */
  --dark-bg: #000000;
}

/* ========================================================== */
/* GLOBAL STYLES & TYPOGRAPHY                                 */
/* ========================================================== */
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;
  padding-bottom: 100px; /* Space for Sticky CTA Bar */
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
}

h2 {
  font-size: 30px;
  font-weight: 500;
}

/* ========================================================== */
/* HEADER NAVIGATION                                          */
/* ========================================================== */
.header {
  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);
  width: 100%;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.logo h2 {
  color: var(--main-color);
  font-weight: bold;
  font-size: 30px;
  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(--accent-hover); }

.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; max-width: 100%;}
.product-info { flex: 2; min-width: 300px; max-width: 700px; text-align: justify; }

.product-title {
  font-size: 30px; font-weight: bold; margin-bottom: 5px; color: var(--accent-color);
  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(--accent-hover); position: absolute; left: -20px; font-weight: bold; }

/* Global Action Buttons */
.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(--main-color);
  color: white; 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:hover { background-color: #000; color: var(--accent-color); 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: var(--accent-color); 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: #f5f5f5; padding: 10px; border-radius: 10px; transition: all 0.3s ease; border-bottom: 3px solid var(--accent-color); }
.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 0px; }

/* ========================================================== */
/* PRODUCT DETAILS (What is GoldAlign)                        */
/* ========================================================== */
.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: var(--accent-color); 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; text-align: justify; padding: 0 20px; box-sizing: border-box; }
.product-details-content p { font-size: 20px; margin: 10px 0px; }
.product-details-content img{ height: 300px; width: auto; margin: auto; display: block; border-radius: 10px; max-width: 100%;}
.ingredients-highlight { font-weight: bold; color: var(--accent-hover); }

/* ========================================================== */
/* 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: var(--accent-color); 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: justify; font-weight: 500; }
.how-it-works-steps { display: flex; flex-direction: column; gap: 10px; text-align: justify; }
.how-it-works-step { margin-bottom: 10px; border-left: 4px solid var(--accent-color); padding-left: 20px; background-color: #f9f9f9; padding: 15px; border-radius: 0 8px 8px 0;}
.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; }
.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); }

/* ========================================================== */
/* REVIEWS SECTION                                            */
/* ========================================================== */
.customer-reviews { background-color: white; padding: 0px 0px 40px 0; text-align: center; }
.customer-reviews h2 { background-color: var(--main-color); color: var(--accent-color); 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.24) 0px 3px 8px; border-top: 4px solid var(--main-color);}
.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-info h4 { margin: 0px; color: #333; font-size: 20px; font-weight: bold; }
.rating { display: flex; gap: 2px; }
.rating svg { fill: var(--accent-color); width: 30px; height: 30px; }
.review-text { color: #222; line-height: 1.5; font-size: 20px; margin: 0; font-weight: 500; text-align: justify;}

/* ========================================================== */
/* PRICING SECTION                                            */
/* ========================================================== */
.image-grid-section { padding: 0; background-color: white; text-align: center; }
.image-grid-section h2 { background-color: var(--main-color); color: var(--accent-color); margin: 0 0 0px 0; padding: 20px 0; font-size: 32px; text-transform: uppercase; font-weight: bold; }
.pricing-container { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; margin-top: 40px; align-items: center; }
.product-card { border: 2px solid #eee; 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; }
.header { color: #ffffff; padding: 15px 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; color: #f1f1f1;}
.header-1x, .header-3x { background-color: #4B5563; }
.header-6x { background-color: var(--main-color); }
.card-content { padding: 10px 20px; display: flex; flex-direction: column; align-items: center; width: 100%; box-sizing: border-box; }
.product-image-new { width: auto; height: 220px; margin-bottom: 20px; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1)); max-width: 100%;}
.price-section { margin-bottom: 15px; display: flex; align-items: baseline; justify-content: center; width: 100%; }
.current-price { font-size: 3em; font-weight: 700; color: #333; line-height: 1; }
.per-bottle { font-size: 1.2em; color: #666; margin-left: 5px; }
.buy-now-btn-a { width: 100%; text-decoration: none; }
.buy-now-btn { background-color: var(--accent-color); color: #000; 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); }
.total-price { font-size: 1.1em; color: #555; margin-top: 10px; margin-bottom: 20px; font-weight: 600; }
.original-total { text-decoration: line-through; color: #999; margin-right: 5px; font-weight: 400; }
.discounted-total { color: #333; font-size: 1.3em; font-weight: 700; }
.payment-methods { display: flex; gap: 8px; justify-content: center; width: 100%; margin-top: 10px; }
.payment-methods img { height: 25px; width: auto; object-fit: contain; }
.product-card.best-value { border: 4px solid var(--accent-color); transform: scale(1.05); z-index: 2; background-color: #FFFAF0; }

/* ========================================================== */
/* INGREDIENTS SECTION                                        */
/* ========================================================== */
.ingredients-section { padding: 0; background-color: white; color: #333; max-width: 100%; margin: 0 auto; font-size: 20px; }
.ingredients-section h2 { background-color: var(--main-color); color: var(--accent-color); 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; text-align: justify;}
.ingredients-list { list-style: none; padding: 0 20px; margin: 0 auto; max-width: 1200px; margin-top: 25px; text-align: justify;}
.ingredient-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 40px; background: #f9f9f9; padding: 20px; border-radius: 8px; border-left: 4px solid var(--accent-color);}
.ingredient-number { min-width: 48px; min-height: 48px; background-color: var(--main-color); color: var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; flex-shrink: 0;}
.ingredient-content strong { font-size: 24px; color: var(--main-color); display: block; margin-bottom: 5px;}
.ingredient-content p { margin: 0; line-height: 1.6; }

/* ========================================================== */
/* SCIENCE & GUARANTEE SECTION                                */
/* ========================================================== */
.science-section { padding: 40px 0; background-color: white; text-align: center; color: #333; font-size: 20px; }
.cert-logos { background-color: var(--main-color); padding: 20px 0; display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; border-bottom: 2px solid var(--accent-color);}
.science-heading { font-size: 30px; font-weight: 700; margin: 40px 0 30px 0; text-transform: uppercase; color: var(--main-color);}
.science-steps { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; padding: 0 20px;}
.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(--accent-color); color: #000; 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);}
.guarantee-block { background-color: #ffffff; padding: 20px; margin-top: 40px; max-width: 1200px; margin: 0 auto; box-sizing: border-box;}
.guarantee-content { display: flex; align-items: center; gap: 20px; max-width: 1200px; margin: 0 auto; text-align: left; background-color: var(--main-color); border-radius: 10px; border: 2px solid var(--accent-color);}
.gurantee-blog { width: 40%; display: flex; align-items: center; justify-content: center; padding: 20px;}
.gurantee-blog img { max-width: 100%; height: auto;}
.guarantee-text { width: 60%; padding: 40px; box-sizing: border-box;}
.guarantee-block 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; line-height: 1.6; color: white; text-align: justify;}

/* ========================================================== */
/* BENEFITS SECTION                                           */
/* ========================================================== */
.benefits-section { background-color: #f9f9f9; color: #333; padding: 0 0 60px 0; text-align: left; }
.benefits-section h2 { background-color: var(--main-color); color: var(--accent-color); 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: justify; 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; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05);}
.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; text-align: justify;}
.checkmark { width: 32px; height: 32px; border-radius: 50%; background-color: var(--accent-color); flex-shrink: 0; position: relative; margin-top: 2px; }
.checkmark::before { content: "✓"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #000; 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: var(--accent-color); 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 20px; margin: 0 auto 40px auto; max-width: 1200px; font-size: 20px; box-sizing: border-box;}
.faq-questions li { padding: 20px; 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 { display: block; font-weight: 600; }
.faq-q::after { content: "+"; float: right; font-weight: bold; color: var(--accent-color);}
.faq-questions li.open .faq-q::after { content: "-"; }
.faq-a { margin-top: 15px; color: #555; font-size: 20px; line-height: 1.6; text-align: justify; }

.faq-banners { display: flex; align-items: center; background: var(--main-color); border: 2px solid var(--accent-color); padding: 25px 30px; max-width: 1200px; margin: 40px auto; flex-wrap: wrap; border-radius: 15px; box-sizing: border-box;}
.banner-image { width: 40%; text-align: center;}
.banner-image img { max-width: 100%; height: auto; }
.banner-content { width: 60%; text-align: center;}
.banner-content h3 { margin: 0 0 20px 0; font-size: 35px; font-weight: 700; color: #fff; line-height: 1.3;}

.faq-answer-block { max-width: 1200px; margin: 0 auto; padding: 40px 20px; line-height: 1.6; font-size: 20px; box-sizing: border-box;}
.faq-answer-block h3 { font-size: 24px; font-weight: 700; margin: 0 0 20px 0; color: #222; }
.answer-subheading { font-weight: 700; margin-top: 25px; margin-bottom: 5px; }

.bottom-banner { flex-direction: column; text-align: center; gap: 10px; max-width: none; width: 100%; margin: 40px 0 0 0; border: none; padding: 0; border-radius: 0;}
.bottom-banner h3 { background: var(--main-color); color: var(--accent-color); width: 100%; padding: 15px 0; margin: 0; font-size: 30px; text-transform: uppercase;}
.bottom-banner .regular-price.small { font-size: 20px; margin: 15px 0 5px; color: #000; font-weight: bold; text-decoration: none;}
.bottom-banner .regular-price.small span { text-decoration: line-through; color: #777;}
.bottom-banner .discounted { font-size: 28px; color: #d32f2f; display: block; margin-bottom: 20px; font-weight: bold;}

/* ========================================================== */
/* MOBILE SIDEBAR                                             */
/* ========================================================== */
.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; border-left: 2px solid var(--accent-color);}
.mobile-sidebar.open { right: 0; }
.sidebar-nav { display: flex; flex-direction: column; gap: 20px; }
.sidebar-nav a { color: var(--accent-color); text-decoration: none; font-size: 24px; padding: 10px 20px; border-bottom: 1px solid #333;}
.close-btn { background: none; border: none; color: var(--accent-color); font-size: 40px; position: absolute; top: 20px; 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; }
.mobile-menu-icon { display: none; background: none; border: none; color: var(--main-color) !important; font-size: 32px; cursor: pointer; }

/* ========================================================== */
/* FOOTER                                                     */
/* ========================================================== */
.footer-section { background: #111; border-top: 4px solid var(--accent-color); padding: 40px 20px 100px; font-size: 14px; color: #bbb; }
.footer-disclaimer p { margin-bottom: 15px; line-height: 1.6; margin-left: auto; margin-right: auto; font-size: 14px; text-align: justify; padding: 0px 20px; max-width: 1200px;}
.footer-bottom { border-top: 1px solid #333; margin-top: 30px; padding: 20px; text-align: center; max-width: 1200px; margin: 30px auto 0;}
.social-icons { display: flex; gap: 10px; justify-content: center; margin-bottom: 15px;}
.social-icons a { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; border-radius: 50%; color: #000; background-color: var(--accent-color); text-decoration: none; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); transition: transform 0.3s;}
.social-icons a:hover { transform: scale(1.1); }
.social-icons i{ font-size: 20px; }
.footer-links { margin-bottom: 10px; }
.footer-links a { color: var(--accent-color); text-decoration: none; margin: 0 5px; }
.footer-links a:hover { text-decoration: underline; }
.footer-copy { color: #888; margin-top: 15px; font-size: 13px;}

/* ========================================================== */
/* PREMIUM GLOWING STICKY CTA BAR (IMAGE STYLE)               */
/* ========================================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #061124 0%, #0d1e3b 100%);
  border-top: 2px solid #2a3f63;
  padding: 15px 20px;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
  color: white;
  box-sizing: border-box;
}

.sticky-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sticky-text-wrapper {
  display: flex;
  flex-direction: column;
}

.sticky-urgency {
  color: #FFEA00;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.sticky-headline {
  font-size: 16px;
  font-weight: 400;
  color: #e2e8f0;
}

.sticky-price-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.sticky-new-price {
  color: #FFEA00;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.sticky-old-price {
  color: #9ca3af;
  font-size: 15px;
  text-decoration: line-through;
  font-weight: 500;
  margin-top: 4px;
}

.sticky-btn-wrapper {
  display: flex;
  align-items: center;
}

.sticky-btn {
  background-color: #FFEA00;
  color: #000;
  padding: 12px 35px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 50px;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(255, 234, 0, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 234, 0, 0.5);
  background-color: #fffb00;
}

/* ========================================================== */
/* RESPONSIVE MEDIA QUERIES (MOBILE & TABLET FIXES)           */
/* ========================================================== */
@media (max-width: 1024px) {
  .header-container { padding: 0 16px; }
  .pricing-container { flex-direction: column; align-items: center; }
  .product-card { width: 90%; max-width: 400px; }
  .product-card.best-value { transform: scale(1); }
}

@media (max-width: 768px) {
  /* Body Adjustments for Mobile Sticky Bar */
  body { padding-bottom: 210px; font-size: 18px; } /* Ensures enough room for stacked sticky bar */
  
  /* Header & Navigation */
  .header .nav-links, .header .order-button { display: none; }
  .mobile-menu-icon { display: block; margin-right: 10px;}
  
  /* Sections Resizing */
  h1 { font-size: 26px; padding: 10px; }
  h2 { font-size: 25px; }
  .product-title { font-size: 24px; padding: 15px 10px; }
  
  .hero-section { flex-direction: column; text-align: center; gap: 10px;}
  .product-image { max-width: 100%; padding: 0 20px; box-sizing: border-box; }
  .product-info { padding: 0 20px; box-sizing: border-box; text-align: justify;}
  
  .cta-button, .secondary-button { font-size: 18px; padding: 12px 20px; display: block; margin: 10px auto; max-width: 300px;}
  
  .certification-badges { flex-direction: column; align-items: center; gap: 20px;}
  .badge { margin-bottom: 0; max-width: 90%; width: 100%;}
  
  .product-details-content p, .how-it-works-intro, .step-description, .review-text, .ingredient-content p, .guarantee-content p, .benefit-desc, .faq-a { font-size: 18px; }
  
  /* Science & Guarantee Mobile Fix */
  .science-step { flex-direction: column; }
  .step-arrow { display: none; }
  .guarantee-block { padding: 10px; }
  .guarantee-content { flex-direction: column; text-align: center; padding: 20px; border-radius: 8px;}
  .gurantee-blog { width: 100%; padding: 0;}
  .guarantee-text { width: 100%; padding: 20px 0 0 0; }
  .guarantee-block h3 { text-align: center; font-size: 24px;}
  
  /* Reviews Mobile Fix */
  .reviews-container { padding: 0 15px; }
  .review { padding: 15px; }
  .reviewer-info h4 { font-size: 18px; }
  
  /* FAQ Mobile Fix */
  .faq-banners { flex-direction: column; text-align: center; padding: 15px;}
  .banner-image, .banner-content { width: 100%; }
  .banner-content h3 { font-size: 26px;}
  .faq-answer-block { padding: 20px 15px; }
  .bottom-banner h3 { font-size: 24px; }
  
  /* Footer Mobile Fix */
  .footer-section { padding: 30px 15px 120px; }
  .footer-disclaimer p { padding: 0; font-size: 14px;}
  
  /* ================== STICKY CTA MOBILE VIEW ================== */
  .sticky-cta-bar {
    padding: 20px 15px;
  }
  .sticky-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .sticky-text-wrapper {
    align-items: center;
  }
  .sticky-urgency {
    font-size: 18px;
  }
  .sticky-headline {
    font-size: 15px;
  }
  .sticky-price-wrapper {
    margin: 5px 0;
  }
  .sticky-new-price {
    font-size: 30px;
  }
  .sticky-old-price {
    font-size: 15px;
    margin-top: 5px;
  }
  .sticky-btn-wrapper {
    width: 100%;
  }
  .sticky-btn {
    width: 100%; /* Full width button on mobile */
    padding: 14px 20px;
    font-size: 22px;
  }
}

@media (max-width: 400px) {
  .sticky-new-price { font-size: 26px; }
  .sticky-btn { font-size: 20px; padding: 12px 15px; }
}

/* ========================================================== */
/* EXCLUSIVE FREE BONUSES SECTION                             */
/* ========================================================== */
.bonuses-section {
  background-color: #f9f9f9;
  padding: 0 0 60px 0;
  text-align: center;
}
.bonuses-section h2 {
  background-color: var(--main-color);
  color: var(--accent-color);
  margin: 0 0 40px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
}
.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.bonus-card {
  background: white;
  border: 3px solid var(--accent-color);
  border-radius: 12px;
  padding: 30px 20px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}
.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.2);
}
.bonus-badge {
  background: var(--main-color);
  color: var(--accent-color);
  font-weight: bold;
  font-size: 18px;
  padding: 6px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
}
.bonus-card h3 {
  font-size: 24px;
  color: var(--main-color);
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.bonus-subtitle {
  font-size: 16px;
  color: #555;
  font-weight: bold;
  margin-bottom: 15px;
}
.bonus-desc {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
  line-height: 1.5;
}
.bonus-price {
  background: #fffdf5;
  padding: 15px;
  border-radius: 8px;
  border: 2px dashed var(--accent-color);
  margin-top: auto;
}
.retail-price {
  text-decoration: line-through;
  color: #888;
  font-size: 18px;
}
.today-free {
  color: #d32f2f;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}

/* Mobile Fix for Bonuses */
@media (max-width: 768px) {
  .bonus-grid {
    flex-direction: column;
    align-items: center;
  }
  .bonus-card {
    max-width: 100%;
  }
}

/* Sticky CTA Bar with Close Button */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #061124 0%, #0d1e3b 100%);
  border-top: 2px solid #2a3f63;
  padding: 15px 40px; /* Thoda padding badhaya close button ke liye */
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
  color: white;
  box-sizing: border-box;
}

.sticky-close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 20px;
  transition: 0.3s;
}

.sticky-close-btn:hover {
  background: rgba(255,255,255,0.3);
}

/* Mobile responsive fix for close button */
@media (max-width: 768px) {
  .sticky-cta-bar {
    padding: 15px 10px;
  }
  .sticky-close-btn {
    top: 2px;
    right: 2px;
  }
}