/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 18, 34, .92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, .12);
    z-index: 2000;
    color: #fff;
}

.cookie-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.cookie-text {
    max-width: 720px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .85);
}

.cookie-text p {
    margin: .25rem 0 0;
}

.cookie-text a {
    color: #fff;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: .5rem;
}

@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions button {
        width: 100%;
    }
}

/* SETTINGS MODAL */


.cookie-option {
    margin: 1rem 0;
}
/* 
.cookie-settings {
    position: fixed;
    inset: 0;
    z-index: 2100;
}

.cookie-settings-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.cookie-settings-panel {
    position: relative;
    max-width: 420px;
    background: #fff;
    color: #111;
    margin: 10vh auto;
    border-radius: 16px;
    padding: 1.25rem;
    z-index: 1;
}


.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
} */