/* ── COOKIE BANNER ── */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    color: var(--text);
    padding: 14px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 999;
    box-shadow: var(--shadow);
    width: min(460px, calc(100vw - 40px));
    font-size: 13.5px;
}

#cookie-banner button {
    background: var(--brand);
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 99px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    transition: background 0.2s;
}

#cookie-banner button:hover {
    background: var(--brand-dark);
}