/* ============================================
   ROJAVA SUPERMARKT - HOME PAGE STYLES
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DF3F25;
    --secondary-color: #F8C21A;
    --accent-color: #F8C21A;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #fff9e6;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --danger-color: #dc3545;
    --success-color: #28a745;
    --info-color: #17a2b8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    /* Transitie voor het scroll-effect */
    transition: transform 0.3s ease-in-out;
}

/* Class om header te verbergen bij scrollen */
.main-header.header-hidden {
    transform: translateY(-100%);
}

/* Zorg dat header zichtbaar blijft als menu open is */
.main-header.menu-is-open {
    transform: translateY(0) !important;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i,
.top-links i {
    margin-right: 5px;
}

.top-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 15px;
    transition: opacity 0.3s;
}

.top-links a:hover {
    opacity: 0.8;
}

/* Main Header */
.header-main {
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo h1 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.logo h1 span {
    color: var(--secondary-color);
}

/* Logo styling */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    margin: 0;
}

/* Responsive logo styling (rest zit onderaan) */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
    .logo h1 {
        font-size: 1.3rem;
    }
}

/* Search Bar (Desktop Styling) */
.search-bar {
    flex: 1;
    max-width: 500px;
}

.search-bar form {
    display: flex;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    outline: none;
}

.search-bar button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #c9331d;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icon {
    position: relative;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.header-icon:hover {
    color: var(--primary-color);
}

.header-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50%;
    min-width: 20px;
    min-height: 20px;
    padding: 2px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    line-height: 1;
}

/* Hamburger Menu Styles (Desktop default: hidden) */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    transition: color 0.3s;
}

.hamburger-menu:hover {
    color: var(--primary-color);
}

/* Notification animations */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.cart-icon .cart-total {
    display: block;
    font-size: 0.85rem;
    margin-top: 5px;
    color: var(--text-dark);
    font-weight: bold;
}

/* Navigation */
.main-nav {
    background: var(--primary-color);
}

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

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 15px 25px;
    transition: background 0.3s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.nav-menu > li > a i {
    margin-right: 5px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    min-width: 200px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1100;
}

/* Op desktop: hover laat menu zien */
@media (min-width: 969px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
    .mobile-only {
        display: none !important;
    }
}

.dropdown-menu li a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 20px;
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: 
        linear-gradient(135deg, rgba(223, 63, 37, 0.5) 0%, rgba(248, 194, 26, 0.5) 100%),
        url('../img/hero-background.png') center/cover no-repeat;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 100px 0;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    animation: fadeInUp 1.2s;
    border: 3px solid var(--white);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ============================================
   CATEGORIES SECTION
/* ============================================
   NIEUWE CATEGORIE STIJLEN (MODERN & FRIS)
   ============================================ */

.categories {
    padding: 60px 0;
    background: #ffffff; /* Witte achtergrond voor de sectie */
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.category-card {
    background: #ffffff; /* Wit i.p.v. oranje/crème */
    border-radius: 16px; /* Iets ronder */
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    /* Subtiele rand en schaduw voor diepte */
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden; /* Zorgt dat de afbeelding netjes binnen de ronding blijft */
    padding: 0; /* Padding weg zodat de afbeelding de rand raakt */
    display: flex;
    flex-direction: column;
}

/* Hover effect: Kaart komt iets omhoog */
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* De afbeelding container */
.category-card .category-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    /* Een heel lichte grijze achtergrond laat witte producten (zoals melk/kaas) goed uitkomen */
    background: #f9f9f9; 
    padding: 20px; /* Ruimte rondom het product */
    transition: transform 0.5s ease;
    border-bottom: 1px solid #f0f0f0;
}

/* Zoom effect op de foto bij hover */
.category-card:hover .category-image {
    transform: scale(1.08);
}

/* De tekst container */
.category-card .category-content {
    padding: 25px 20px;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.category-card p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* De 'Bekijk' knop mooier maken */
.category-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: rgba(223, 63, 37, 0.08); /* Heel licht rood */
    transition: all 0.3s ease;
    align-self: center; /* Centreer de knop */
    display: inline-block;
}

.category-card:hover a {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(223, 63, 37, 0.3);
}

/* ============================================
   FEATURED PRODUCTS SECTION
   ============================================ */

