/* COOKIE BAR */

#cookie-bar {

    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    background: #111;
    color: #fff;

    padding: 18px 24px;

    /* ruimte voor chat + whatsapp desktop */
    padding-right: 140px;

    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.35);

    z-index: 9999;

}


/* INNER */

.cookie-inner {

    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    font-size: 14px;
    line-height: 1.5;

}


/* TEXT */

.cookie-text {
    color: #e5e7eb;
}


/* TEXT */

.cookie-text p {
    margin: 0; /* Voorkomt onnodige witruimte */
    color: #e5e7eb;
}

/* De 'Niet-kapot-te-krijgen' PB Blauwe Link */
.cookie-inner a, 
.cookie-inner a:link, 
.cookie-inner a:visited {
    color: #3867fa !important;
    text-decoration: none !important;
    border-bottom: none !important; /* Verwijdert de streep als het een border is */
    box-shadow: none !important;    /* Verwijdert de streep als het een shadow is */
    font-weight: 600 !important;
}

.cookie-inner a:hover {
    color: #2f57d4 !important; /* De donkerdere PB blauw */
    text-decoration: underline !important; /* Optioneel: alleen streep bij hover voor feedback */
}

/* BUTTONS */

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


/* BUTTON STYLE */

#cookie-accept {

    background: #3867fa;
    color: #fff;

    border: none;

    padding: 10px 16px;
    border-radius: 6px;

    font-weight: 600;
    cursor: pointer;

}

#cookie-accept:hover {
    background: #2f57d4;
}

#cookie-decline {

    background: #2a2a2a;
    color: #fff;

    border: none;

    padding: 10px 16px;
    border-radius: 6px;

    cursor: pointer;

}

#cookie-decline:hover {
    background: #3a3a3a;
}


/* ======================
   TABLET FIX
   ====================== */

@media (max-width:1024px) {

    #cookie-bar {

        padding-right: 120px;

    }

    .cookie-inner {

        flex-direction: column;
        align-items: flex-start;

        gap: 12px;

    }

    .cookie-buttons {

        width: 100%;
        max-width: 420px;

    }

    #cookie-accept,
    #cookie-decline {

        flex: 1;
        width: 100%;

    }

}


/* ======================
   MOBIEL
   ====================== */

@media (max-width:640px) {

    #cookie-bar {

        padding: 16px;
        padding-right: 90px;

    }

    .cookie-inner {

        flex-direction: column;
        align-items: flex-start;

        gap: 12px;

    }

    .cookie-buttons {

        width: 100%;

    }

    #cookie-accept,
    #cookie-decline {

        flex: 1;
        width: 100%;

    }

}