/* Cookie-consent banner — Empla-merk (geel #fcd307 primair, navy #1D3461 structuur). */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    padding: 16px;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e7e9ef;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(29, 52, 97, 0.16);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-consent__title {
    font-weight: 700;
    font-size: 15px;
    color: #1d3461;
    margin: 0 0 4px;
}

.cookie-consent__body {
    font-size: 13.5px;
    line-height: 1.5;
    color: #48506b;
    margin: 0;
}

.cookie-consent__link {
    color: #1d3461;
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-consent__btn {
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    padding: 12px 18px;
    min-height: 44px;
    width: 100%;
    transition: filter 0.15s ease, border-color 0.15s ease;
}

.cookie-consent__btn--primary {
    background: #fcd307;
    color: #1d3461;
}

.cookie-consent__btn--primary:hover {
    filter: brightness(0.96);
}

.cookie-consent__btn--ghost {
    background: #ffffff;
    color: #1d3461;
    border: 1.5px solid #cdd6e6;
}

.cookie-consent__btn--ghost:hover {
    border-color: #1d3461;
}

@media (min-width: 768px) {
    .cookie-consent__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .cookie-consent__actions {
        flex-direction: row;
        flex-shrink: 0;
    }

    .cookie-consent__btn {
        width: auto;
    }
}
