/* Custom Styles voor Keukendeal look & feel */
:root {
    --brand-red: #ff4040;
    --brand-dark: #2F2E2E;
    --bs-primary-rgb: 255,64,64;
/*    --bs-btn-bg: #ff4040;
    --bs-btn-border-color: #ff4040;
    --bs-btn-hover-bg: #ff4040;
    --bs-btn-hover-border-color: #ff4040;
    --bs-btn-active-bg: #ff4040;
    --bs-btn-active-border-color: #ff4040;*/
}

@font-face {
    font-family: 'brandon-grot-w01-light';
    font-style: normal;
    font-weight: 400;
    src: url('//static.parastorage.com/fonts/v2/fe0edf38-314c-46d5-b570-a37546d197e4/v1/brandon-grot-w01-light.woff2') format('woff2');
    font-display: swap;
}

body {
    font-family: 'brandon-grot-w01-light',sans-serif;
    font-weight: 300;
    font-size: 1.2em;
}

h1, h2, h3, h4, h5 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 30px;
    line-height: 45px;
}

h2 {
    font-size: 46px;
    font-weight: bold;
}

b,strong{
    font-weight:900;
}

/* Buttons */
.btn-brand {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 0;
    padding: 10px 25px;
    text-transform: uppercase;
    transition: all 0.3s;
}

    .btn-brand:hover {
        background-color: var(--brand-red);
        border-color: var(--brand-red);
        color: white;
    }

.btn-brand-dark {
    border-color: var(--brand-dark);
    color: var(--brand-dark);
}

    .btn-brand-dark:hover {
        background-color: var(--brand-red);
        border-color: var(--brand-red);
        color: white;
    }

/* Video Backgrounds */
.video-section {
    position: relative;
    /* BELANGRIJK: Overflow moet visible zijn, anders vallen dropdowns weg */
    overflow: hidden;
    width: 100%;
    min-height: 750px;
    display: flex;
    align-items: center;
    color: white;
    justify-content: flex-start !important;
    z-index: 10;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.split-video-section {
    height: 830px;
}

/* Nav */
.navbar-brand img {
    height: 50px;
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #000 !important;
}

/* Badge Stamp Effect */
.stamp-badge {
    background: rgba(255, 64, 64, 0.9);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotate(10deg);
    position: absolute;
    bottom: -40px;
    right: 10%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.2;
}

.bg-grey {
    background-color: rgb(47,46,46);
    color: rgb(173,173,172);
}

/* Testimonials */
.testimonial-box {
    padding: 20px;
    text-align: center;
}

.check-icon {
    color: #f9ec00;
    font-size: 2rem;
    margin-bottom: 10px;
}

#redblock {
    background-color: rgba(255, 64, 64, 0.65);
    margin-top: -260px;
    padding: 20px 50px 20px 220px;
    max-width: 800px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

    #redblock .btn-brand {
        border-color: white;
        color: white;
    }

        #redblock .btn-brand:hover {
            background-color: white;
            color: #ff4040;
        }

/* ANIMATIE VOOR RECHTERKANT */
.slide-in-content {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-dark {
    color: #333 !important;
}

/* Media Queries */
@media (max-width: 768px) {
    .video-section {
        justify-content: center !important;
    }

    #redblock {
        margin-left: 20px;
        margin-right: 20px;
        max-width: 100%;
        padding: 30px;
    }
}

.quotebox {
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote {
    fill: #FF4040 !important;
    fill-opacity: 0.4;
    width: 50px;
    height: 50px;
}

    .quote svg {
        width: 100%;
        height: 100%;
    }

/* Parallax */
.parallax-section {
    height: 100vh;
    width: 100%;
    position: relative;
    clip-path: inset(0);
    z-index: 1;
}

.fixed-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content-section {
    position: relative;
    z-index: 10;
    background-color: #f8f9fa;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* --- FILTER BALK STYLES --- */

.video-section .filter-bar-bottom{
    position:absolute;
}

.filter-bar-bottom {
    
    bottom: 95px;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 0 5%;
}

/* Algemene styling voor de wrappers */
.select-wrapper,
.custom-dropdown-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.filter-wrapper{
    padding-left:20px;
    padding-right:20px;
}


/* --- STIJL VOOR DE SELECTS (Dropdown 1 & 3) --- */
.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #cb2c2c;
    color: white;
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    border: none;
    border-radius: 0;
    font-family: 'brandon-grot-w01-light', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    height: 100%;
    min-height: 50px;
}

.custom-select.white{
    background-color:#fff;
    color:#000;
}

    .custom-select:focus {
        outline: none;
        background-color: #b02222;
    }

    .custom-select.white:focus {
     
        background-color: #fff;
    }

/* Pijltje voor de selects */
.custom-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-70%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    pointer-events: none;
    transition: transform 0.3s ease;
}
.custom-arrow.white {
    border-right: 2px solid black;
    border-bottom: 2px solid black;
}


