/* ==========================================================================
   FEMICORE - ADVANCED STYLESHEET
   Theme: Clean #f4f4f4 Base with Professional High-Contrast Text
   Designed for Health, Trust, and Professional E-E-A-T Compliance
   ========================================================================== */

/* ===== GLOBAL RESETS & FOUNDATION ===== */
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

:root {
    /* === BRAND COLORS === */
    --bg-light:        #f4f4f4; /* User Requested Main Base Color */
    --brand-primary:   #1A1A1A; /* Crisp Dark for Headings */
    --brand-secondary: #4A5568; /* Soft Gray-Blue for Accents */
    --brand-accent:    #0F4C81; /* Classic Trust Blue for CTA Buttons */
    --brand-yellow:    #F59E0B; /* Vibrant Yellow for Review Stars */
    --brand-green:     #10B981; /* Trust Green for Verification & Savings */
    --white:           #ffffff;
    --bg-dark:         #111111; /* Deep Dark for Footer */
    --text-main:       #2D3748; /* Strong Dark Grey for high readability */
    --text-muted:      #555555; /* Softer text for descriptions */
    --border-color:    #E2E8F0; /* Light gray for clean section borders */
  
    /* Shadows for Depth */
    --shadow-sm:       0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md:       0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg:       0 12px 35px rgba(0, 0, 0, 0.12);

    /* === OPTIMIZED TYPOGRAPHY SCALES === */
    --f-xs:    1.0rem;
    --f-sm:    1.15rem;
    --f-body:  1.20rem; 
    --f-md:    1.45rem;
    --f-lg:    1.65rem;
    --f-xl:    2.1rem;
    --f-2xl:   2.6rem;
    --f-3xl:   3.2rem;
    --f-price: 3.6rem;
    --lh-body: 1.8;
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: var(--f-body);
    line-height: var(--lh-body);
    color: var(--text-main);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY BASICS ===== */
h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: var(--f-3xl); 
    font-weight: 700; 
    line-height: 1.2; 
    color: var(--brand-primary);
}
h2 { font-size: var(--f-2xl); font-weight: 800; line-height: 1.25; color: var(--brand-primary); }
h3 { font-size: var(--f-xl);  font-weight: 700; line-height: 1.3; color: var(--brand-primary); }
h4 { font-size: var(--f-lg);  font-weight: 700; line-height: 1.35; color: var(--brand-primary); }
p, li { 
    font-size: var(--f-body); 
    line-height: var(--lh-body); 
    margin-bottom: 18px; 
    text-align: justify; 
    text-align-last: left; 
}
a { text-decoration: none; color: var(--brand-accent); }

/* ===== GLOBAL UTILITIES ===== */
.section    { padding: 80px 24px; }
.bg-light   { background: var(--bg-light); } /* Applying the #f4f4f4 color */
.brand-text { color: var(--brand-accent); }
.center     { text-align: center; }
.green-txt  { color: var(--brand-green) !important; font-weight: 700; }
.wrap       { padding: 0 15px; } 

.sec-title  { 
    font-size: var(--f-2xl); 
    font-weight: 900; 
    margin-bottom: 15px; 
}
.sec-sub    { 
    font-size: var(--f-md); 
    color: var(--text-muted); 
    margin-bottom: 50px; 
    max-width: 900px; 
    margin-left: auto; 
    margin-right: auto; 
}

/* ===== CALL TO ACTION (CTA) BUTTONS ===== */
.btn-cta {
    display: inline-block; 
    background: var(--brand-accent); 
    color: var(--white) !important;
    padding: 18px 45px; 
    border-radius: 8px;
    font-weight: 800; 
    font-size: var(--f-lg);
    margin-top: 25px;
    box-shadow: 0 6px 20px rgba(15, 76, 129, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}
.btn-cta:hover { 
    background: var(--white); 
    color: var(--brand-accent) !important;
    border-color: var(--brand-accent);
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.4); 
}
.btn-cta-xl { 
    font-size: 1.4rem;  
    padding: 20px 50px;
    width: 100%;
    max-width: 600px;
}

/* ===== NAVIGATION BAR ===== */
nav {
    position: fixed; 
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}
.nav-inner {
    max-width: 1200px; 
    margin: 0 auto;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    height: 80px; 
    padding: 0 24px;
}
.nav-links { 
    display: flex; 
    gap: 35px; 
    list-style: none;
}
.nav-links a { 
    color: var(--text-main); 
    font-weight: 600; 
    font-size: var(--f-sm); 
    transition: color .2s; 
}
.nav-links a:hover { color: var(--brand-accent); }
.btn-nav {
    background: var(--brand-primary); 
    color: var(--white) !important;
    padding: 12px 30px; 
    border-radius: 6px;
    font-weight: 700; 
    font-size: var(--f-sm);
    transition: all .2s;
}
.btn-nav:hover { background: var(--brand-accent); }

