.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background-color: var(--bs-dark, #1e293b);
    color: #fff;
    box-shadow: 0 -0.5rem 2rem rgba(0, 0, 0, 0.15);
    padding: 1rem;
}

.cookie-banner__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1320px;
    margin: 0 auto;
    align-items: center;
}

.cookie-banner__content {
    flex: 1;
    text-align: center;
    width: 100%;
}

.cookie-banner__title {
    font-weight: 700;
    font-size: 1.1rem;
}

.cookie-banner__text {
    font-size: 0.9rem;
    color: var(--bs-gray-400, #cbd5e1);
}

.cookie-banner__link {
    color: var(--bs-primary-bg-subtle, #93c5fd);
    text-decoration: underline;
}

@media (min-width: 992px) {
    .cookie-banner {
        padding: 1.25rem 2rem;
    }

    .cookie-banner__inner {
        flex-direction: row;
        gap: 1.5rem;
    }

    .cookie-banner__content {
        text-align: left;
    }
}

.cookie-switch--disabled .form-check-input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: var(--bs-success);
    border-color: var(--bs-success);
}