.custom-select:focus + .custom-arrow {
    transform: translateY(-30%) rotate(225deg);
}

/* --- STIJL VOOR HET PRIJS BLOK (Dropdown 2 - Custom) --- */

.filter-header {
    background-color: #cb2c2c;
    color: white;
    width: 100%;
    /* Zelfde padding als de selects zodat tekst mooi uitlijnt */
    padding: 15px 20px;
    padding-right: 40px; /* Ruimte vrijhouden voor pijltje rechts */
    border: none;
    font-family: 'brandon-grot-w01-light', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    height: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    /* BELANGRIJK: position relative zodat het pijltje zich hierop kan richten */
    position: relative;
}

.filter-header.white{
    background-color:#fff;
    color:#000;
}

/* Oude .chevron CSS mag weg! We gebruiken nu .custom-arrow */

/* Het uitklap paneel voor prijs */
.price-panel-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 250px;
    background-color: #f2cccc;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    cursor: default;
}
.price-panel-content.white{
    background-color:#fff;
}

/* Open status voor prijs */
.custom-dropdown-wrapper.open .price-panel-content {
    display: block;
}

/* Zorg dat het pijltje draait als de wrapper de class 'open' heeft */
.custom-dropdown-wrapper.open .filter-header .custom-arrow {
    transform: translateY(-30%) rotate(225deg);
    margin-bottom: 0; /* Reset eventuele marges */
}

/* --- DEALS SECTIE --- */
.deals-box {
 
    height: 100%;
    min-height: 50px; /* Matcht nu met de selects */
    width: 100%;
    display: flex; /* Zorgt dat knop gecentreerd is */
    align-items: center;
    justify-content: center;
}

.btn-deals {
    border: 1px solid white;
    color: white;
    background-color: #2F2E2E;
    padding: 10px 30px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-size: 1rem;
}

    .btn-deals:hover {
        background-color: white;
        color: #2F2E2E;
    }

.py-10 {
    padding-top: 6rem !important;
    padding-bottom: 6rem!important;
}


/* Simpele CSS voor hover effecten */
.keuken-card:hover .transition-img {
    transform: scale(1.05);
}

.transition-img {
    transition: transform 0.3s ease;
}

.object-fit-cover {
    object-fit: cover;
}




/* --- SLIDER OVERRIDES (noUiSlider) --- */
/* 1. De achtergrondbalk (waar je nog NIET bent) */
.noUi-target {
    background: #fff; /* Wit */
    border: none;
    box-shadow: none;
    height: 6px; /* Iets dikker voor duidelijkheid */
}

/* 2. HET BALKJE TUSSEN DE BOLLETJES (De actieve selectie) */
.noUi-connect {
    /* HIER PAS JE DE KLEUR AAN */
    background: #2F2E2E; /* Jouw 'brand-dark' kleur (bijna zwart) */
    /* Wil je écht pikzwart? Gebruik dan: background: #000; */
}



/* 3. De bolletjes (Handles) */
.noUi-horizontal .noUi-handle {
    width: 18px;
    height: 18px;
    right: -9px;
    top: -6px;
    border-radius: 50%;
    /* Ik laat de bolletjes ROOD zodat ze goed opvallen op de zwarte lijn */
    background: #cb2c2c;
    border: 2px solid white; /* Wit randje eromheen */
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    cursor: grab;
}

.white .noUi-horizontal .noUi-handle {
    background: #fff;
}


    /* Verberg de standaard streepjes in de bolletjes */
    .noUi-handle:before, .noUi-handle:after {
        display: none;
    }

/* RESPONSIVE AANPASSINGEN FILTERBALK */
@media (max-width: 992px) {
    .filter-bar-bottom {
   /*     position: relative;*/
        bottom: 20px;
        padding: 20px;
        margin-top: 40px;
        background: rgba(0,0,0,0.5);
    }

    .select-wrapper, .custom-dropdown-wrapper, .deals-box {
        margin-bottom: 10px;
        height: auto;
    }

    .deals-box {
        padding: 15px 0;
    }
}


