/* --- Variables & Reset --- */
:root {
    --color-bg-base: #C4C3D0; /* Lavender Gray */
    --color-bg-gradient: #dcdce6;
    --color-primary: #584a75; /* Deep purple for header/text */
    --color-accent-orange: #CC5500; /* Burnt Orange */
    --color-accent-olive: #6B8E23; /* Olive Drab */
    --color-dark-olive: #556B2F; /* Dark Olive Green */
    --color-text-main: #2c2c2c;
    --color-text-light: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Animated Gradient Background */
    background: linear-gradient(-45deg, var(--color-bg-base), #e0e0eb, #b8b8c8, var(--color-bg-base));
    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%; }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Loader --- */
.loader-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--color-bg-base);
    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-accent-orange);
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-dark-olive);
    letter-spacing: 2px;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- Ad Disclosure --- */
.ad-disclosure {
    background-color: var(--color-dark-olive);
    color: var(--color-text-light);
    text-align: center;
    font-size: 0.8rem;
    padding: 8px 0;
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    background-color: var(--color-primary); /* Purple shade */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo a:hover {
    color: var(--color-accent-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links li a:hover {
    color: var(--color-accent-orange);
}

.btn-shop {
    background-color: var(--color-accent-orange);
    color: var(--color-text-light) !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s;
}

.btn-shop:hover {
    background-color: #e66400;
    transform: scale(1.05);
}

/* --- Hamburger & Mobile Menu --- */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-light);
    border-radius: 5px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden initially */
    width: 75%; /* 75% width as requested */
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    right: 0;
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.mobile-nav-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-link {
    font-size: 1.5rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.mobile-btn {
    display: inline-block;
    margin-top: 10px;
}

/* --- Hero Section --- */
.hero-section {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-dark-olive);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--color-dark-olive);
    color: var(--color-text-light);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.4);
}

.btn-cta:hover {
    background-color: var(--color-accent-olive);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* Animation removed from background, applied to image element directly */
}

.floating-img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- Sections Common --- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 50px;
}

/* --- About Us --- */
.about-section {
    background-color: rgba(255,255,255,0.5);
    border-radius: 20px;
    margin: 40px auto;
    width: 90%;
    max-width: 1000px;
}

.about-content p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-main);
}

/* --- 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: 3rem;
    color: var(--color-accent-orange);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark-olive);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-weight: 700;
    text-align: right;
}

/* --- FAQ --- */
.faq-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 5px solid var(--color-accent-olive);
}

.faq-item h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-primary);
}

/* --- Footer --- */
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.disclaimer-box {
    border: 1px solid #444;
    padding: 15px;
    margin-bottom: 40px;
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--color-accent-orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-link {
    color: #e0e0e0;
    text-decoration: underline;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--color-accent-olive);
}

.modal-trigger {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    text-align: left;
    padding: 0;
    text-decoration: underline;
}

.modal-trigger:hover {
    color: white;
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

/* --- Modals --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.8); 
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; 
    padding: 40px;
    border: 1px solid #888;
    width: 80%; 
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    color: #333;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: black;
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.modal-content p {
    margin-bottom: 10px;
}

/* --- Cookie Consent --- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.1);
    z-index: 999;
    display: none; /* Controlled by JS */
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

@media (min-width: 768px) {
    .cookie-consent {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 20px 50px;
    }
}

.btn-accept, .btn-reject {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    border: none;
}

.btn-accept {
    background-color: var(--color-accent-olive);
    color: white;
    margin-right: 10px;
}

.btn-reject {
    background-color: #ccc;
    color: #333;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .ad-disclosure {
        font-size: 0.7rem;
    }
}