/*
Theme Name: House of Hair Thema
Author: JdeB Web Solutions
Description: Custom thema House of Hair - Bussum
Version: 1.4 (No Intro + Brands Boxed)
*/

/* =========================================
   1. VARIABELEN & RESET
   ========================================= */
:root {
    --color-gold: #8c713d;
    --color-grey: #616164;
    --color-white: #ffffff;
    --color-text: #333333;
    --font-main: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-main);
    color: var(--color-grey);
    background: #fcfcfc;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   2. HEADER & NAVIGATIE (BASIS)
   ========================================= */
header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.logo img {
    height: 60px;
    width: auto;
}

/* Desktop Menu Basis */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--color-grey);
    letter-spacing: 1px;
}

.main-navigation a:hover {
    color: var(--color-gold);
}

.hamburger-btn { display: none; } 

/* =========================================
   3. TOP BAR (VACATURE BALK)
   ========================================= */
.top-bar-alert {
    background-color: #222;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 20;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-btn {
    background-color: var(--color-gold);
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.top-bar-btn:hover {
    background-color: #fff;
    color: #222;
}

/* =========================================
   4. HERO SLIDER
   ========================================= */
.hero-slider {
    position: relative;
    height: 600px !important; 
    min-height: 600px;
    overflow: hidden; 
    background: #333; 
    display: block;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background-size: cover; 
    background-position: center; 
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active { opacity: 1; }

.slider-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center; 
    align-items: center; 
    background: rgba(0,0,0,0.1); 
}

.hero-btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: #fff;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--color-gold);
    color: #fff;
    transform: scale(1.05);
}

/* Styling voor de inhoud OVER de slider */
.slider-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    /* Zorg dat de tekst en knop mooi onder elkaar staan */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* De H1 Titel Styling */
.hero-title {
    color: #ffffff;             /* Wit */
    font-size: 56px;            /* Lekker groot statement */
    font-weight: 700;           /* Dikgedrukt */
    text-transform: uppercase;  /* Hoofdletters */
    letter-spacing: 3px;        /* Beetje ruimte tussen letters */
    margin-bottom: 30px;        /* Ruimte tussen tekst en de knop */
    line-height: 1.1;
    
    /* Tekstschaduw is essentieel om het leesbaar te houden op een foto */
    text-shadow: 0 2px 15px rgba(0,0,0,0.5); 
}

/* Mobiele aanpassing voor de H1 */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 32px;        /* Kleiner op mobiel */
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
}

/* =========================================
   5. ALGEMENE ELEMENTEN & COMPONENTEN
   ========================================= */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    color: var(--color-gold);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 32px;
}

