#bm-privacy-consent {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 10000;
    display: flex;
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.25rem;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 48px rgba(17, 17, 17, 0.2);
    color: #111;
    font-family: Manrope, sans-serif;
}

.bm-consent-copy {
    max-width: 43rem;
}

#bm-consent-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
}

#bm-consent-copy {
    margin: 0;
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.55;
}

#bm-privacy-consent a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #111;
    font-size: 0.8125rem;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.bm-consent-actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.65rem;
}

.bm-consent-actions button,
#bm-privacy-settings {
    border: 1px solid #111;
    background: #fff;
    color: #111;
    cursor: pointer;
    font: 600 0.8125rem/1 Manrope, sans-serif;
}

.bm-consent-actions button {
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
}

.bm-consent-actions button[data-consent="granted"] {
    background: #111;
    color: #fff;
}

.bm-consent-actions button:hover,
.bm-consent-actions button:focus-visible,
#bm-privacy-settings:hover,
#bm-privacy-settings:focus-visible {
    border-color: #e041a1;
    outline: 3px solid rgba(224, 65, 161, 0.35);
    outline-offset: 2px;
}

#bm-privacy-settings {
    padding: 0;
    border: 0;
    background: transparent;
    color: #6b7280;
    font: 400 0.875rem/1.25 Manrope, sans-serif;
}

.bm-privacy-links {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.dark #bm-privacy-settings {
    color: #9ca3af;
}

@media (max-width: 767px) {
    #bm-privacy-consent {
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
    }

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

@media (max-width: 420px) {
    .bm-consent-actions {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    #bm-privacy-consent {
        scroll-behavior: auto;
    }
}
