/* Eremax Gummies - STYLE-1 Burgundy Theme */

/* Import Product Sans Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-burgundy: #6B1F3D;
    --secondary-burgundy: #8B2952;
    --accent-orange: #FF6B2C;
    --light-gray: #F5F5F5;
    --off-white: #FAFAFA;
    --dark-text: #333333;
    --white: #FFFFFF;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--dark-text);
    overflow-x: hidden;
    font-size: 18px;
}

/* Hero Section - Compact with Black Border */
.hero-section {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
    color: var(--white);
    padding: 30px 40px;
    text-align: center;
    position: relative;
    border: 5px solid var(--black);
    border-radius: 0;
    margin: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content img {
    margin-bottom: 15px;
}

.hero-section h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Blue Gradient H2 Headers (STYLE-1 Signature) */
h2 {
    background: linear-gradient(135deg, #4A90E2 0%, #2E5C8A 100%);
    color: var(--white);
    padding: 25px;
    text-align: center;
    font-size: 2.2em;
    margin: 60px 0 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

h3 {
    color: var(--primary-burgundy);
    font-size: 1.8em;
    margin: 30px 0 15px 0;
}

/* Add spacing after paragraphs */
p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Orange CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF5722 100%);
    color: var(--white);
    padding: 18px 45px;
    font-size: 1.3em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 107, 44, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF5722 0%, var(--accent-orange) 100%);
    box-shadow: 0 12px 30px rgba(255, 107, 44, 0.6);
    transform: translateY(-3px);
}

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

/* Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 22px;
}

nav ul li a:hover {
    color: var(--primary-burgundy);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.badge-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.badge-item img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.badge-item h3 {
    font-size: 1.3em;
    margin: 15px 0 10px 0;
    color: var(--primary-burgundy);
}

/* Product Section */
.product-section {
    background: var(--light-gray);
    padding: 60px 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 40px 0;
}

.product-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-info ul {
    list-style: none;
    margin: 30px 0;
}

.product-info ul li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1em;
    line-height: 1.8;
}

.product-info ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 900;
    font-size: 1.5em;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-burgundy);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(107, 31, 61, 0.2);
}

.benefit-card h3 {
    color: var(--primary-burgundy);
    margin-bottom: 15px;
}

/* Ingredients Section */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin: 40px 0;
}

.ingredient-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent-orange);
}

.ingredient-card h3 {
    color: var(--primary-burgundy);
    margin-bottom: 15px;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-burgundy);
}

.review-author h4 {
    color: var(--primary-burgundy);
    font-size: 1.2em;
    margin-bottom: 5px;
}

.stars {
    color: #FFD700;
    font-size: 1.3em;
}

.verified-badge {
    color: #4CAF50;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Collapsible FAQ Section (STYLE-1) */
.faq-section {
    background: var(--white);
    padding: 60px 20px;
}

.faq-item {
    margin: 20px 0;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: var(--light-gray);
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #E8E8E8;
}

.faq-question.active {
    background: var(--primary-burgundy);
    color: var(--white);
}

.faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    background: var(--white);
}

.faq-answer.active {
    max-height: 1000px;
    padding: 25px;
}

/* Pros/Cons Section */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.pros-section, .cons-section {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.pros-section {
    border-top: 5px solid #4CAF50;
}

.cons-section {
    border-top: 5px solid #F44336;
}

.pros-section h3 {
    color: #4CAF50;
}

.cons-section h3 {
    color: #F44336;
}

.pros-section ul li:before {
    content: '✓';
    color: #4CAF50;
}

.cons-section ul li:before {
    content: '✗';
    color: #F44336;
}

/* Checkout Section with Off-White Background */
.checkout-section {
    background: #daedf4;
    padding: 30px 20px;
    text-align: center;
    color: var(--dark-text);
    margin: 40px 0;
}


.checkout-section h2 {
    background: transparent;
    color: var(--dark-text);
    box-shadow: none;
    margin-bottom: 15px;
}

.checkout-section h3 {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.checkout-image {
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Boxed Guarantee Section */
.guarantee-section {
    padding: 10px 0;
    margin: 10px 0;
    background: #transparent;
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background: #ffffff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h2 {
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0 0 6px 0;
    color: #6B1F3D;
    font-size: 1.6em;
    text-align: left;
}

.guarantee-text p {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
}

.guarantee-image img {
    max-width: 120px;
    height: auto;
}

/* Expert Profile Box (matches Guarantee Box style) */
.expert-profile {
    display: flex;
    align-items: center;
    gap: 20px;

    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);

    margin: 10px 0;
}

.expert-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-burgundy);
    flex-shrink: 0;
}

.expert-info h3 {
    color: var(--primary-burgundy);
    margin: 0 0 4px 0;
    font-size: 1.2em;
}

.expert-credentials {
    color: #666;
    font-style: italic;
    margin: 0 0 6px 0;
    font-size: 14px;
}

.expert-quote {
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    color: var(--dark-text);
    margin: 0;
}

/* Footer */
footer {
    background: #2C2C2C;
    color: var(--white);
    padding: 60px 20px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-column h4 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1.2em;
}

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

.footer-column ul li {
    margin: 10px 0;
}

.footer-column ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2em;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .expert-profile {
        flex-direction: column;
        text-align: center;
    }
    
    h2 {
        font-size: 1.6em;
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column-reverse;
        text-align: center;
    }

    .guarantee-text h2 {
        text-align: center;
    }

    .guarantee-image img {
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .expert-profile {
        flex-direction: column;
        text-align: center;
    }

    .expert-avatar {
        margin-bottom: 8px;
    }
}
/* AI Overview Box */
.ai-overview {
    background: linear-gradient(135deg, #E8F4F8 0%, #D4E9F3 100%);
    border-left: 5px solid #4A90E2;
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.ai-overview h2 {
    background: none;
    color: var(--primary-burgundy);
    text-align: left;
    padding: 0;
    margin: 0 0 20px 0;
    box-shadow: none;
    font-size: 1.8em;
}

.ai-overview ul {
    list-style: none;
    padding-left: 0;
}

.ai-overview ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.ai-overview ul li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: 900;
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}
