.bbr-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #111;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px 24px;
    display: none;
    animation: bbr-cookie-slide-up 0.4s ease-out;
}

@keyframes bbr-cookie-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.bbr-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.bbr-cookie-text {
    flex: 1;
    min-width: 280px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.bbr-cookie-text a {
    color: #D4AF37;
    text-decoration: none;
}

.bbr-cookie-text a:hover {
    text-decoration: underline;
}

.bbr-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.bbr-cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s;
    letter-spacing: 0.5px;
}

.bbr-cookie-btn:hover {
    opacity: 0.85;
}

.bbr-cookie-accept {
    background: #D4AF37;
    color: #0A0A0A;
}

.bbr-cookie-decline {
    background: transparent;
    color: #aaa;
    border: 1px solid #444;
}

.bbr-cookie-decline:hover {
    border-color: #888;
    color: #fff;
}

@media (max-width: 600px) {
    .bbr-cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    .bbr-cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .bbr-cookie-btn {
        flex: 1;
    }
}
