/* BBD Garage — Çerez onay banner'ı (kırmızı/siyah temaya uygun) */
.bbd-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 3000;
    margin: 0 auto;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 18px 22px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 0, 0, 0.35);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
    color: #f5f5f5;
    font-family: 'Montserrat', system-ui, sans-serif;
    animation: bbdConsentIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes bbdConsentIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bbd-consent[hidden] { display: none; }

.bbd-consent__text { flex: 1 1 320px; min-width: 260px; }

.bbd-consent__text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    color: #fff;
}

.bbd-consent__text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #cfcfcf;
}

.bbd-consent__text a {
    color: #ff4d4d;
    text-decoration: underline;
}

.bbd-consent__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.bbd-consent__btn {
    padding: 11px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bbd-consent__btn--primary {
    background: linear-gradient(45deg, #ff0000, #aa0000);
    color: #fff;
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

.bbd-consent__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(255, 0, 0, 0.6);
}

.bbd-consent__btn--ghost {
    background: transparent;
    color: #d8d8d8;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.bbd-consent__btn--ghost:hover {
    border-color: #ff0000;
    color: #fff;
}

@media (max-width: 600px) {
    .bbd-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 16px;
        gap: 14px;
    }
    .bbd-consent__actions { width: 100%; }
    .bbd-consent__btn { flex: 1; padding: 12px 10px; }
}
