/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #FAF9F6; /* Light cream background */
    color: #000000; /* Black text */
    line-height: 1.6;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    margin-bottom: 25px;
    font-size: 16px;
}

a {
    color: #E25822; /* Orange-red for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8DBB63; /* Moss green on hover */
}

/* Header Styles */
header {
    background-color: #6B4C3B; /* Chocolate brown */
    color: #FAF9F6; /* Light cream text */
    height: 100px;
    display: flex;
    align-items: center;
    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;
    width: 100%;
    padding: 0 20px;
}

/* Logo Styles */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: #FAF9F6;
    letter-spacing: 1px;
    margin-right: 80px; /* 80px spacing as required */
    font-family: 'Comic Sans MS', cursive, sans-serif;
    transform: rotate(-2deg);
}

.logo span {
    color: #E25822; /* Orange-red accent */
    font-size: 26px;
}

/* Navigation Styles */
nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.menu {
    display: flex;
    list-style: none;
    justify-content: center;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    color: #FAF9F6;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.menu a:hover {
    color: #8DBB63; /* Moss green on hover */
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #8DBB63;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

/* Category Dropdown */
.category-dropdown {
    position: relative;
    margin: 0 80px; /* 80px spacing as required */
}

.dropdown-btn {
    background-color: #E25822; /* Orange-red */
    color: #FAF9F6;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.dropdown-btn:hover {
    background-color: #8DBB63; /* Moss green on hover */
}

.dropdown-btn i {
    margin-left: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FAF9F6;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 4px;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-content a {
    color: #000000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #E25822;
}

.show {
    display: block;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
}

.search-input {
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 250px;
    font-size: 14px;
}

.search-btn {
    background-color: #E25822; /* Orange-red */
    color: #FAF9F6;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #8DBB63; /* Moss green on hover */
}

/* Hero Section */
.hero {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FAF9F6;
    padding: 0 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Main Content */
.main-content {
    display: flex;
    margin: 40px 0;
}

.content {
    flex: 1;
    padding: 20px 0 20px 20px;
}

/* Sidebar */
.sidebar {
    width: 300px;
    background-color: #6B4C3B; /* Chocolate brown */
    color: #FAF9F6;
    padding: 20px;
    border-radius: 4px;
    margin-left: 20px;
    align-self: flex-start;
}

.sidebar h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid #8DBB63;
    padding-bottom: 10px;
}

/* Only show sidebar on search results page */
.sidebar {
    display: none;
}

.page-zoekresultaten .sidebar {
    display: block;
}

/* Footer */
footer {
    background-color: #6B4C3B; /* Chocolate brown */
    color: #FAF9F6;
    padding: 30px 0;
    height: 120px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.footer-links a {
    color: #FAF9F6;
    margin-right: 20px;
}

.footer-links a:hover {
    color: #8DBB63; /* Moss green on hover */
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.contact-info p {
    margin-bottom: 5px;
}

/* FAQ Styling */
.faq-item {
    margin-bottom: 30px;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-answer {
    padding-left: 20px;
}

/* List Styling */
ul, ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Search Results */
.search-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-right: 50px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-price {
    font-weight: 600;
    color: #E25822;
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}

.product-link {
    display: inline-block;
    background-color: #E25822;
    color: #FAF9F6;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.product-link:hover {
    background-color: #8DBB63;
}

/* Search Filters */
.search-filters {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
}

.filter-option {
    margin-right: 10px;
    margin-bottom: 10px;
}

.filter-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-option input {
    margin-right: 5px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FAF9F6;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 10px;
    }
    
    .logo {
        margin-right: 40px;
    }
    
    .menu {
        margin-right: 40px;
    }
    
    .category-dropdown {
        margin-right: 40px;
    }
    
    .search-input {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 20px;
    }
    
    .contact-info {
        align-items: center;
    }
}

@media (max-width: 600px) {
    header {
        height: auto;
    }
    
    .header-container {
        flex-direction: column;
        padding: 10px;
    }
    
    .logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    nav {
        flex-direction: column;
        width: 100%;
        order: 2;
    }
    
    .menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
        display: none;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        margin: 10px 0;
    }
    
    .category-dropdown {
        margin: 10px 0;
        width: 100%;
        order: 3;
    }
    
    .dropdown-btn {
        width: 100%;
        justify-content: center;
    }
    
    .search-bar {
        width: 100%;
        margin-bottom: 10px;
        order: 4;
    }
    
    .search-input {
        width: 70%;
    }
    
    .search-btn {
        width: 30%;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .sidebar {
        display: none;
    }
}