/* Cards & Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); }

/* Link styling voor arrangementen */
a.card {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
a.card h3 {
    color: var(--color-grey);
    transition: color 0.3s ease;
}
a.card:hover h3 {
    color: var(--color-gold);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%; /* Blob vorm */
    transition: all 0.5s ease;
}
.card:hover img {
    border-radius: 50%;
    transform: scale(1.02);
}

.card .card-image-wrapper {
    margin-bottom: 20px;
    transition: all 0.5s ease;
}
.card:hover .card-image-wrapper {
    border-radius: 50% !important;
    transform: scale(1.02);
}

.card h3 {
    color: var(--color-grey);
    margin-bottom: 10px;
    font-size: 20px;
}

.card .team-role {
    font-weight: normal;
    margin-bottom: 5px;
    color: #555;
}

.team-days {
    font-size: 13px;
    color: #999;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.team-days .icon {
    font-size: 11px;
    opacity: 0.6;
    margin-right: 3px;
}

/* Gallery / Impressie */
.gallery-section {
    max-width: 100%;
    padding: 60px 0;
    background: #fafafa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.gallery-grid img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px; 
    transition: transform 0.3s ease;
    box-shadow: none;
}
.gallery-grid img:hover {
    transform: scale(1.02);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Google Maps */
.map-container iframe {
    width: 100%; height: 450px; border: 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* =========================================
   6. PAGINA SPECIFIEKE STIJLEN
   ========================================= */

/* --- A. Prijzen Pagina --- */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.price-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.price-header {
    background: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.price-header h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.price-body {
    padding: 30px;
    background: #fcfcfc;
    text-align: center;
}
.price-vanaf {
    margin-bottom: 30px;
    color: var(--color-gold);
}
.price-vanaf .currency {
    font-size: 20px;
    vertical-align: top;
    font-weight: bold;
}
.price-vanaf .amount {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}
.price-vanaf .label {
    display: block;
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin-top: 5px;
}
.treatment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.treatment-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    width: 100%;
}
.treatment-name { flex: 0 1 auto; text-align: left; }
.treatment-line {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px 5px 10px;
    min-width: 20px;
}
.treatment-price {
    font-weight: bold;
    color: #333;
    white-space: nowrap; 
    flex-shrink: 0; 
    text-align: right;
    min-width: 60px; 
}

/* --- B. Contact Pagina & Forms --- */
.contact-section {
    padding: 60px 0;
    background: #fcfcfc;
    position: relative;
    overflow: hidden;
}
.contact-blob-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}
.contact-content-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
.decoratie-blob-achter {
    position: absolute;
    top: -40px; left: -40px;
    width: 105%; height: 110%;
    background-color: #f0f0f0;
    border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
    z-index: -1;
    transform: rotate(-2deg);
}

/* Contact Form 7 Styling */
.wpcf7-form label { font-weight: 600; color: #333; display: block; margin-bottom: 8px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    background: #fcfcfc;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 25px;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 8px rgba(140, 113, 61, 0.2);
    outline: none;
}
.wpcf7-form textarea { height: 150px; resize: vertical; }
.wpcf7-form input[type="submit"] {
    display: inline-block;
    padding: 15px 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.wpcf7-form input[type="submit"]:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.wpcf7-form p:has(.wpcf7-captchac) {
    display: flex; align-items: center; flex-wrap: wrap; gap: 15px;
    margin-bottom: 25px; background: #f9f9f9; padding: 15px; border-radius: 15px;
}
.wpcf7-captchac { border-radius: 8px; }
.wpcf7-captchar { width: 120px !important; margin-bottom: 0 !important; }

/* Contact Editor Content Styling */
.contact-entry-content h2, .contact-entry-content h3 {
    color: var(--color-gold);
    margin-top: 30px; margin-bottom: 15px;
    text-transform: uppercase; font-size: 20px;
}
.contact-entry-content p, .contact-entry-content ul {
    margin-bottom: 20px; color: #555; font-size: 16px;
}
.contact-entry-content ul { padding-left: 20px; }


/* --- C. Standaard Pagina's (Vacatures e.d.) --- */
.standard-page-section {
    padding: 60px 0 100px 0;
    background: #fcfcfc;
    overflow: hidden;
}
.page-header { text-align: center; margin-bottom: 50px; }
.page-header h1 {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 36px;
}
.title-divider {
    width: 60px; height: 3px;
    background: var(--color-gold);
    margin: 0 auto; border-radius: 2px;
}
.page-card-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.page-content-body {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}
.page-blob-decor {
    position: absolute;
    top: -30px; right: -30px;
    width: 100%; height: 100%;
    background: #f4f4f4;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    transform: rotate(3deg);
}

/* Typografie binnen Standaard Pagina's */
.page-content-body p { margin-bottom: 25px; line-height: 1.8; }
.page-content-body p:last-child { margin-bottom: 0; }

.page-content-body h2, 
.page-content-body h3, 
.page-content-body h4 {
    margin-top: 40px; margin-bottom: 15px; line-height: 1.3;
}
.page-content-body > *:first-child { margin-top: 0; }

.page-content-body h2 {
    color: #333; font-size: 24px;
    border-bottom: 1px solid #eee; padding-bottom: 10px;
}
.page-content-body h3 {
    color: var(--color-gold); font-size: 20px;
    text-transform: uppercase;
}

.page-content-body ul { margin-bottom: 25px; padding-left: 20px; list-style: none; margin-top: 10px; }
.page-content-body ul li { position: relative; margin-bottom: 10px; padding-left: 25px; }
.page-content-body ul li::before {
    content: '•'; color: var(--color-gold);
    font-weight: bold; font-size: 24px;
    position: absolute; left: 0; top: -5px;
}
.page-content-body a {
    color: var(--color-gold); font-weight: bold;
    border-bottom: 1px dotted var(--color-gold);
}
.page-content-body a:hover { color: #333; border-bottom-color: #333; }

/* --- D. Single Page / Portfolio / Blog --- */
.single-featured-image {
    width: 100%; position: relative;
    z-index: 3; line-height: 0;
}
.single-featured-image img {
    width: 100%; height: auto; object-fit: cover;
    max-height: 400px;
    border-radius: 30px 30px 0 0; 
    border-bottom: 1px solid #f0f0f0;
}
.single-featured-image + .page-content-body {
    border-radius: 0 0 30px 30px;
    padding-top: 40px;
}


/* =========================================
   7. MERKEN BALK (Boxjes + Full Width)
   ========================================= */
.brands-section {
    max-width: 100% !important;
    width: 100%;
    margin: 0;
    padding: 60px 0;
    background-color: #f4f4f4;
    border-top: 1px solid #eaeaea;
}

.brands-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; 
}

/* Het labeltje */
.brands-label {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-gold);
    font-size: 13px;
    letter-spacing: 2px;
    position: relative;
}
.brands-label::after {
    content: ''; display: block; width: 40px; height: 1px;
    background: var(--color-gold); margin: 10px auto 0 auto; opacity: 0.5;
}

/* De grid voor de boxjes */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; 
}

/* HET BOXJE ZELF */
.brand-item {
    background: #fff;           
    padding: 20px;              
    border-radius: 15px;        
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); 
    width: 160px;               
    height: 100px;              
    display: flex;
    justify-content: center;    
    align-items: center;
    transition: all 0.3s ease;  
}