/** list items */
/* Zorg dat de container relative is, zodat de ballon zich hierop kan oriënteren */
.keuken-card {
    position: relative;
    overflow: visible; /* Belangrijk! Anders wordt het uitstekende deel afgeknipt */
  
}

  

/* De container van de ballon */
.prijs-ballon {
    position: absolute;
    top: 30%; /* Verticaal in het midden */
    right: -20px; /* 20px naar rechts uitsteken (pas aan naar wens) */
    transform: translateY(-50%); /* Zorgt dat hij écht in het midden staat */
    width: 150px; /* Pas aan aan de breedte van je afbeelding */
    height: 150px; /* Pas aan aan de hoogte van je afbeelding */
    display: flex;
    align-items: center;
    
    justify-content: center;
    text-align: center;
    z-index: 10; /* Zorg dat hij boven de foto ligt */
}

/* De afbeelding van de ballon zelf */
.ballon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Achter de tekst */
}

/* De tekst in de ballon */
.prijs-tekst {
    color: white; /* Of zwart, afhankelijk van je afbeelding */
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 35px; /* Speel met dit getal (bijv. 10px, 15px, 20px) */
    padding-left: 10px; /* Beetje schuiven als de tekst niet mooi in het midden staat */
}

.oude-prijs {
    position: relative; /* Nodig om de streep te kunnen positioneren */
    display: inline-block; /* Zorgt dat de streep de breedte van de tekst pakt */
    font-size: 1.6rem;
}
    .oude-prijs::after {
        content: ""; /* Leeg element aanmaken */
        position: absolute; /* Loskoppelen van de tekstflow */
        left: -5%; /* Ietsje links uitsteken */
        top: 38%; /* Verticaal centreren */
        width: 105%; /* Ietsje breder dan de tekst zelf */
        height: 3px; /* De dikte van de streep */
        background-color: #000; /* De kleur (hier rood, mag ook wit zijn) */
        /* De rotatie */
        transform: rotate(-12deg); /* Draai de streep 12 graden omhoog */
        
    }

.nieuwe-prijs {
    display: block;
    font-size: 1.9rem;
    font-weight: 1900;
}
.inclbtw{
    display:block;
    font-size:0.6rem;
}

/*** detail keuken */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5); /* Zorgt dat pijltjes zichtbaar zijn op lichte fotos */
    border-radius: 50%;
    padding: 20px;
}

.hover-shadow:hover {
    background-color: #f8f9fa;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    transition: all 0.3s ease;
}

/* Container positionering bovenop de slider */
.slider-prijs-ballon {
    position: absolute;
    top: 20%; /* Verticaal midden */
    right: -30px; /* 30px van de rechterkant af (binnen de foto) */
    transform: translateY(-50%); /* Exact centreren */
    z-index: 20; /* Zorg dat hij BOVEN de foto's en pijltjes ligt */

    width: 260px; 
    height: 260px;
    display: flex;
    align-items: center; /* Of flex-start als je padding-top gebruikt */
    justify-content: center;
    text-align: center;
    /* Optioneel: Drop shadow voor diepte */
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.3));
}

    /* De achtergrond afbeelding */
    .slider-prijs-ballon .ballon-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    /* De Tekst */
    .slider-prijs-ballon .prijs-tekst {
        color: white; /* Of zwart, afhankelijk van je afbeelding */
        font-weight: bold;
        line-height: 1.4;
        padding-left: 15px; /* Tekst iets centreren in de bol */
        padding-bottom: 20px; /* Tekst omhoog duwen (de padding truc) */
    }

    .slider-prijs-ballon .nieuwe-prijs {
        display: block;
        font-size: 2.8rem; /* Groter font voor de detailpagina */
        font-weight: 800;
    }

    /* Hergebruik de oude-prijs stijl van eerder (met schuine streep) */
    .slider-prijs-ballon .oude-prijs {
        position: relative;
        display: inline-block;
        font-size: 2.1rem; /* Iets groter */
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none !important;
    }
    .slider-prijs-ballon .inclbtw{
        font-size:1rem;
    }

        .slider-prijs-ballon .oude-prijs::after {
            content: "";
            position: absolute;
            left: -5%;
            top: 45%;
            width: 110%;
            height: 4px; /* Iets dikkere streep */
            background-color: #000; /* Rood */
            transform: rotate(-12deg);
            opacity: 0.9;
        }

/* MOBIEL: Maak hem wat kleiner op telefoons */
@media (max-width: 768px) {
    .slider-prijs-ballon {
        display:none;
    }

       
}