/* Custom Reset (Avoiding * selector as requested) */
html, body, div, header, nav, section, footer, h1, h2, h3, h4, p, a, ul, li, img, button, span {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color Variables */
:root {
    --lavender: #e4ddf4;
    --burnt-sienna: #943d24; /* Deep Burgundy look */
    --pale-beige: #fffbf0;
    --charcoal-gray: #2d2d2d;
    --olive-green: #e1eedd;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

/* Animated Background for Site */
.site-body {
    background: linear-gradient(-45deg, var(--pale-beige), var(--lavender), var(--white));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--charcoal-gray);
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--burnt-sienna);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loader-circle {
    width: 60px;
    height: 60px;
    border: 6px solid var(--pale-beige);
    border-top: 6px solid var(--lavender);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
.loader-text {
    color: var(--white);
    font-size: 24px;
    letter-spacing: 2px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Top Ad Banner */
.top-ad-banner {
    background-color: var(--charcoal-gray);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
}

/* Header */
.main-header {
    background-color: var(--burnt-sienna);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.logo-link {
    text-decoration: none;
}
.logo-text {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.desktop-nav {
    display: flex;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-link {
    text-decoration: none;
    color: var(--pale-beige);
    font-weight: 600;
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--lavender);
}
.shop-btn {
    background-color: var(--olive-green);
    color: var(--charcoal-gray);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, background-color 0.3s;
}
.shop-btn:hover {
    background-color: var(--white);
    transform: scale(1.05);
}
.desktop-only { display: block; }

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: var(--burnt-sienna);
    z-index: 200;
    transition: right 0.4s ease;
    padding: 40px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}
.mobile-menu.active {
    right: 0;
}
.close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 35px;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}
.mobile-nav-list {
    list-style: none;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.mobile-nav-link {
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}
.mobile-shop-btn {
    display: inline-block;
    margin-top: 20px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 80vh;
}
.hero-content {
    flex: 1;
    padding-right: 40px;
}
.hero-title {
    font-size: 48px;
    color: var(--charcoal-gray);
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--charcoal-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}
.cta-btn {
    background-color: var(--burnt-sienna);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(148, 61, 36, 0.4);
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
}
.cta-btn:hover {
    transform: translateY(-3px);
    background-color: var(--charcoal-gray);
}
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-product-image {
    max-width: 100%;
    width: 450px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* General Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
    text-align: center;
}
.section-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--burnt-sienna);
}
.section-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Us */
.why-us-section {
    background-color: var(--lavender);
}
.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.feature-title {
    font-size: 22px;
    margin-bottom: 10px;
}
.feature-text {
    font-size: 16px;
    color: var(--charcoal-gray);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background-color: var(--pale-beige);
    padding: 40px 30px;
    border-radius: 15px;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.avatar {
    width: 60px;
    height: 60px;
    background-color: var(--olive-green);
    color: var(--charcoal-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
}
.testimonial-name {
    font-weight: 700;
}

/* FAQs */
.faq-section {
    background-color: var(--white);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--lavender);
}
.faq-question {
    font-size: 20px;
    color: var(--burnt-sienna);
    margin-bottom: 10px;
}
.faq-answer {
    font-size: 16px;
    line-height: 1.5;
}

/* Footer */
.main-footer {
    background-color: var(--charcoal-gray);
    color: var(--white);
    padding: 50px 5% 20px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-column {
    flex: 1;
    min-width: 250px;
}
.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--lavender);
}
.footer-text, .footer-link {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--white);
    text-decoration: none;
    display: block;
}
.footer-link:hover {
    color: var(--olive-green);
}
.footer-nav {
    list-style: none;
}
.modal-btn {
    background: none;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
    display: block;
    margin-bottom: 10px;
    text-decoration: underline;
}
.modal-btn:hover {
    color: var(--olive-green);
}
.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 20px;
    font-size: 12px;
    text-align: center;
    color: #aaa;
    border-top: 1px solid #444;
    padding-top: 20px;
}
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-box {
    background-color: var(--white);
    color: var(--charcoal-gray);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}
.modal-title {
    margin-bottom: 20px;
    color: var(--burnt-sienna);
}
.modal-text {
    line-height: 1.6;
}
.modal-text a {
    color: var(--burnt-sienna);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: var(--charcoal-gray);
    color: var(--white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 500;
    transition: bottom 0.5s ease;
}
.cookie-banner.show {
    bottom: 0;
}
.cookie-text {
    font-size: 14px;
    margin-right: 20px;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}
.cookie-btn.accept { background-color: var(--olive-green); color: var(--charcoal-gray); }
.cookie-btn.reject { background-color: transparent; border: 1px solid var(--white); color: var(--white); }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .hero-title { font-size: 38px; }
}

@media (max-width: 768px) {
    .desktop-nav, .desktop-only { display: none; }
    .hamburger-btn { display: flex; }
    .features-grid, .testimonials-grid { flex-direction: column; }
    .footer-container { flex-direction: column; text-align: center; }
    .modal-btn { margin: 0 auto 10px; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 15px; }
    .cookie-text { margin-right: 0; }
}