/* Mobile Menu Elements */
.hamburger { 
    display: none; 
    flex-direction: column; 
    gap: 6px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 5px; 
}
.hamburger span { 
    display: block; 
    width: 30px; 
    height: 3px; 
    background: var(--brand-primary); 
    border-radius: 2px; 
}
.mob-menu { 
    display: none; 
    flex-direction: column; 
    gap: 18px; 
    padding: 20px 24px; 
    background: var(--bg-light); /* Using #f4f4f4 */
    border-top: 1px solid var(--border-color); 
    box-shadow: var(--shadow-md);
}
.mob-menu.open { display: flex; }
.mob-menu a { 
    color: var(--brand-primary); 
    font-weight: 700; 
    font-size: var(--f-md); 
}

/* ===== HERO SECTION ===== */
.hero { 
    padding: 80px 24px; 
    background: radial-gradient(circle at top left, #ffffff, var(--bg-light)); /* Smooth #f4f4f4 gradient */
    border-bottom: 1px solid var(--border-color);
}
.hero-grid {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid; 
    grid-template-columns: 1.2fr 1fr;
    gap: 50px; 
    align-items: center;
}
.hero-content h1 span { 
    color: var(--brand-accent); 
}
.hero-content p { 
    color: var(--text-muted); 
    margin-bottom: 25px; 
    font-size: var(--f-md); 
    text-align: left; 
}
.hero-list {
    list-style: none;
    margin-bottom: 25px;
}
.hero-list li {
    font-size: var(--f-md);
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 12px;
}
.hero-img img { 
    width: 100%; 
    max-width: 500px; 
    margin: 0 auto; 
    display: block; 
    filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.08)); 
}
.trust-stars { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--brand-yellow); 
    margin-bottom: 15px; 
}
.trust-stars span { 
    font-size: 1rem; 
    color: var(--text-muted); 
    margin-left: 8px; 
    font-weight: 600; 
}
.hero-divider { 
    border: none; 
    border-top: 2px solid var(--border-color); 
    margin: 25px 0; 
}
.secure-checkout {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
    display: block;
}

/* ===== TWO COLUMNS (WHAT IS & HOW IT WORKS) ===== */
.two-col { 
    max-width: 1150px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1.3fr; 
    gap: 50px; 
    align-items: center; 
}
.two-col img { 
    width: 100%; 
    border-radius: 15px; 
    box-shadow: var(--shadow-md); 
    border: 4px solid var(--white); 
}

/* ===== BENEFITS BADGES ===== */
.badges-grid {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}
.badge-card { 
    text-align: center; 
    padding: 40px 25px; 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    background: var(--bg-light); /* Clean #f4f4f4 card background */
    transition: all .3s; 
}
.badge-card:hover { 
    border-color: var(--brand-accent); 
    box-shadow: var(--shadow-md); 
    transform: translateY(-5px); 
    background: var(--white);
}
.badge-card img { 
    width: 90px; 
    height: 90px; 
    object-fit: contain; 
    margin: 0 auto 20px; 
    display: block; 
}
.badge-card p { text-align: center; text-align-last: center; }

/* ===== INGREDIENTS GRID ===== */
.ing-grid { 
    max-width: 1200px; 
    margin: 0 auto 50px; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
}
.ing-item { 
    background: var(--white); 
    border-radius: 15px; 
    box-shadow: var(--shadow-sm); 
    border: 1px solid var(--border-color); 
    padding: 30px;
    display: flex; 
    gap: 25px; 
    align-items: center; 
    transition: all 0.3s ease; 
}
.ing-item:hover { 
    box-shadow: var(--shadow-md); 
    border-color: var(--brand-accent); 
}
.ing-img { 
    width: 140px; 
    height: 140px; 
    object-fit: cover; 
    border-radius: 50%; 
    border: 4px solid var(--bg-light); /* #f4f4f4 border */
    flex-shrink: 0;
}
.probiotic-blend {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--brand-accent);
    box-shadow: var(--shadow-md);
}
.probiotic-blend ul {
    margin-left: 20px;
    margin-top: 20px;
}
.probiotic-blend li { margin-bottom: 10px; }