/* Het logo in het boxje */
.brand-item img {
    max-height: 35px;           
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

/* Hover effecten */
.brand-item:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
}
.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =========================================
   8. FOOTER
   ========================================= */
footer {
    background: #1a1a1a; 
    color: #ffffff;      
    padding-top: 60px; 
    padding-bottom: 0; 
    font-size: 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: flex;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
}

.footer-col { flex: 1; }

.footer-col h3 {
    color: var(--color-gold);
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: left;
}

.footer-list { list-style: none; padding: 0; margin: 0; }

.footer-list li {
    display: flex; justify-content: space-between;
    max-width: 250px;
    margin-bottom: 8px;
    border-bottom: 1px dotted #555;
    padding-bottom: 4px;
}
.footer-list li span { font-weight: bold; color: #ccc; }

.footer-col a:hover { color: var(--color-gold); text-decoration: underline; }

.copyright-bar { 
    background: #000000;
    color: #777; 
    padding: 20px; font-size: 13px; 
    text-align: center;
    border-top: 1px solid #333;
}

/* =========================================
   9. MEDIA QUERIES (RESPONSIVE)
   ========================================= */

/* --- A. Desktop Dropdown Menu (min-width: 901px) --- */
@media screen and (min-width: 901px) {
    .main-navigation ul li { position: relative; }
    .main-navigation ul ul {
        display: none; position: absolute;
        top: 100%; left: 0;
        background: #fff; min-width: 220px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 10px 0;
        border-radius: 0 0 8px 8px;
        z-index: 1000;
        flex-direction: column; gap: 0;
    }
    .main-navigation ul li:hover > ul {
        display: block; animation: fadeIn 0.3s ease;
    }
    .main-navigation ul ul li { display: block; width: 100%; margin: 0; }
    .main-navigation ul ul a {
        display: block; padding: 10px 20px;
        font-size: 14px; color: #555;
        text-transform: none; white-space: nowrap;
        border-bottom: 1px solid #f0f0f0;
    }
    .main-navigation ul ul a:hover {
        background-color: #fcfcfc; color: var(--color-gold);
        padding-left: 25px;
    }
    .main-navigation ul ul li:last-child a { border-bottom: none; }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- B. Tablet & Mobile Navigatie (max-width: 900px) --- */
@media screen and (max-width: 900px) {
    .header-container { padding: 10px 20px; }
    
    /* Slider Fix */
    .hero-slider { height: 300px !important; min-height: 300px; }
    .hero-btn { padding: 12px 25px; font-size: 14px; margin-top: 0; }

    /* Hamburger Menu */
    .hamburger-btn {
        display: block; background: transparent; border: none;
        cursor: pointer; z-index: 2000; padding: 10px;
    }
    .hamburger-btn .bar {
        display: block; width: 28px; height: 3px; margin: 6px auto;
        background-color: var(--color-grey);
        transition: all 0.3s ease-in-out; border-radius: 3px;
    }
    
    /* Fullscreen Overlay Menu */
    .main-navigation {
        position: fixed; top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
        display: flex; flex-direction: column;
        justify-content: center; align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1500;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    .main-navigation.is-open { right: 0; }
    
    /* Hoofdmenu styling */
    .main-navigation ul { flex-direction: column; gap: 30px; text-align: center; }
    .main-navigation a { font-size: 24px; color: var(--color-text); }

    /* --- SUBMENU STYLING (KLEINER & RUIMTELIJKER) --- */
    .main-navigation ul ul {
        background: transparent; 
        box-shadow: none; 
        position: static; 
        display: flex; 
        gap: 12px;           
        margin-top: 15px;    
        margin-bottom: 10px; 
    }
    .main-navigation ul ul a {
        font-size: 17px;      
        color: #888;          
        font-weight: 500;     
        text-transform: none; 
        border: none;
        padding: 0;
    }

    /* Hamburger Animatie */
    .hamburger-btn.is-active .bar:nth-child(2) { opacity: 0; }
    .hamburger-btn.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger-btn.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- C. Mobile (max-width: 768px) --- */
@media screen and (max-width: 768px) {
    
    /* Footer Stacken */
    .footer-container { flex-direction: column; gap: 40px; text-align: center; }
    .footer-col h3 { text-align: center; }
    .footer-list li { margin: 0 auto 8px auto; }

    /* Contact Pagina Padding */
    .contact-content-wrapper { padding: 30px; }
    .decoratie-blob-achter { width: 110%; left: -5%; }

    /* Standaard Pagina's & Vacatures */
    .standard-page-section { padding: 40px 0; }
    .page-card-wrapper { margin: 0 15px; width: auto; }
    .page-content-body { padding: 30px 20px; }

    /* TITEL FIX (VACATURES) */
    .page-header { margin-bottom: 30px; }
    .page-header h1 {
        font-size: 26px; padding: 0 10px;
        line-height: 1.1; 
        margin-bottom: 8px;
    }

    /* Lange woorden afbreken */
    .page-content-body h2 {
        font-size: 22px;
        overflow-wrap: break-word; word-wrap: break-word; hyphens: auto;
        line-height: 1.3;
    }
    .page-content-body h3 { font-size: 18px; }
    .page-content-body p, .page-content-body li { font-size: 15px; }

    /* Merken balk mobiel */
    .brands-grid { gap: 15px; }
    .brand-item { width: 140px; height: 90px; padding: 15px; }
    .brand-item img { max-height: 28px; }
}

/* --- D. Small Mobile (max-width: 600px) --- */
@media screen and (max-width: 600px) {
    .top-bar-content { flex-direction: column; gap: 8px; text-align: center; }
}

/* =========================================
   WOOCOMMERCE / WEBSHOP STYLING
   ========================================= */

.shop-section {
    padding: 60px 20px;
    background: #fcfcfc;
}

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

/* De Layout: Sidebar links, Producten rechts */
.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr; /* Sidebar 250px, rest voor producten */
    gap: 50px;
    margin-top: 40px;
}

/* --- A. SIDEBAR & WIDGETS --- */
.shop-sidebar .widget {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.shop-sidebar .widget-title {
    color: var(--color-gold);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Lijstjes in de sidebar (Categorieën etc) */
.shop-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-sidebar ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}
.shop-sidebar ul li a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Prijs filter slider (WooCommerce standaard) */
.woocommerce .widget_price_filter .price_slider_amount .button {
    background: #000;
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
}

/* --- B. PRODUCTEN GRID --- */

/* De Product Kaart */
.woocommerce ul.products li.product {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Product Afbeelding */
.woocommerce ul.products li.product img {
    border-radius: 15px;
    margin-bottom: 15px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Product Titel */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    padding: 0;
}

/* Prijs */
.woocommerce ul.products li.product .price {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
}

/* "In Winkelmand" Knop */
.woocommerce ul.products li.product .button {
    background: #000;           /* Zwart */
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;        /* Ronde pil-vorm */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--color-gold); /* Goud bij hover */
    color: #fff;
    transform: scale(1.05);
}

/* --- RESULTAAT TELLER & SORTEREN --- */
.woocommerce-result-count {
    color: #777;
    font-size: 14px;
}
.woocommerce-ordering select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* --- MOBIEL --- */
@media screen and (max-width: 900px) {
    .shop-layout {
        grid-template-columns: 1fr; /* Alles onder elkaar */
        gap: 30px;
    }
    
    /* Sidebar (Filters) onderaan of bovenaan? */
    /* Vaak wil je filters op mobiel bovenaan, maar ingeklapt. 
       Voor nu zetten we ze even simpel boven de producten */
    .shop-sidebar {
        order: -1; /* Zet sidebar bovenaan */
        margin-bottom: 20px;
        padding: 20px;
        background: #fff;
        border-radius: 15px;
    }
}