/* ========================================== */
/* ROOT VARIABLES & COLOR SCHEME */
/* ========================================== */
:root {
  --main-color: #0A2463; /* Dark Navy Blue - Trust, Medical, Power */
  --accent-color: #FFB703; /* Vibrant Yellow - High CTR for buttons */
  --accent-hover: #E09F00; /* Darker Yellow on hover */
  --dark-bg: #1A1A1A; /* Rich Black */
}

/* ========================================== */
/* GLOBAL STYLES */
/* ========================================== */
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;
  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 {
  width: 100%;
  position: relative;
  overflow: hidden;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 2px solid #eee;
}

.header .header-container,
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo h2 {
  color: var(--main-color);
  font-weight: bold;
  font-size: 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-color);
}

.newHeadBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ========================================== */
/* BUTTON STYLES */
/* ========================================== */
.order-button, .cta-button, .secondary-button, .buy-now-btn {
  background-color: var(--accent-color);
  color: black;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.order-button {
  padding: 8px 16px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  font-size: 24px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.max-button-padding {
  padding: 14px 22px;
  font-size: 25px;
}

.order-button:hover, .cta-button:hover, .buy-now-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.mobile-button{
  margin: 0px !important;
}

/* ========================================== */
/* HERO SECTION */
/* ========================================== */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 10px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
}

.product-image {
  flex: 1;
  min-width: 350px;
  max-width: 500px;
  display: flex;
  justify-content: center;
}

.product-image img {
  height: auto;
  max-width: 100%;
}

.product-info {
  flex: 2;
  min-width: 300px;
  max-width: 600px;
}

.product-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
  background-color: var(--main-color);
  text-align: center;
  margin-top: 0px;
  padding: 15px 10px;
  border-radius: 5px;
}

.product-description {
  margin-bottom: 15px;
  line-height: 1.5;
  color: #000;
  font-size: 20px;
}

.benefits-lists {
  margin-bottom: 15px;
  padding-left: 25px;
  list-style: none;
}

.benefits-lists li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 5px;
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 500;
}

.benefits-lists li::before {
  content: '✓';
  color: #000;
  position: absolute;
  left: -20px;
  font-weight: bold;
  color: var(--main-color);
}

/* ========================================== */
/* CERTIFICATIONS */
/* ========================================== */
.certifications {
  background-color: white;
  padding: 0 0 40px 0;
  text-align: center;
  color: #333;
}