/* ===== FREE BONUSES ===== */
.bonus-grid { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}
.bonus-card { 
    background: var(--bg-light); /* Smooth #f4f4f4 base */
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    padding: 35px 25px; 
    text-align: center; 
    transition: all .3s;
}
.bonus-card:hover {
    background: var(--white);
    border-color: var(--brand-accent);
    box-shadow: var(--shadow-lg);
}
.bonus-card img { 
    max-width: 100%; 
    height: auto;
    border-radius: 8px; 
    margin-bottom: 20px; 
    box-shadow: var(--shadow-sm);
}
.bonus-card h4 { color: var(--brand-accent); margin-bottom: 10px; }
.bonus-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.bonus-price { font-size: 1.2rem; font-weight: 700; margin-top: 20px; }
.free-text { color: var(--brand-green); font-size: 1.4rem; display: block; margin-top: 5px; }

/* ===== PRICING PACKAGES ===== */
.pricing-grid { 
    max-width: 1100px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    align-items: end; 
}

/* Card Container */
.p-card { 
    background: var(--white); 
    border-radius: 12px; 
    border: 1px solid var(--border-color); 
    position: relative; 
    transition: all .3s; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; /* Important for header matching rounded corners */
    box-shadow: var(--shadow-sm);
}
.p-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-lg); 
}
.p-card.pop { 
    border-color: #F87171; /* Salmon Pink border for center card */
    border-width: 2px; 
    box-shadow: var(--shadow-md); 
    z-index: 2;
    transform: scale(1.03); /* Makes the center card slightly larger */
}
.p-card.pop:hover { transform: scale(1.05) translateY(-8px); }

