/* ============================================================
   Beutter Küchen — Cookie-Hinweis (FMG-konform, CH)
   ============================================================ */

#bk-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #3E3D39;
    border-top: 1px solid rgba(179, 147, 145, 0.18);
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.32, 0, 0.24, 1);
}

#bk-cookie-notice.bk-cn--visible {
    transform: translateY(0);
}

/* ── TEXT ─────────────────────────────────────────────────── */
.bk-cn-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: rgba(255, 252, 250, 0.72);
    margin: 0;
    flex: 1;
}

.bk-cn-text a {
    color: #B39391;
    text-decoration: none;
    border-bottom: 1px solid rgba(179, 147, 145, 0.4);
    transition: color 0.2s, border-color 0.2s;
}

.bk-cn-text a:hover {
    color: #FFFCFA;
    border-color: rgba(255, 252, 250, 0.5);
}

/* ── ACTIONS ──────────────────────────────────────────────── */
.bk-cn-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.bk-cn-btn {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.22s ease, color 0.22s ease;
    white-space: nowrap;
    line-height: 1;
}

.bk-cn-btn--accept {
    background: #775755;
    color: #FFFCFA;
    padding: 11px 28px;
}

.bk-cn-btn--accept:hover {
    background: #FFFCFA;
    color: #775755;
}

.bk-cn-btn--settings {
    background: transparent;
    color: rgba(255, 252, 250, 0.45);
    padding: 11px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 252, 250, 0.2);
}

.bk-cn-btn--settings:hover {
    color: rgba(255, 252, 250, 0.75);
    border-color: rgba(255, 252, 250, 0.4);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 720px) {
    #bk-cookie-notice {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 24px;
    }

    .bk-cn-actions {
        width: 100%;
        justify-content: flex-start;
    }
}
