/* ==========================================================================
   GENESIS REVIVAL — OFFICIAL LANDING PAGE STYLESHEET
   Brand Theme: Luxurious Black & Gold
   Font: Jost (Modern, clean, highly readable)
   Language: USA English
   ========================================================================== */

/* -----------------------------------------
   1. GOOGLE FONTS & CSS CUSTOM PROPERTIES
   ----------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Jost:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i&display=swap');

:root {
    /* ---- Brand Colors (Black & Gold Theme) ---- */
    --brand-primary:        #d4af37;   /* Metallic Gold */
    --brand-primary-dark:   #aa8c2c;   /* Deep Gold / Bronze */
    --brand-dark:           #121212;   /* Rich Black */
    --brand-dark-secondary: #222222;   /* Soft Black */
    --brand-light:          #fcfbf7;   /* Very pale gold tint for sections */
    
    /* ---- UI & Background Colors ---- */
    --bg-gray:              #f8f9fa;
    --border-light:         #eaeaea;
    --white:                #ffffff;

    /* ---- CTA Button Colors ---- */
    --brand-cta:            #d4af37;   /* Gold for CTA */
    --brand-cta-hover:      #b5952f;   /* Darker Gold on hover */
}

/* -----------------------------------------
   2. GLOBAL RESET & BASE STYLES
   ----------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--brand-dark-secondary);
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--brand-dark);
}

/* -----------------------------------------
   3. CUSTOM TYPOGRAPHY & TEXT UTILITIES
   ----------------------------------------- */
.text-primary-brand {
    color: var(--brand-primary) !important;
}

.text-success-dark {
    color: #2e7d32 !important;
}

.brand-text {
    color: var(--brand-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.disclaimer-text {
    max-width: 1050px;
    font-size: 12px;
}

.hover-primary:hover {
    color: var(--brand-primary) !important;
}

/* -----------------------------------------
   4. LAYOUT & BACKGROUND UTILITIES
   ----------------------------------------- */
.bg-light-gray {
    background-color: var(--bg-gray) !important;
}

.bg-light-warning {
    background-color: #fff9e6 !important;
}

.bg-light-blue {
    background-color: #faf9f5 !important; 
}

.bg-light-yellow {
    background-color: #fdfbf7 !important;
}

.bg-pricing-blue {
    background: linear-gradient(135deg, #1f6a9e 0%, #134a71 100%) !important;
}

.max-width-950 { max-width: 950px; }
.max-width-900 { max-width: 900px; }
.max-width-220 { max-width: 220px; }

/* -----------------------------------------
   5. BORDER & BOX SHADOW UTILITIES
   ----------------------------------------- */
.border-primary-thick {
    border: 3px solid var(--brand-primary) !important;
}

.border-light-solid {
    border: 1px solid var(--border-light) !important;
}

.drop-shadow {
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.15));
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12) !important;
}

/* -----------------------------------------
   6. BUTTONS & ANIMATIONS
   ----------------------------------------- */
.cta-button {
    background-color: var(--brand-cta) !important;
    border-color: var(--brand-cta) !important;
    color: var(--brand-dark) !important; /* Black text on Gold button */
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover,
.cta-button:focus {
    background-color: var(--brand-cta-hover) !important;
    border-color: var(--brand-cta-hover) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4) !important;
}

@keyframes pulse {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(212, 175, 55, 0.65); }
    50%  { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);   }
    100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(212, 175, 55, 0);    }
}

.pulse-btn {
    animation: pulse 2.5s infinite;
    background-color: var(--brand-cta) !important;
    border-color: var(--brand-cta) !important;
    color: var(--brand-dark) !important;
}

.pulse-btn:hover {
    background-color: var(--brand-cta-hover) !important;
    color: var(--white) !important;
}

/* -----------------------------------------
   7. HEADER & NAVIGATION
   ----------------------------------------- */
.header-wrapper {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--brand-primary);
    z-index: 1050;
}

.nav-hover {
    font-size: 16px;
    transition: color 0.25s ease;
}

.nav-hover:hover {
    color: var(--brand-primary) !important;
}

/* -----------------------------------------
   8. MOBILE SIDEBAR
   ----------------------------------------- */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--brand-dark);
    z-index: 1060;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.open {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(3px);
    z-index: 1055;
}

/* -----------------------------------------
   9. HERO & SECTION IMAGES
   ----------------------------------------- */
