/* MV Moellenbeck Consent banner */
.mv-consent[hidden] { display: none !important; }
.mv-consent { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: flex-end; justify-content: center; padding: 16px; pointer-events: none; }
.mv-consent__overlay { position: absolute; inset: 0; background: rgba(2, 8, 23, 0.45); backdrop-filter: blur(2px); pointer-events: auto; }
.mv-consent__panel {
    position: relative;
    pointer-events: auto;
    max-width: 720px;
    width: 100%;
    background: #ffffff;
    color: #1f2937;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(2, 8, 23, 0.35);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.mv-consent__title { margin: 0 0 8px; font-size: 20px; font-weight: 700; }
.mv-consent__intro { margin: 0 0 18px; font-size: 14px; line-height: 1.55; color: #4b5563; }
.mv-consent__categories { display: grid; gap: 10px; margin-bottom: 20px; }
.mv-consent__cat {
    display: flex; align-items: flex-start; gap: 12px;
    border: 1px solid #e5e7eb; border-radius: 10px; padding: 12px 14px;
    cursor: pointer;
}
.mv-consent__cat input { margin-top: 4px; flex: 0 0 auto; accent-color: #10b981; }
.mv-consent__cat strong { display: block; font-size: 14px; font-weight: 600; }
.mv-consent__cat small { display: block; color: #6b7280; font-size: 12px; }
.mv-consent__actions {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end;
    margin-bottom: 12px;
}
.mv-consent__btn {
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.mv-consent__btn--ghost { background: transparent; color: #1f2937; border-color: #d1d5db; }
.mv-consent__btn--ghost:hover { background: #f3f4f6; }
.mv-consent__btn--primary { background: #10b981; color: #fff; }
.mv-consent__btn--primary:hover { background: #059669; }
.mv-consent__links { display: flex; gap: 14px; font-size: 12px; color: #6b7280; }
.mv-consent__links a { color: inherit; text-decoration: underline; }

/* Floating trigger to reopen */
.mv-consent-trigger[hidden] { display: none; }
.mv-consent-trigger {
    position: fixed; bottom: 18px; left: 18px; z-index: 9999;
    width: 44px; height: 44px; border-radius: 50%;
    background: #1f2937; color: #fff;
    border: none; cursor: pointer; font-size: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.mv-consent-trigger:hover { background: #111827; }

@media (max-width: 480px) {
    .mv-consent { padding: 8px; align-items: stretch; }
    .mv-consent__panel { padding: 20px; }
    .mv-consent__actions { justify-content: stretch; }
    .mv-consent__btn { flex: 1; }
}
