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

:root {
    --primary-color: #ffd814;
    --primary-hover: #e6c212;
    --dark-bg: #2a324b;
    --light-bg: #e1e5ee;
    --text-color: #212529;
    --white: #ffffff;
    --gray: #6c757d;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; text-align: center; }
h3 { font-size: 1.3rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 10px rgba(255, 216, 20, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-nav {
    display: none; /* Hidden on mobile by default */
}

/* Header */
header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.nav-links {
    display: none; /* Mobile menu hidden for simplicity, or could use a hamburger */
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.hero-content h1 {
    color: var(--dark-bg);
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: var(--white);
}

.section-header {
    margin-bottom: 40px;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.feature-card {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
}

/* Ingredients Section */
.ingredients {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
    gap: 20px;
}

.ingredient-card {
    background-color: var(--white);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.ingredient-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.ingredient-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.ingredient-card p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-card {
    background-color: var(--white);
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    background-color: var(--primary-color);
    color: #000;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card img {
    max-width: 150px;
    margin: 20px auto;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
}

.shipping {
    color: green;
    font-weight: 600;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: var(--dark-bg);
    color: var(--white);
}

.faq .section-header h2 {
    color: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #ccc;
}

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

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

/* Footer */
footer {
    padding: 40px 0;
    background-color: #f4f4f4;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: var(--gray);
    margin: 0 10px;
    text-decoration: none;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 20px;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block; /* Shown on mobile */
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}


/* Legal Content Pages */
.legal-page {
    padding: 80px 0;
    line-height: 1.8;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    text-align: left;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.legal-content h2 {
    text-align: left;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--dark-bg);
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.btn-back {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
}

.btn-back:hover {
    color: var(--primary-hover);
}

/* Desktop Responsiveness */

@media (min-width: 769px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }

    .hero .container {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 50px;
    }

    .hero-image img {
        max-width: 500px;
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin: 0 20px;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--dark-bg);
        font-weight: 600;
        transition: var(--transition);
    }

    .nav-links a:hover {
        color: var(--primary-hover);
    }

    .btn-nav {
        display: inline-block;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .ingredients-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pricing-grid {
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
    }

    .pricing-card {
        flex: 1;
        max-width: 350px;
    }

    .floating-btn {
        display: none; /* Hide on desktop as requested */
    }
}
