/* Cookie banner — стили вынесены отдельно для HTML-страниц */
.mtlm-cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 9999;
    padding: 16px 20px;
}
.mtlm-cookie-banner__inner {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
}
.mtlm-cookie-banner__text {
    flex: 1 1 320px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.mtlm-cookie-banner__text a {
    color: #253056;
    text-decoration: underline;
}
.mtlm-cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.mtlm-cookie-banner__btn {
    border: 0;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
}
.mtlm-cookie-banner__btn--primary {
    background: #253056;
    color: #fff;
}
.mtlm-cookie-banner__btn--primary:hover { background: #1b2444; }
.mtlm-cookie-banner__btn--secondary {
    background: #f1f3f6;
    color: #333;
}
.mtlm-cookie-banner__btn--secondary:hover { background: #e1e5ea; }

@media (max-width: 600px) {
    .mtlm-cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 12px 14px; }
    .mtlm-cookie-banner__actions { width: 100%; }
    .mtlm-cookie-banner__btn { flex: 1; }
}
