.cookie-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1080;
    background: #0c1a2e;
    color: rgba(255, 255, 255, 0.82);
    border-top: 2px solid #b08d57;
    padding: 1.35rem 0;
}

.cookie-banner.is-hidden {
    display: none;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner-kicker {
    color: #b08d57;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.cookie-banner-text {
    margin: 0;
    max-width: 40rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.cookie-banner-actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 0.6rem;
}

@media (max-width: 767.98px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