.certifications h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.certification-badges {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 15px;
  padding: 0 10px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.badge img {
  width: auto;
  height: auto;
  max-width: 120px; 
  object-fit: contain;
  margin-bottom: 10px;
  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: 22px;
  margin-top: 5px;
}

.badge-description {
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
  color: #333;
  margin: 5px 0px;
}

/* ========================================== */
/* PRODUCT DETAILS & HOW IT WORKS */
/* ========================================== */
.product-details, .how-it-works, .ingredients-section {
  padding: 0 0 40px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  color: #333;
}

.product-details h2, .how-it-works h2, .ingredients-section h2 {
  background-color: var(--main-color);
  color: white;
  text-align: center;
  margin: 0 0 20px 0;
  padding: 20px 0;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bold;
}

.product-details-content, .how-it-works-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-details-content p, .how-it-works-intro {
  font-size: 20px;
  margin: 15px 0px;
  line-height: 1.6;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin-top: 20px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 26px;
  display: block;
}

.step-description {
  line-height: 1.6;
  color: #333;
  font-size: 20px;
  margin-top: 0;
}

.cta-section {
  text-align: center;
  margin-top: 30px;
}

/* ========================================== */
/* PRICING / BUY BOX CARDS */
/* ========================================== */
.pricing-container-new {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto;
    font-family: 'Montserrat', 'Arial', sans-serif; 
    padding: 0 15px;
}

.pricing-card {
    background-color: #f8f9fa; /* Very light gray/white background */
    border-radius: 12px;
    width: 32%;
    max-width: 340px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

/* Highlighted Center Card */
.pricing-card.highlighted {
    border: 4px solid #10337a; /* Dark blue border */
    background-color: #ffffff;
    transform: scale(1.04); /* Makes it pop out */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.card-header h3 {
    color: #3b4754; /* Dark gray */
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.card-header span {
    color: #888; /* Light gray */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-image {
    margin: 20px 0;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}

.card-pricing {
    margin-bottom: 20px;
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17529b; /* Deep Blue for Price */
    margin-bottom: 5px;
}

.price-main .currency {
    font-size: 35px;
    font-weight: 800;
    margin-top: -25px;
}

.price-main .amount {
    font-size: 75px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.per-bottle-text {
    font-size: 16px;
    font-weight: 800;
    text-align: left;
    line-height: 1.1;
    margin-left: 8px;
}

.total-price {
    color: #17529b;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.savings-text {
    color: #e33b32; /* Red text for savings */
    font-size: 14px;
    font-weight: 800;
}

.savings-text del {
    text-decoration: line-through;
    opacity: 0.9;
}

/* Button Styling */
.cart-btn {
    display: block;
    background-color: #29a3e2; /* Light blue button */
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    padding: 15px 10px;
    border-radius: 6px;
    transition: background-color 0.3s;
    width: 100%;
    box-sizing: border-box;
    text-transform: uppercase;
}

.cart-btn:hover {
    background-color: #1c88c3;
    color: #ffffff;
}

.shipping-info {
    color: #666;
    font-size: 12px;
    font-weight: 700;
    margin-top: 15px;
    text-transform: uppercase;
}

/* Responsive Design for Mobile */
@media (max-width: 900px) {
    .pricing-container-new {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    .pricing-card.highlighted {
        transform: none; /* Disables the pop-out effect on mobile to prevent overlapping */
    }
}
/* ========================================== */
/* INGREDIENTS LIST */
/* ========================================== */
.ingredients-intro {
  margin-bottom: 20px;
  line-height: 1.6;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ingredients-list {
  list-style: none;
  padding: 0 20px;
  max-width: 1000px;
  margin: 25px auto;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--main-color);
}

.ingredient-number {
  min-width: 40px;
  min-height: 40px;
  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: 0;
  line-height: 1.6;
  font-size: 19px;
}

/* ========================================== */
/* GUARANTEE BLOCK */
/* ========================================== */
.guarantee-block {
  background-color: #ffffff;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 20px auto 60px auto;
}

.guarantee-block h3 {
  margin-top: 0;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
  background-color: var(--main-color);
  padding: 15px;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 2px solid var(--main-color);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background-color: #fdfdfd;
}

.gurantee-blog {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.guarantee-text {
  width: 60%;
  padding: 30px 40px 30px 0;
}

.guarantee-content p {
  margin: 0;
  line-height: 1.6;
  color: #333;
  font-size: 20px;
}

.guarantee-content img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

/* ========================================== */
/* CUSTOMER REVIEWS */
/* ========================================== */
.customer-reviews {
  background-color: #f9f9f9;
  padding: 0px 0px 60px 0;
  text-align: center;
}

.customer-reviews h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 40px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.review {
  background-color: white;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  text-align: left;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #2e7d32; /* Trust green */
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.verified-badge svg { fill: #2e7d32; }

.reviewer-profile {
  margin-bottom: 15px;
}

.reviewer-info h4 {
  margin: 0px 0px 5px 0px;
  color: var(--main-color);
  font-size: 22px;
  font-weight: bold;
}

.rating { display: flex; gap: 2px; }
.rating svg { fill: #FFD700; width: 24px; height: 24px; }

.review-text {
  color: #444;
  line-height: 1.6;
  font-size: 20px;
  margin: 0;
  font-style: italic;
}

/* ========================================== */
/* BANNERS */
/* ========================================== */
.faq-banner {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  border: 2px dashed var(--main-color);
  padding: 25px 30px;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 10px;
}

.bottom-banner {
  flex-direction: column;
  text-align: center;
  gap: 15px;
  max-width: 800px;
  margin: 40px auto;
  border: none;
  padding: 0;
  background: transparent;
}

.bottom-banner h3 {
  background: var(--main-color);
  color: #fff;
  width: 100%;
  padding: 20px 0;
  margin: 0;
  font-size: 32px;
  border-radius: 10px;
}

.bottom-banner .regular-price.small {
  font-size: 22px;
  margin: 15px 0 0 0;
  color: #666;
}

.bottom-banner .discounted {
  font-size: 28px;
  color: #d9534f;
  margin: 10px 0 20px 0;
}

/* ========================================== */
/* FOOTER SECTION */
/* ========================================== */
.footer-section {
  background: #f1f1f1;
  border-top: 4px solid var(--main-color);
  padding: 40px 20px 20px;
  font-size: 15px;
  color: #444;
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-disclaimer p {
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: justify;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0 auto;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  text-align: center;
}

.footer-links a {
  color: var(--main-color);
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 15px;
  font-size: 14px;
}

/* ========================================== */
/* MOBILE MENU & SIDEBAR */
/* ========================================== */
.mobile-menu-icon {
  background: none;
  border: none;
  color: var(--main-color) !important;
  font-size: 35px;
  cursor: pointer;
  display: none;
  padding: 0;
}

.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;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.mobile-sidebar.open { right: 0; }
.sidebar-nav { display: flex; flex-direction: column; gap: 20px; }
.sidebar-nav a { color: #ffffff; text-decoration: none; font-size: 24px; padding: 10px 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.close-btn {
  background: none; border: none; color: #ffffff; font-size: 40px;
  position: absolute; top: 15px; right: 20px; cursor: pointer;
}

.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); opacity: 0;
  visibility: hidden; transition: opacity 0.3s ease; z-index: 250;
}
.sidebar-overlay.show { opacity: 1; visibility: visible; }

/* ========================================== */
/* RESPONSIVE MEDIA QUERIES */
/* ========================================== */
@media (max-width: 1024px) {
  .header-container { padding: 0 16px; }
  .product-card.best-value { transform: scale(1); }
  .product-card.best-value:hover { transform: translateY(-5px); }
}

@media (max-width: 900px) {
  .pricing-container { flex-direction: column; align-items: center; }
  .product-card { width: 95%; max-width: 400px; }
}

@media (max-width: 768px) {
  /* Mobile Adjustments */
  .mobile-menu-icon { display: block; }
  .header .nav-links, .header .order-button { display: none; }
  
  .hero-section { flex-direction: column; text-align: center; }
  .product-image { min-width: 250px; max-width: 100%; }
  
  .certification-badges { flex-direction: column; align-items: center; gap: 20px; }
  .badge { max-width: 100%; width: 90%; }
  
  .guarantee-content { flex-direction: column; text-align: center; }
  .guarantee-text { width: 100%; padding: 20px; }
  .gurantee-blog { width: 100%; padding-bottom: 0; }
  .guarantee-block h3 { font-size: 24px; }
  
  body { font-size: 18px; }
  h2, .product-details h2, .how-it-works h2, .ingredients-section h2 { font-size: 26px; }
  .product-title { font-size: 26px; }
  
  .cta-button { width: 90%; font-size: 22px; padding: 15px 0; margin: 0 auto; display: block; }
  .bottom-banner h3 { font-size: 26px; }
}

@media (max-width: 480px) {
  .current-price { font-size: 3em; }
  .buy-now-btn { font-size: 1.2em; }
  .review-text { font-size: 18px; }
}

/* ========================================== */
/* Side-by-Side Image/Text Layout Rules       */
/* ========================================== */

/* Desktop layout (Screen sizes above 992px) */
@media (min-width: 992px) {
    .product-details-content.side-wrapper,
    .how-it-works-content.side-wrapper {
        display: flex;
        align-items: center; /* Vertical center alignment */
        gap: 50px; /* Space between image and text */
        text-align: left; /* Ensure text is left aligned in side view */
    }

    /* Set widths for image and text containers */
    .side-wrapper img.side-image {
        flex: 1;
        max-width: 45%; /* Image takes about 45% width */
        margin: 0 !important; /* Override Central margins */
    }

    .side-wrapper .text-block {
        flex: 1.2; /* Text takes slightly more width */
    }

    /* Reverse layout class to push image to the right */
    .row-reverse {
        flex-direction: row-reverse;
    }
}

/* Tablet/Mobile layout adjustments */
@media (max-width: 991px) {
    .product-details-content img.side-image {
        max-width: 100%;
        margin-bottom: 20px !important; /* Add space below image when stacked */
    }
    
    .product-details-content p {
        text-align: justify; /* Better readability on mobile */
    }
}