/* ===================================
   GARAHERB - PREMIUM LUXURY DESIGN
   Mobile-First Responsive CSS
   =================================== */

/* CSS Variables */
:root {
    /* Colors - Premium Luxury Theme */
    --primary-dark: #0A1628;
    --primary-navy: #1A2942;
    --gold: #D4AF37;
    --gold-light: #E8C96F;
    --gold-dark: #B8941F;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-light: #E5E7EB;
    --gray: #9CA3AF;
    --gray-dark: #4B5563;
    --red-accent: #DC2626;
    --green-accent: #059669;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    --shadow-gold: 0 0 30px rgba(212,175,55,0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }

p {
    margin-bottom: var(--spacing-sm);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary,
.btn-hero,
.btn-add-cart,
.btn-final-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    min-height: 48px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
}

.btn-hero {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    padding: 18px 40px;
    font-size: 18px;
    box-shadow: var(--shadow-gold);
    width: 100%;
    max-width: 400px;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--green-accent) 0%, #10B981 100%);
    color: var(--white);
    width: 100%;
    font-size: 18px;
    padding: 18px;
}

.btn-final-cta {
    background: linear-gradient(135deg, var(--red-accent) 0%, #EF4444 100%);
    color: var(--white);
    font-size: 20px;
    padding: 20px 48px;
}

.btn-primary:hover,
.btn-hero:hover,
.btn-add-cart:hover,
.btn-final-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary:active,
.btn-hero:active,
.btn-add-cart:active,
.btn-final-cta:active {
    transform: scale(0.98);
}

/* Section Titles */
.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   SECTION 1: NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo-icon {
    font-size: 28px;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-dark);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    min-height: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    border-radius: 6px;
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-slow);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 0;
        font-size: 18px;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
    }
}

/* ===================================
   SECTION 2: HERO
   =================================== */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Hero Image with Animation */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-product {
    position: relative;
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.product-bottle {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(212,175,55,0.3));
    position: relative;
    z-index: 2;
}

