/* --- Variables & Reset --- */
:root {
    --primary-green: #25687a; /* Mint Green / Cool Aqua mix */
    --accent-purple: #7c4dff; /* Vibrant Purple */
    --accent-red: #d50000;    /* Deep Red */
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --dark-text: #333333;
    --bg-animation-1: #e0f7fa;
    --bg-animation-2: #89dae5;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* --- Animated Background --- */
body {
    background: linear-gradient(-45deg, var(--bg-animation-1), #ffffff, var(--bg-animation-2), #e0f2f1);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

ul { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* --- Loader --- */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    color: var(--primary-green);
    font-weight: 700;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Top Disclaimer --- */
.top-disclaimer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

/* --- Header --- */
.main-header {
    background-color: var(--primary-green); /* Green Shade */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.desktop-nav .nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--dark-text);
}

.shop-btn {
    background-color: white;
    color: var(--primary-green);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: var(--accent-purple);
    color: white;
}

/* --- Hamburger & Mobile Menu --- */
.hamburger-menu {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden initially */
    width: 75%;
    height: 100%;
    background-color: white;
    z-index: 1002;
    transition: right 0.3s ease;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sidebar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.close-menu {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-text);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-size: 1.2rem;
    color: var(--dark-text);
    font-weight: 500;
}

.mobile-shop-btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.mobile-sidebar.active {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    display: none;
}

.overlay.active {
    display: block;
}

/* --- Hero Section --- */
.hero-section {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-heading {
    font-size: 3.5rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-green), var(--accent-purple));
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.product-image {
    max-width: 100%;
    width: 400px;
    height: auto;
    /* Remove background from image if any, though png is preferred */
    mix-blend-mode: multiply; /* Helps blend white bg jpgs if necessary */
}

.floating-anim {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- Sections Common --- */
.section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-text);
}

/* --- About --- */
.about-section {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    margin: 20px;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

/* --- Why Us --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.feature-title {
    margin-bottom: 15px;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff, #f0f4f8);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-purple);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.testimonial-text {
    font-style: italic;
    color: #555;
}

/* --- FAQ --- */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* --- Footer --- */
.main-footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-text, .footer-link, .footer-btn-link {
    color: #ccc;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-btn-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
}

.footer-link:hover, .footer-btn-link:hover {
    color: var(--primary-green);
}

.footer-notice {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid #444;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* --- Modals --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

/* --- Cookie Popup --- */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    z-index: 999;
    width: 90%;
    max-width: 400px;
    display: flex; /* Flex but controlled by JS */
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--primary-green);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-btn.accept {
    background-color: var(--primary-green);
    color: white;
}

.cookie-btn.reject {
    background-color: #ddd;
    color: #333;
}

/* --- Media Queries (Mobile Responsive) --- */
@media (max-width: 768px) {
    .desktop-nav, .shop-btn {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .product-image {
        width: 250px;
    }
}