.featured-products {
    padding: 50px 0;
    background: var(--bg-light);
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 1;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px 20px 5px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.product-description {
    padding: 0 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-price {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
}

.new-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.btn-add-cart {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

.btn-add-cart:hover {
    background: #c9331d;
}

.btn-add-cart i {
    margin-right: 8px;
}

/* ============================================
   USPs SECTION
   ============================================ */

.usps {
    padding: 50px 0;
    background: var(--white);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.usp-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.usp-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.usp-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.usp-item p {
    color: var(--text-light);
}

/* ============================================
   FOOTER STYLES
   ============================================ */

/* Customer Reviews Section */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.reviews h2 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reviewer-details h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.review-date {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.review-content {
    margin: 15px 0;
}

.review-content p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}
.review-verified i {
    font-size: 1rem;
}

/* Hidden Reviews Animation */
.review-hidden {
    display: none;
}

.review-visible {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

/* Show More Button */
.reviews-show-more {
    text-align: center;
    margin: 30px 0;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(223, 63, 37, 0.3);
}

.btn-show-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(223, 63, 37, 0.4);
}

.btn-show-more:active {
    transform: translateY(-1px);
}

.btn-show-more i {
    transition: transform 0.3s ease;
}

.btn-show-more:hover i {
    transform: translateY(3px);
}

/* Reviews Statistics */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid var(--secondary-color);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stat-stars i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .reviews {
        padding: 50px 0;
    }
    
    .reviews h2 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .review-stars {
        margin-left: 0;
    }
    
    .btn-show-more {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.main-footer {
    background: var(--text-dark);
    color: var(--white);
}

.footer-content {
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    color: #bbb;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #bbb;
}

.contact-list li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
    padding: 40px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.newsletter-text h3 i {
    margin-right: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    min-width: 300px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #e0ad15;
}

/* Payment Methods */
.payment-methods {
    background: #222;
    padding: 20px 0;
    text-align: center;
}

.payment-methods p {
    margin-bottom: 10px;
    color: #bbb;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
}

.payment-icons i {
    color: #bbb;
    transition: color 0.3s;
}

.payment-icons i:hover {
    color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
    background: #1a1a1a;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #bbb;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN (AANGEPAST)
   ============================================ */

@media (max-width: 968px) {
    /* 1. Verberg elementen die nu in het menu zitten */
    .top-bar, 
    .search-bar.desktop-only {
        display: none !important;
    }

    /* 2. Header Layout: Logo links, Acties rechts */
    .header-content {
        flex-direction: row; /* Blijf op 1 rij */
        justify-content: space-between;
        padding: 0 10px;
    }
    
    .logo { margin: 0; }
    
    /* 3. Header Acties (Cart & Hamburger) */
    .header-actions {
        margin-top: 0;
        gap: 15px;
        position: static; /* Reset absolute pos */
        width: auto;
    }

    /* Zorg dat hamburger zichtbaar is */
    .hamburger-menu { 
        display: block; 
    }
    .hamburger-menu.active i::before { 
        content: "\f00d"; /* Cross icon */
    }

    /* 4. Main Navigatie (Uitklap Menu Container) */
    .main-nav {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 999;
    }

    /* Wanneer menu open is */
    .main-nav.nav-open {
        max-height: 95vh; /* Bijna hele scherm, scrollbaar */
        overflow-y: auto;
        padding-bottom: 30px;
    }

    /* --- STIJLEN VOOR ITEMS IN HET MOBIELE MENU --- */

    /* Zoekbalk binnen menu */
    .mobile-search {
        padding: 20px 20px 10px;
    }
    .mobile-search form {
        display: flex;
        background: rgba(255,255,255,0.2); /* Transparant wit */
        border-radius: 30px;
        padding: 5px;
    }
    .mobile-search input {
        background: transparent;
        border: none;
        color: white;
        padding: 8px 15px;
        width: 100%;
        outline: none;
    }
    .mobile-search input::placeholder {
        color: rgba(255,255,255,0.7);
    }
    .mobile-search button {
        background: var(--white);
        color: var(--primary-color);
        border-radius: 50%;
        width: 35px;
        height: 35px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Customer Toggle binnen menu */
    .customer-type-toggle.mobile-toggle {
        justify-content: center;
        margin: 10px 20px;
        background: rgba(255,255,255,0.15);
    }

    /* Menu Items zelf */
    .nav-menu {
        flex-direction: column;
        padding: 10px 0;
    }
    .nav-menu li {
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.1); /* Dunne lijntjes tussen items */
    }
    .nav-menu > li > a {
        padding: 15px 25px;
    }

    /* Dropdown mobiel */
    .dropdown-menu {
        position: static; /* Schuift content naar beneden */
        width: 100%;
        display: none;
        background: rgba(0,0,0,0.15); /* Iets donkerder rood */
        padding-left: 20px;
        box-shadow: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        color: rgba(255,255,255,0.9);
    }
    .dropdown-menu li a:hover {
        background: rgba(0,0,0,0.1);
        color: white;
    }

    /* Footer sectie in menu (Contact & Links) */
    .mobile-menu-footer {
        border-top: 1px solid rgba(255,255,255,0.2);
        padding: 20px;
        background: rgba(0,0,0,0.1);
        margin-top: 10px;
    }
    .mobile-links {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 15px;
    }
    .mobile-links a {
        color: white;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
    }
    .mobile-contact {
        color: rgba(255,255,255,0.8);
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Overige algemene responsive fixes */
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero {
        padding: 80px 20px;
    }
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .category-grid,
    .product-grid,
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 60px 20px;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
}