/* Cookie consent banner */
#vjb-consent {
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 100;
    background: #0f172a; color: #f8fafc;
    border-radius: 14px;
    box-shadow: 0 24px 48px -20px rgba(0,0,0,.45);
    padding: 18px 22px;
    transition: opacity .2s ease;
    max-width: 720px; margin: 0 auto;
}
#vjb-consent .vjb-consent-inner {
    display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
#vjb-consent .vjb-consent-copy {
    flex: 1 1 320px; font-size: 14px; line-height: 1.55;
}
#vjb-consent strong { color: #fff; }
#vjb-consent a { color: #7dd3fc; text-decoration: underline; }
#vjb-consent .vjb-consent-actions {
    display: flex; gap: 10px; flex-wrap: wrap;
}
#vjb-consent button {
    padding: 10px 18px; border-radius: 8px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    border: 1px solid transparent;
}
#vjb-consent .vjb-consent-reject {
    background: transparent; color: #f8fafc; border-color: rgba(255,255,255,.3);
}
#vjb-consent .vjb-consent-reject:hover { background: rgba(255,255,255,.08); }
#vjb-consent .vjb-consent-accept {
    background: #0D7377; color: #fff;
}
#vjb-consent .vjb-consent-accept:hover { background: #0a5c5f; }
@media (max-width: 640px) {
    #vjb-consent { left: 12px; right: 12px; bottom: 12px; padding: 14px 16px; }
    #vjb-consent .vjb-consent-actions { width: 100%; }
    #vjb-consent .vjb-consent-actions button { flex: 1; }
}
