/* Variables for Theme Colors */
:root {
    --color-green: #2ecc71;
    --color-red: #e74c3c;
    --color-black: #1a1a1a;
    --color-blue-sage: #879ea8;
    --color-white: #ffffff;
    --color-yellow-blue-bg: #e6f2f5; /* Clean light blue-yellowish tint */
    --color-dark-bg: #111111;
}

/* Explicit reset avoiding the * selector */
html, body, div, header, nav, section, footer, h1, h2, h3, h4, p, a, span, ul, li, button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.site-html {
    scroll-behavior: smooth;
}

.site-body {
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Ad Banner */
.ad-banner-top {
    background-color: var(--color-blue-sage);
    text-align: center;
    padding: 8px;
}

.ad-text {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-circle {
    width: 50px; height: 50px;
    border: 5px solid var(--color-blue-sage);
    border-top: 5px solid var(--color-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.loader-text {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-black);
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Header */
.site-header {
    background-color: var(--color-yellow-blue-bg);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-black);
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-green);
}

.btn-shop-now {
    background-color: var(--color-green);
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-shop-now:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.hamburger-btn, .close-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-black);
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--color-black);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(230, 242, 245, 0.9), rgba(230, 242, 245, 0.9)), url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    padding: 100px 5%;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    color: var(--color-black);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-blue-sage);
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

/* About Us */
.about-section {
    background-color: var(--color-white);
}

.about-text {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Why Us */
.why-us-section {
    background-color: #f9f9f9;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.feature-title {
    margin-bottom: 10px;
    color: var(--color-green);
}

/* Testimonials */
.testimonials-section {
    background-color: var(--color-white);
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: var(--color-yellow-blue-bg);
    padding: 25px;
    border-radius: 8px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.avatar {
    width: 40px; height: 40px;
    background-color: var(--color-blue-sage);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.customer-name {
    font-weight: bold;
}

.testimonial-text {
    font-style: italic;
    color: #444;
}

/* FAQs */
.faqs-section {
    background-color: #f9f9f9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.faq-question {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-blue-sage);
}

/* Footer */
.site-footer {
    background-color: var(--color-dark-bg);
    color: var(--color-white);
    padding: 60px 5% 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-heading {
    color: var(--color-green);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-text, .footer-link {
    color: #ccc;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-nav-list {
    list-style: none;
}

.footer-btn {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    text-decoration: underline;
    text-align: left;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-btn:hover {
    color: var(--color-white);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 20px;
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.disclaimer-text {
    font-size: 12px;
    color: #888;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.copyright-text {
    font-size: 14px;
    color: #aaa;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    color: var(--color-black);
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.modal-title {
    margin-bottom: 20px;
    color: var(--color-blue-sage);
}

.modal-text {
    margin-bottom: 10px;
}

.modal-link {
    color: var(--color-green);
    text-decoration: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0; width: 100%;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: bottom 0.5s ease;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-text {
    font-size: 14px;
    max-width: 70%;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-accept {
    background-color: var(--color-green);
    color: var(--color-white);
}

.cookie-reject {
    background-color: var(--color-red);
    color: var(--color-white);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 200;
    }

    .main-nav.active {
        right: 0;
    }

    .close-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 20px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        max-width: 100%;
    }
}