.hero-bg {
    background: radial-gradient(circle at top right, var(--brand-light), var(--white));
    position: relative;
    overflow: hidden;
}

.custom-badge {
    border: 1px solid var(--brand-primary);
}

.hero-product-img {
    max-width: 300px;
    width: 100%;
}

.section-side-img {
    max-width: 530px;
    width: 100%;
}

.trust-badge-img {
    max-width: 700px;
    width: 100%;
}

/* -----------------------------------------
   10. CARDS (BENEFITS, INGREDIENTS, REVIEWS)
   ----------------------------------------- */
.icon-large {
    font-size: 3.5rem;
}

.img-cover-80 {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid var(--brand-primary);
}

.img-cover-70 {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.border-review-img {
    border: 3px solid var(--brand-primary);
}

.ingredient-card, .benefit-card, .review-card, .bonus-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-img {
    max-height: 200px;
}

/* -----------------------------------------
   11. PRICING SECTION (UPDATED STYLES)
   ----------------------------------------- */
.pricing-card {
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.package-img {
    max-height: 180px;
}

.package-img-large {
    max-height: 200px;
}

.price-large {
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -2px;
}

.btn-pricing-yellow {
    background: linear-gradient(to bottom, #ffc107, #e0a800);
    border: none;
    color: #000 !important;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-pricing-yellow:hover {
    background: linear-gradient(to bottom, #ffca28, #f0b000);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15) !important;
}

.payment-img {
    max-width: 140px;
}

/* Ribbon for Best Value card */
.ribbon-top-right {
    position: absolute;
    top: 0;
    right: 0;
    background: #d32f2f;
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
    line-height: 1.1;
    padding: 10px 20px 10px 15px;
    border-radius: 0 0 0 10px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.ribbon-top-right::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 10px solid #d32f2f;
}
.ribbon-top-right::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 10px solid #fff;
}

/* Save circles */
.save-circle {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    line-height: 1.2;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 5;
}

.save-circle-red {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    line-height: 1.2;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 5;
}

/* Arrow curve */
.arrow-curve {
    position: absolute;
    left: -75px;
    top: 0px;
    z-index: 5;
}

@media (max-width: 991px) {
    .arrow-curve {
        display: none;
    }
    .ribbon-top-right {
        font-size: 0.7rem;
        padding: 5px 10px 5px 8px;
    }
    .save-circle, .save-circle-red {
        width: 55px;
        height: 55px;
        font-size: 0.6rem;
        top: 30px;
        right: 10px;
    }
    .price-large {
        font-size: 3.2rem;
    }
}

@media (max-width: 767px) {
    .price-large {
        font-size: 3rem;
    }
    .btn-pricing-yellow {
        font-size: 1rem;
    }
    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* -----------------------------------------
   12. GUARANTEE & FTC BANNER
   ----------------------------------------- */
.guarantee-box {
    border-color: var(--brand-primary) !important;
}

.ftc-banner {
    background-color: var(--brand-dark);
    color: var(--brand-primary);
    border-bottom: 2px solid var(--brand-primary-dark);
    padding: 10px 16px;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
}

/* -----------------------------------------
   13. GDPR BANNER
   ----------------------------------------- */
.gdpr-container {
    background-color: var(--brand-dark-secondary);
    color: var(--white);
    padding: 15px 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    font-size: 13px;
    line-height: 1.5;
    border-top: 2px solid var(--brand-primary);
}

/* -----------------------------------------
   14. SCIENTIFIC REFERENCES LIST
   ----------------------------------------- */
#scientific-references ol {
    padding-left: 1.5rem;
    color: var(--brand-dark-secondary);
}

#scientific-references ol li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

#scientific-references ol li strong {
    color: var(--brand-dark);
}

#scientific-references ol li a {
    color: var(--brand-primary-dark);
    text-decoration: none;
    font-weight: 500;
}

#scientific-references ol li a:hover {
    text-decoration: underline;
    color: var(--brand-primary);
}

/* -----------------------------------------
   15. RESPONSIVE DESIGN ADJUSTMENTS (Legacy)
   ----------------------------------------- */
@media (max-width: 991px) {
    .pricing-best-value {
        transform: scale(1);
    }
    .pricing-best-value:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 767px) {
    .gdpr-container {
        padding: 10px;
    }
}