/* ── Cookie-Banner ── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--bg-card); color: var(--text-primary);
    border-top: 1px solid var(--gold); box-shadow: var(--shadow-medium);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    padding: 1rem 2rem; z-index: 400; gap: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-banner.hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }
.cookie-banner-text { flex: 1 1 60%; font-size: 0.9rem; margin: 0; color: var(--text-secondary); }
.cookie-banner-text a { color: var(--gold); text-decoration: underline; border-bottom: none; }
.btn-cookie { margin: 0; white-space: nowrap; }
@media (max-width: 600px) { .cookie-banner { flex-direction: column; text-align: center; padding: 1rem; } }