.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #16263f;
    color: #fff;
    padding: 1rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
    z-index: 1080;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.cookie-banner-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-banner-text a {
    color: #ffd66e;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .cookie-banner-inner {
        flex-direction: row;
        align-items: center;
    }
    .cookie-banner-text { flex: 1; }
}
