/* =========================================
   RESET & GLOBAL STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.bg-light { background-color: #f8f9fa; }
.bg-dark { background-color: #212529; color: #fff; }
.mt-4 { margin-top: 2rem; }

/* Typography */
h1, h2, h3, h4, h5 { color: #1a202c; line-height: 1.2; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; font-weight: 700; }
p { margin-bottom: 1rem; font-size: 1.05rem; color: #4a5568; }

/* Buttons */
.btn-primary, .btn-large, .btn-buy {
    display: inline-block;
    background-color: #e53e3e; /* Conversion Orange/Red */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.btn-primary { padding: 10px 25px; font-size: 1rem; }
.btn-large { padding: 15px 40px; font-size: 1.2rem; border-radius: 50px; }
.btn-buy { padding: 12px 0; width: 100%; font-size: 1.1rem; border-radius: 8px; margin-top: 15px;}
.btn-primary:hover, .btn-large:hover, .btn-buy:hover { background-color: #c53030; color: #fff; }

.pulse-effect {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(229, 62, 62, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); }
}

/* =========================================
   HEADER
========================================= */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo a { text-decoration: none; }
.logo h1 { margin: 0; font-size: 1.8rem; color: #2b6cb0; font-weight: 900; letter-spacing: 1px; }

/* =========================================
   HERO SECTION
========================================= */
.hero-section { padding: 60px 0; background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%); }
.hero-container { display: flex; align-items: center; gap: 40px; }
.hero-content { flex: 1; }
.hero-image { flex: 1; text-align: center; }
.hero-image img { max-width: 100%; height: auto; border-radius: 10px; }
.badge { display: inline-block; background: #2b6cb0; color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; margin-bottom: 15px; text-transform: uppercase;}
.hero-benefits ul { list-style: none; margin: 20px 0 30px; }
.hero-benefits li { font-size: 1.1rem; font-weight: 600; color: #2d3748; margin-bottom: 10px; }

/* =========================================
   GRIDS & CARDS (Sections 3, 5, 6, 7)
========================================= */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
section { padding: 60px 0; }

.feature-card, .step-card, .review-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #e2e8f0;
}
.icon { width: 60px; height: 60px; margin-bottom: 15px; }

.split-layout { display: flex; align-items: center; gap: 40px; }
.content-left { flex: 1; }
.content-right { flex: 1; text-align: center; }
.content-right img { max-width: 100%; border-radius: 10px; }

.step-num { display: inline-block; width: 40px; height: 40px; background: #2b6cb0; color: #fff; font-size: 1.5rem; font-weight: bold; border-radius: 50%; line-height: 40px; margin-bottom: 15px; }

.stars { color: #d69e2e; font-size: 1.5rem; margin-bottom: 10px; }
.review-box p { font-style: italic; }

/* =========================================
   PRICING
========================================= */
.price-card {
    background: #fff; border: 2px solid #e2e8f0; border-radius: 10px; padding: 30px 20px; text-align: center; position: relative; transition: transform 0.3s ease;
}
.price-card:hover { transform: translateY(-5px); }
.price-card.popular { border-color: #e53e3e; transform: scale(1.05); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.price-card.popular:hover { transform: scale(1.05) translateY(-5px); }
.popular-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #e53e3e; color: #fff; padding: 5px 20px; border-radius: 20px; font-weight: bold; font-size: 0.85rem; }
.supply { font-weight: bold; color: #2b6cb0; margin-bottom: 15px; }
.price .old-price { text-decoration: line-through; color: #a0aec0; font-size: 1.2rem; margin-right: 10px; }
.price .new-price { font-size: 2.5rem; font-weight: 900; color: #1a202c; }
.bonus-list { list-style: none; text-align: left; margin: 20px 0; border-top: 1px solid #edf2f7; padding-top: 15px;}
.bonus-list li { margin-bottom: 10px; font-size: 0.95rem; color: #2d3748; font-weight: 600;}

/* =========================================
   LONG FORM CONTENT & FAQ
========================================= */
.long-form-content p, .ingredients-section p { font-size: 1.1rem; margin-bottom: 1.5rem; }
.ingredient-list { list-style-type: disc; padding-left: 20px; font-size: 1.1rem; color: #4a5568;}
.ingredient-list li { margin-bottom: 15px; }
.ingredient-list strong { color: #2b6cb0; }

.faq-accordion { max-width: 800px; margin: 40px auto 0; }
.faq-item { background: #fff; margin-bottom: 15px; padding: 20px; border-radius: 8px; border: 1px solid #e2e8f0; }
.faq-item h4 { margin-bottom: 10px; color: #2b6cb0; }

/* =========================================
   REFERENCES & FOOTER
========================================= */
.references h3 { color: #fff; }
.references a { color: #63b3ed; text-decoration: none; }
.references a:hover { text-decoration: underline; }
.ref-disclaimer { font-size: 0.85rem; color: #a0aec0; }
.ref-links p { font-size: 0.9rem; margin-bottom: 5px; color: #cbd5e0; }

.site-footer { background: #1a202c; color: #a0aec0; padding: 40px 0; font-size: 0.85rem; }
.fake-warning { color: #e53e3e; margin-bottom: 20px; font-weight: bold; }
.site-footer p { color: #a0aec0; margin-bottom: 15px; text-align: justify; }
.footer-links { margin: 20px 0; }
.footer-links a { color: #e2e8f0; text-decoration: none; margin: 0 10px; }
.footer-links a:hover { color: #fff; }
.support-text { font-weight: bold; color: #e2e8f0; margin-top: 20px; text-align: center!important; }

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 768px) {
    .hero-container, .split-layout { flex-direction: column; text-align: center; }
    .hero-benefits ul { display: inline-block; text-align: left; }
    .price-card.popular { transform: scale(1); margin-top: 30px; margin-bottom: 30px; }
    .price-card.popular:hover { transform: translateY(-5px); }
    h2 { font-size: 1.8rem; }
}

/* =========================================
   NEW PRICING SECTION STYLES (AS PER IMAGE)
========================================= */
.pricing-offer { padding: 60px 0; background-color: #fff; }
.pricing-offer h2 { font-size: 2.2rem; font-weight: 800; color: #111; margin-bottom: 10px; }
.offer-sub { font-size: 1.1rem; color: #555; font-weight: bold; margin-bottom: 40px; }

.pricing-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: flex-end; /* Aligns bottoms so middle card pops up */
    gap: 20px; 
    max-width: 1000px;
    margin: 0 auto;
}

.custom-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    border: 1px solid #333;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.highlight-card {
    border: 3px solid #a32222; /* Dark red border */
    transform: scale(1.05); /* Makes the center card larger */
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Headers */
.card-header { padding: 15px 10px; color: #fff; }
.card-header h3 { margin: 0; font-size: 1.2rem; font-weight: 800; color: #fff; text-transform: uppercase;}
.bg-black { background-color: #000; }
.bg-red { background-color: #a32222; }
.bg-gray { background-color: #5b5b5b; }

/* Body */
.card-body { padding: 20px; display: flex; flex-direction: column; align-items: center; }
.bg-cream { background-color: #fcfbf4; } /* Light yellow/cream bg for middle card */

.product-img { max-width: 100%; height: auto; margin-bottom: 10px; }

/* Tags */
.tag-black { background: #000; color: #fff; font-weight: bold; padding: 5px 15px; border-radius: 4px; font-size: 0.9rem; margin-top: -15px; position: relative; z-index: 2; }
.tag-red { background: #a32222; color: #fff; font-weight: bold; padding: 5px 20px; border-radius: 4px; font-size: 0.9rem; margin-top: -15px; position: relative; z-index: 2; }

/* Pricing Typography */
.price-display { display: flex; align-items: flex-start; justify-content: center; margin: 15px 0 20px; color: #000; }
.dollar { font-size: 2.5rem; font-weight: 900; line-height: 1; margin-top: 10px; }
.amount { font-size: 5.5rem; font-weight: 900; line-height: 0.8; letter-spacing: -2px; }
.per-bottle { font-size: 1.1rem; color: #666; font-weight: normal; align-self: flex-end; margin-bottom: 5px; margin-left: 5px; }

/* Features List */
.features-list { width: 100%; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.feature-item { font-size: 0.9rem; font-weight: bold; border-radius: 4px; padding: 8px 10px; display: flex; align-items: center; border: 1px solid #000; }
.bg-black-feature { background: #000; color: #fff; }
.bg-red-feature { background: #a32222; color: #fff; border-color: #a32222; }
.check { background: #fff; color: #000; padding: 2px 6px; border-radius: 2px; font-size: 0.7rem; margin-right: 10px; border: 1px solid #000; }
.red-check { color: #a32222; border-color: #a32222; }

.features-spacer { height: 95px; } /* Empty space for the 2-bottle card to keep buttons aligned */
.mt-spacer { margin-top: 35px; } /* Spacer for tags */

/* Order Button */
.btn-yellow {
    background: linear-gradient(to bottom, #ffdb15, #f5a600);
    color: #000;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: none;
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #c28700;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.2s ease;
}
.btn-yellow:hover { transform: scale(1.02); background: linear-gradient(to bottom, #ffeb4d, #ffa500); }

/* Text Link */
.text-link { color: #3b82f6; text-decoration: underline; font-weight: bold; font-size: 0.9rem; margin-top: 10px; }

/* Payment Icons */
.payment-methods { margin: 15px 0; }
.payment-methods img { max-width: 180px; height: auto; }

/* Card Footer */
.card-footer { font-size: 1.1rem; color: #333; margin-top: auto; }
.strike { text-decoration: line-through; font-weight: bold; margin: 0 5px; }
.text-red { color: #a32222; }
.card-footer strong { font-size: 1.4rem; font-weight: 900; color: #000; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-grid { flex-direction: column; align-items: center; }
    .highlight-card { transform: scale(1); margin: 20px 0; }
    .features-spacer { height: 0; } /* Remove spacer on mobile */
}

/* =========================================
   LIVE SALES POP-UP STYLES
========================================= */
.sales-popup {
    position: fixed;
    bottom: 30px;
    left: -450px; /* Hidden off-screen by default */
    width: 340px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 15px;
    z-index: 9999;
    border-left: 6px solid #2b7a0b; /* Green trust indicator */
    transition: left 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy slide-in animation */
}

/* Class added via JavaScript to reveal the popup */
.sales-popup.active {
    left: 20px; 
}

.popup-image {
    width: 65px;
    height: auto;
    object-fit: contain;
    margin-right: 15px;
}

.popup-content {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.3;
}

.popup-name {
    font-weight: 800;
    color: #2b6cb0;
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.popup-action { 
    margin: 0 0 6px 0; 
    color: #444; 
}

.popup-action strong {
    color: #a32222;
}

.popup-time { 
    color: #888; 
    font-size: 0.75rem; 
    margin: 0 0 4px 0; 
}

.popup-verified {
    color: #2b7a0b;
    font-weight: bold;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
}

.popup-close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #a0aec0;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.popup-close-btn:hover { 
    color: #1a202c; 
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sales-popup { 
        width: calc(100% - 40px);
        bottom: 20px; 
    }
    .sales-popup.active { 
        left: 20px; 
    }
}

/* =========================================
   HEADER NAVIGATION MENU
========================================= */
.header-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center; /* Centers the menu between logo and button */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #1a202c; /* Dark gray/black text */
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #e53e3e; /* Turns red/orange on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Hides the text links on mobile to prevent layout breaking */
    .hide-on-mobile {
        display: none; 
    }
}
/* =========================================
   LOGO IMAGE STYLES
========================================= */
.logo-img {
    max-height: 55px; /* Adjust this value if you want the logo bigger or smaller */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Mobile adjustment for logo */
@media (max-width: 768px) {
    .logo-img {
        max-height: 45px; 
    }
}