/* Card Headers */
.p-card-header {
    padding: 15px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    text-transform: capitalize;
}
.bg-slate { background-color: #94A3B8; } /* Gray Header */
.bg-salmon { background-color: #F87171; text-transform: uppercase; font-size: 1.6rem; } /* Pink Header */

/* Card Body */
.p-card-body {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    flex-grow: 1;
}
.bg-light-yellow { background-color: #FEFCE8; } /* Center card soft background */

/* Titles & Supply */
.supply-title { font-size: 1.8rem; font-weight: 800; color: #64748B; line-height: 1.2; }
.supply-title.dark-text { color: #334155; }
.supply-sub { font-size: 0.85rem; font-weight: 600; color: #94A3B8; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 0.5px; }

/* Product Images */
.pkg-img { 
    width: 100%; 
    max-width: 220px; 
    margin: 0 auto 20px; 
    display: block; 
    transition: transform .3s; 
}
.p-card.pop .pkg-img { max-width: 250px; } /* Slightly larger image for center */
.pkg-img:hover { transform: scale(1.05); }

/* Badges (Pills) */
.p-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 25px;
}
.badge {
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    width: 90%;
    margin: 0 auto;
    letter-spacing: 0.5px;
}
.badge-gray { background-color: #CBD5E1; color: #475569; }
.badge-green { background-color: #84CC16; }
.badge-yellow { background-color: #FBBF24; color: #475569; }

/* Price Layout */
.p-price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}
.price-big { 
    font-size: 4.8rem; 
    font-weight: 900; 
    color: #475569; 
    line-height: 1; 
    letter-spacing: -2px;
}
.price-small { 
    font-size: 1.1rem; 
    color: #64748B; 
    font-weight: 600; 
}
.price-right-col {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.free-ebooks {
    font-size: 0.8rem;
    font-weight: 800;
    color: #475569;
}

/* Yellow Gradient BUY NOW Button */
.btn-yellow {
    display: block;
    width: 100%;
    background: linear-gradient(to bottom, #FFEA29 0%, #FFB800 100%);
    color: #000000 !important;
    font-size: 1.6rem;
    font-weight: 900;
    padding: 15px 10px;
    border-radius: 8px;
    border: 1px solid #D99A00;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.5);
    margin-bottom: 12px;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
}
.btn-yellow:hover {
    background: linear-gradient(to bottom, #FFB800 0%, #FFEA29 100%);
    transform: translateY(-2px);
}

/* Cursor icon for the center button */
.cursor-btn::after {
    content: "👆"; /* Using emoji as a lightweight cursor alternative */
    font-size: 2rem;
    position: absolute;
    bottom: -15px;
    right: 15px;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
    animation: bounceRight 1.5s infinite;
}
@keyframes bounceRight {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, 5px); }
}

/* Shipping and Total */
.shipping-txt { 
    font-size: 0.95rem; 
    font-weight: 600; 
    color: #64748B; 
    font-style: italic; 
    margin-bottom: 5px;
}
.total-txt { 
    font-size: 1.1rem; 
    color: #334155; 
}
.total-txt s { color: #EF4444; margin-right: 5px; }
.total-txt strong { font-size: 1.3rem; font-weight: 900; }

/* Payment Icons */
.pay-icons {
    width: 100%;
    max-width: 200px;
    margin-top: 20px;
    opacity: 0.8;
}

/* Mobile Responsiveness Add-ons for Pricing Grid */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; gap: 40px; }
    .p-card.pop { transform: scale(1); }
    .p-card.pop:hover { transform: translateY(-8px); }
}


/* ===== SECURITY & GUARANTEE ===== */
.security-box { 
    background: var(--bg-light); /* Applying #f4f4f4 */
    padding: 40px; 
    border-radius: 12px; 
    border: 1px solid var(--border-color); 
    box-shadow: var(--shadow-sm); 
}
.security-box p { text-align: left; }
.mb-inner { 
    max-width: 1050px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 280px 1fr; 
    gap: 50px; 
    align-items: center; 
}
.mb-inner img { width: 100%; max-width: 280px; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { 
    background: var(--white); 
    border-radius: 10px; 
    margin-bottom: 15px; 
    border: 1px solid var(--border-color); 
    overflow: hidden; 
    box-shadow: var(--shadow-sm); 
}
.faq-q { 
    width: 100%; 
    background: none; 
    border: none; 
    padding: 25px 30px; 
    text-align: left; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: var(--f-lg); 
    font-weight: 700; 
    color: var(--brand-primary); 
    font-family: inherit; 
}
.faq-arrow { color: var(--brand-accent); transition: transform .3s; font-size: 1.2rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: all .4s ease; padding: 0 30px; }
.faq-item.open .faq-ans { max-height: 500px; padding: 0 30px 25px; }

/* ===== GDPR BANNER ===== */
.cookie-banner {
    position: fixed; 
    bottom: 20px; 
    left: 20px; 
    right: 20px; 
    background: var(--brand-primary); 
    color: var(--white); 
    padding: 15px 25px; 
    border-radius: 8px; 
    z-index: 9999; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: var(--shadow-lg);
}
.cookie-banner p { margin: 0; font-size: 0.95rem; color: #fff; text-align: left; }
.cookie-banner a { color: var(--brand-yellow); text-decoration: underline; }
.cookie-banner button {
    background: var(--brand-accent); 
    color: var(--white); 
    border: none; 
    padding: 10px 25px; 
    border-radius: 5px; 
    cursor: pointer; 
    font-weight: bold; 
    margin-left: 20px; 
    white-space: nowrap;
}

/* ===== FOOTER ===== */
footer { 
    background: var(--bg-dark); 
    color: #999999; 
    padding: 70px 24px 40px; 
    text-align: center; 
}
.foot-disc { 
    max-width: 1100px; 
    margin: 0 auto; 
    font-size: 0.90rem; 
    line-height: 1.7; 
    text-align: justify; 
    text-align-last: center; 
}
.foot-links { 
    display: flex; 
    justify-content: center; 
    gap: 25px; 
    margin: 40px 0 25px; 
    flex-wrap: wrap; 
}
.foot-links a { 
    color: var(--bg-light); /* #f4f4f4 for footer links */
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 0.5px; 
}
.foot-links a:hover { color: var(--brand-accent); }
.foot-copy { font-size: 0.9rem; opacity: 0.6; margin-top: 15px; }

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
    :root {
        --f-body: 1.15rem; --f-md: 1.3rem; --f-lg: 1.45rem;
        --f-xl: 1.8rem; --f-2xl: 2.2rem; --f-3xl: 2.6rem; --f-price: 3rem;
    }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content p, .hero-list li { text-align: center; }
    .hero-img { order: -1; margin-bottom: 20px; }
    
    .two-col, .mb-inner, .ing-grid, .bonus-grid { grid-template-columns: 1fr; text-align: center; }
    .pricing-grid, .badges-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
    
    .ing-item { flex-direction: column; text-align: center; }
    
    .nav-links, .btn-nav { display: none; }
    .hamburger { display: flex; }
    p, li { text-align: left; }
    .cookie-banner { flex-direction: column; gap: 15px; text-align: center; }
    .cookie-banner p { text-align: center; }
}

@media (max-width: 600px) {
    :root {
        --f-body: 1.05rem; --f-md: 1.15rem; --f-lg: 1.3rem;
        --f-xl: 1.6rem; --f-2xl: 1.9rem; --f-3xl: 2.1rem; --f-price: 2.5rem;
    }
    .section { padding: 50px 20px; }
    .badges-grid { grid-template-columns: 1fr; }
    .btn-cta, .btn-cta-xl { padding: 16px 20px; font-size: var(--f-md); width: 100%; }
    .probiotic-blend { padding: 25px 15px; }
    .foot-disc { text-align: left; text-align-last: left; }
    .hero-list li { text-align: left; }
}

/* ===== TRUST BADGE STYLE ===== */
.trust-badge-img {
    width: 100%;
    max-width: 350px; /* Adjust the size as needed */
    height: auto;
    display: block;
    margin: 20px auto; /* Centers the image perfectly */
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.08)); /* Subtle shadow for a 3D look */
}