.bv-consent-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(17, 17, 17, 0.18);
    color: #111;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    transition: opacity 180ms ease, transform 180ms ease;
}

.bv-consent-banner.is-hiding {
    opacity: 0;
    transform: translateY(10px);
}

.bv-consent-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.bv-consent-copy strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.bv-consent-copy span {
    color: #555;
    font-size: 13px;
    line-height: 1.45;
}

.bv-consent-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.bv-consent-btn,
.bv-privacy-button {
    appearance: none;
    border: 1px solid #111;
    border-radius: 4px;
    background: #111;
    color: #fff;
    cursor: pointer;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    min-height: 38px;
    padding: 0 16px;
    text-transform: uppercase;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.bv-consent-btn:hover,
.bv-privacy-button:hover {
    background: #fff;
    color: #111;
}

.bv-consent-btn--ghost {
    background: #fff;
    color: #111;
}

.bv-consent-btn--ghost:hover {
    background: #f1f1f1;
}

.bv-privacy-button {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 9999;
    min-height: 30px;
    padding: 0 10px;
    border-color: rgba(17, 17, 17, 0.22);
    background: rgba(255, 255, 255, 0.88);
    color: #111;
    font-size: 9px;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
}

@media (max-width: 640px) {
    .bv-consent-banner {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 15px;
    }

    .bv-consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .bv-consent-btn {
        width: 100%;
    }
}
