/* --- Reset & Variables --- */
:root {
    --primary-color: #8FA294; /* Sage Green */
    --secondary-color: #8B0000; /* Deep Red */
    --dark-bg: #1a1a1a; /* Black/Dark Grey */
    --light-bg: #f9f9f9; /* White/Off-white */
    --text-color: #333333;
    --white: #ffffff;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Loader --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-content {
    text-align: center;
    color: var(--primary-color);
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(143, 162, 148, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin: 20px auto 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* --- Ad Notice --- */
.ad-notice {
    background-color: #f4f4f4;
    color: #666;
    font-size: 12px;
    text-align: center;
    padding: 5px 10px;
    border-bottom: 1px solid #ddd;
}

/* --- Header --- */
.main-header {
    background-color: #5D4037; /* Brown shade as requested */
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desktop-nav .nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    font-size: 16px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-shop {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: var(--transition);
}

.btn-shop:hover {
    background-color: #600000;
    transform: translateY(-2px);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
}

/* --- Mobile Menu --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--white);
    z-index: 1001;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    font-weight: bold;
    font-size: 20px;
    color: #5D4037;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

.mobile-nav-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 18px;
    color: var(--text-color);
    display: block;
}

.mobile-nav-link.highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

/* --- Hero Section --- */
.hero-section {
    background-color: #f0f4f1; /* Very light sage/grey */
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.btn-hero {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: var(--transition);
}

.btn-hero:hover {
    background-color: #7a8e7f;
    transform: scale(1.05);
}

.hero-image-wrapper {
    flex: 1;
}

.hero-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- About Section --- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-bg);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.text-paragraph {
    margin-bottom: 20px;
    font-size: 17px;
    color: #444;
}

.about-image {
    flex: 1;
}

.section-img {
    border-radius: 8px;
}

/* --- Why Choose Us --- */
.why-us-section {
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    margin-bottom: 15px;
    font-size: 20px;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.user-name {
    font-weight: bold;
    text-align: right;
}

/* --- FAQ --- */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 0;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 150px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* --- Footer --- */
.main-footer {
    background-color: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-text {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-link-mail {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: #ccc;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-modal-trigger {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    text-align: left;
}

.footer-modal-trigger:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #777;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    border-top: 1px solid #222;
}

/* --- Cookie Popup --- */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 999;
    display: none; /* Hidden by default, shown via JS */
    max-width: 400px;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-cookie-reject {
    background-color: #ddd;
    color: #333;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* --- Modals --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #000;
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.modal-content p {
    margin-bottom: 15px;
    line-height: 1.5;
}

/* --- Responsive Queries --- */
@media (max-width: 768px) {
    .desktop-nav, .btn-shop {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
    }

    .hero-title {
        font-size: 36px;
    }
}