/* Color Palette & Basic Setup (Strictly using classes) */
.html-root {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.body-main {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Colors */
.light-beige-bg { background-color: #F5F5DC;; }
.rustic-brown-bg { background-color: #086b29; }
.olive-green-bg { background-color: #24987b; }
.dark-bg { background-color: #1A1A1A; }
.warm-amber { color: #D97725; }
.text-white { color: #FFFFFF; }

/* Loader */
.loader-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #F5F5DC;
    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 #6B705C;
    border-top: 5px solid #D97725;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loader-text {
    margin-top: 15px;
    font-weight: bold;
    color: #5E3A21;
    font-size: 1.2rem;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Advert Bar */
.advert-bar {
    background-color: #E0E0E0;
    text-align: center;
    padding: 8px 15px;
}
.advert-text {
    font-size: 0.85rem;
    color: #333;
}

/* Header */
.header-main {
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-text {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #D97725;
}
.btn-shop-nav {
    background-color: #D97725;
    color: #FFF;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}
.btn-shop-nav:hover {
    background-color: #BF681F;
    transform: scale(1.05);
}

/* Mobile Menu Elements */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: #FFF;
    font-size: 2rem;
    cursor: pointer;
}
.close-btn {
    display: none;
    background: none;
    border: none;
    color: #FFF;
    font-size: 2.5rem;
    cursor: pointer;
    align-self: flex-end;
    margin: 20px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    min-height: 70vh;
}
.hero-content {
    flex: 1;
    padding-right: 20px;
}
.hero-heading {
    font-size: 4rem;
    color: #5E3A21;
    margin: 0 0 20px 0;
    line-height: 1.2;
}
.hero-subheading {
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 40px 0;
}
.btn-primary {
    background-color: #D97725;
    color: #FFF;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    display: inline-block;
}
.btn-primary:hover {
    background-color: #555A49;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-product-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.floating-animation {
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* General Sections */
.section-container {
    padding: 60px 5%;
    text-align: center;
}
.section-heading {
    font-size: 2.5rem;
    color: #5E3A21;
    margin: 0 0 30px 0;
}
.section-text {
    font-size: 1.2rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.grid-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Feature & Testimonial Cards */
.feature-card, .testimonial-card {
    background-color: #FFF;
    padding: 30px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.feature-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}
.feature-title {
    color: #5E3A21;
    margin: 0 0 10px 0;
}
.feature-text, .testimonial-text {
    color: #555;
    margin: 0;
    line-height: 1.5;
}
.avatar-circle {
    width: 60px;
    height: 60px;
    background-color: #D97725;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px auto;
}
.testimonial-name {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #6B705C;
}

/* FAQs */
.faq-item {
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: left;
    background-color: #FFF;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #D97725;
}
.faq-question {
    color: #5E3A21;
    margin: 0 0 10px 0;
}
.faq-answer {
    color: #444;
    margin: 0;
}

/* Footer */
.footer-main {
    color: #FFF;
    padding: 50px 5% 20px 5%;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-title {
    color: #D97725;
    margin: 0 0 20px 0;
}
.footer-text {
    margin: 0 0 10px 0;
    color: #CCC;
}
.footer-link {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link:hover { color: #D97725; }
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list-item { margin-bottom: 10px; }
.footer-btn-link {
    background: none;
    border: none;
    color: #CCC;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    margin-bottom: 10px;
}
.footer-btn-link:hover { color: #D97725; }
.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
}
.footer-warning {
    font-size: 0.85rem;
    color: #AAA;
    margin: 0 0 15px 0;
    font-weight: bold;
}
.footer-copyright {
    margin: 0;
    color: #888;
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}
.modal-content {
    background-color: #FFF;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 10px; right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}
.modal-heading {
    margin: 0 0 20px 0;
    color: #5E3A21;
}
.modal-text { margin: 0 0 10px 0; color: #444; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background-color: #1A1A1A;
    color: #FFF;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1500;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookie-text { margin: 0; flex: 1; padding-right: 20px; }
.cookie-buttons { display: flex; gap: 10px; }
.btn-secondary {
    background-color: transparent;
    color: #FFF;
    border: 1px solid #FFF;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.btn-secondary:hover { background-color: #333; }

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hamburger-btn { display: block; }
    .close-btn { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: #5E3A21;
        flex-direction: column;
        transition: right 0.4s ease-in-out;
        z-index: 1100;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    .nav-menu.active { right: 0; }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        width: 100%;
    }
    .nav-item { margin-bottom: 20px; }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-content { padding-right: 0; margin-bottom: 40px; }
    .hero-heading { font-size: 2.5rem; }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-text { padding-right: 0; }
}