/* VDM Cookie Consent – banner.css */

/* ------------------------------------------------------------------ Banner */
.vdm-cc-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: calc(100% - 3rem);
    max-width: 360px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.14);
    z-index: 99999;
    font-size: 14px;
    line-height: 1.55;
    color: #1f2937;
    font-family: inherit;
}

.vdm-cc-inner {
    padding: 1.25rem 1.25rem 1rem;
}

/* -------------------------------------------------------------------- Text */
.vdm-cc-text {
    margin: 0 0 1rem;
    color: #374151;
}

/* ----------------------------------------------------------------- Buttons */
.vdm-cc-buttons {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.vdm-cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-family: inherit;
    cursor: pointer;
    border-radius: 8px;
    transition: opacity .15s ease, transform .1s ease;
    white-space: nowrap;
}

.vdm-cc-btn:active { transform: scale(.97); }
.vdm-cc-btn:focus-visible {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

/* Ja — groot, groen, trekt alle aandacht */
.vdm-cc-btn--accept {
    width: 100%;
    padding: .75rem 1.25rem;
    font-size: 15px;
    font-weight: 700;
    background: #16a34a;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
    letter-spacing: .01em;
}

.vdm-cc-btn--accept:hover { background: #15803d; }

/* Nee — nauwelijks zichtbaar */
.vdm-cc-btn--ghost {
    background: transparent;
    color: #d1d5db;
    font-size: 11px;
    font-weight: 400;
    padding: .2rem 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vdm-cc-btn--ghost:hover { color: #9ca3af; }

/* ------------------------------------------------------------------- Links */
.vdm-cc-links {
    display: flex;
    gap: 1rem;
    margin-top: .6rem;
}

.vdm-cc-links a {
    font-size: 11px;
    color: #d1d5db;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vdm-cc-links a:hover { color: #9ca3af; }

/* ------------------------------------------------------------ Reopen knop */
.vdm-cc-reopen {
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #c8a46e;
    color: #ffffff;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 99998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: opacity .15s ease;
}

.vdm-cc-reopen--visible { display: flex; }
.vdm-cc-reopen:hover { opacity: .82; }
.vdm-cc-reopen:focus-visible {
    outline: 2px solid #c8a46e;
    outline-offset: 3px;
}

/* ----------------------------------------------------------------- Mobiel */
@media (max-width: 480px) {
    .vdm-cc-banner {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
    }
}