/* Light Rays Animation */
.light-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Pulse Ring Animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 3s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.btn-hero {
    margin: 32px auto 24px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    color: var(--gold-light);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 4px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SECTION 3: WHY CHOOSE US
   =================================== */
.why-choose {
    padding: 60px 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===================================
   SECTION 4: ABOUT PRODUCT
   =================================== */
.about-product {
    padding: 60px 0;
    background: var(--white);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

.about-content h2::after {
    margin: 16px 0 0;
}

.about-content p {
    font-size: 16px;
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
}

.showcase-img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* ===================================
   SECTION 5: HOW IT WORKS
   =================================== */
.how-it-works {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
}

.how-it-works .section-title {
    color: var(--white);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.2);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    transition: all var(--transition-normal);
    min-height: 48px;
}

.accordion-header:hover {
    background: rgba(212,175,55,0.1);
}

.accordion-icon {
    font-size: 24px;
    color: var(--gold);
    transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 24px 24px;
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ===================================
   SECTION 6: REVIEWS
   =================================== */
.reviews {
    padding: 60px 0;
    background: var(--off-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    animation: slideIn 0.6s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.4s;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.review-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.reviewer-info h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.reviewer-info p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

.stars {
    color: var(--gold);
    font-size: 16px;
}

.review-text {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.8;
    font-style: italic;
}

/* ===================================
   SECTION 7: PRICING
   =================================== */
.pricing {
    padding: 60px 0;
    background: var(--white);
}

/* Countdown Timer */
.countdown-timer {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
}

.timer-label {
    font-size: 18px;
    color: var(--red-accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    padding: 20px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.timer-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-display);
    line-height: 1;
    animation: flip 1s ease;
}

@keyframes flip {
    0%, 100% { transform: rotateX(0deg); }
    50% { transform: rotateX(180deg); }
}

.timer-label-small {
    font-size: 12px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.timer-separator {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(212,175,55,0.1) 100%);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-accent);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.pricing-label {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pricing-label.gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
}

.pricing-card h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.supply-text {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.product-image-wrapper {
    margin: 24px 0;
    display: flex;
    justify-content: center;
}

.pricing-product-img {
    max-width: 200px;
    height: auto;
}

.price-per-bottle {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.price-per-bottle span {
    font-size: 20px;
    color: var(--gray);
}

.total-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.old-price {
    font-size: 24px;
    color: var(--gray);
    text-decoration: line-through;
}

.new-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--green-accent);
    font-family: var(--font-display);
}

.bonus-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.badge-bonus,
.badge-shipping {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.badge-bonus {
    background: rgba(212,175,55,0.2);
    color: var(--gold-dark);
}

.badge-shipping {
    background: rgba(5,150,105,0.2);
    color: var(--green-accent);
}

.atc-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.payment-logos {
    margin-top: 20px;
    opacity: 0.7;
}

.rating-section {
    text-align: center;
}

.rating-img {
    max-width: 300px;
    margin: 0 auto;
}

/* ===================================
   SECTION 8: BONUSES
   =================================== */
.bonuses {
    padding: 60px 0;
    background: var(--off-white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.bonus-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.bonus-img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 24px;
    border-radius: 12px;
}

.bonus-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.bonus-card p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.8;
}

/* ===================================
   SECTION 9: INGREDIENTS
   =================================== */
.ingredients {
    padding: 60px 0;
    background: var(--white);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ingredient-card {
    background: var(--off-white);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: all var(--transition-normal);
}

.ingredient-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.ingredient-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.ingredient-card p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ===================================
   SECTION 10: SCIENTIFIC EVIDENCE
   =================================== */
.scientific-evidence {
    padding: 60px 0;
    background: var(--off-white);
}

.evidence-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.evidence-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.evidence-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: left;
    transition: all var(--transition-normal);
    min-height: 48px;
}

.evidence-header:hover {
    background: var(--off-white);
}

.evidence-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.evidence-item.active .evidence-content {
    max-height: 1000px;
}

.evidence-content p {
    padding: 0 24px 16px;
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.8;
}

.evidence-content p strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ===================================
   SECTION 11: FORMULATED
   =================================== */
.formulated {
    padding: 60px 0;
    background: var(--white);
}

.formulated-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.formulated-card {
    background: var(--off-white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.formulated-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.formulated-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-display);
    color: rgba(212,175,55,0.2);
}

.formulated-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.formulated-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.formulated-card p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ===================================
   SECTION 12: GUARANTEE
   =================================== */
.guarantee {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
}

.guarantee .section-title {
    color: var(--white);
}

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.guarantee-image {
    display: flex;
    justify-content: center;
}

.guarantee-badge {
    max-width: 300px;
    filter: drop-shadow(0 10px 30px rgba(212,175,55,0.3));
    animation: float 6s ease-in-out infinite;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.guarantee-point {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.2);
}

.guarantee-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.guarantee-point h3 {
    font-size: 20px;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.guarantee-point p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.8;
}

/* ===================================
   SECTION 13: BENEFITS
   =================================== */
.benefits {
    padding: 60px 0;
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
}

.benefit-item h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--gray);
}

/* ===================================
   SECTION 14: PRICING SECOND
   =================================== */
.pricing-second {
    background: var(--off-white);
}

/* ===================================
   SECTION 15: FAQ
   =================================== */
.faq {
    padding: 60px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--off-white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: left;
    transition: all var(--transition-normal);
    min-height: 48px;
}

.faq-question:hover {
    background: rgba(212,175,55,0.1);
}

.faq-icon {
    font-size: 24px;
    color: var(--gold);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
}

/* ===================================
   SECTION 16: FINAL CTA
   =================================== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
    opacity: 0.3;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.final-cta-image {
    animation: float 6s ease-in-out infinite;
}

.final-product-img {
    max-width: 300px;
    filter: drop-shadow(0 20px 40px rgba(212,175,55,0.3));
}

.final-cta-text {
    text-align: center;
}

.final-cta-text h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 24px;
}

.final-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.final-old-price {
    font-size: 20px;
    color: var(--gray-light);
    text-decoration: line-through;
}

.final-new-price {
    font-size: 42px;
    font-weight: 700;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.urgency-text {
    margin-top: 20px;
    font-size: 14px;
    color: var(--red-accent);
    font-weight: 600;
}

/* ===================================
   SECTION 17: FOOTER
   =================================== */
.footer {
    padding: 60px 0 20px;
    background: var(--primary-dark);
    color: var(--gray-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold-light);
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-light);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-icons a:hover {
    background: var(--gold);
    transform: translateY(-4px);
}

.footer-disclaimer {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.7;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: var(--gray);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

/* ===================================
   PURCHASE POPUP
   =================================== */
.purchase-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    opacity: 0;
    transform: translateX(-100%);
    transition: all var(--transition-slow);
    max-width: 320px;
}

.purchase-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.popup-icon {
    width: 32px;
    height: 32px;
    background: var(--green-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.popup-text {
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.5;
}

.popup-text strong {
    color: var(--primary-dark);
}

/* ===================================
   TABLET BREAKPOINT (min-width: 576px)
   =================================== */
@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   TABLET LANDSCAPE (min-width: 768px)
   =================================== */
@media (min-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    
    .section-title {
        font-size: 40px;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-container {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-content {
        text-align: left;
        flex: 1;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .trust-badges {
        justify-content: flex-start;
    }
    
    .btn-hero {
        margin: 32px 0 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-grid {
        flex-direction: row;
        align-items: center;
    }
    
    .about-content,
    .about-image {
        flex: 1;
    }
    
    .about-content h2::after {
        margin-left: 0;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    .timer-value {
        font-size: 56px;
    }
    
    .guarantee-grid {
        flex-direction: row;
        align-items: center;
    }
    
    .guarantee-image,
    .guarantee-content {
        flex: 1;
    }
    
    .final-cta-content {
        flex-direction: row;
    }
    
    .final-cta-text {
        text-align: left;
        flex: 1;
    }
    
    .final-cta-text h2 {
        font-size: 36px;
    }
    
    .final-pricing {
        align-items: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   DESKTOP (min-width: 1024px)
   =================================== */
@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 40px; }
    
    .section-title {
        font-size: 48px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .formulated-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .scroll-top,
    .purchase-popup,
    .countdown-timer {
        display: none !important;
    }
}

/* ===================================
   ACCESSIBILITY & REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Keyboard Navigation */
a:focus,
button:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Selection Styles */
::selection {
    background: var(--gold);
    color: var(--primary-dark);
}

/* ===================================
   DISABLE RIGHT-CLICK & TEXT SELECT
   =================================== */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection for input fields */
input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
