/* ─── GDPR cookie consent ──────────────────────────────────────────── */
.gdpr-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2147483000;
    max-width: 1100px;
    margin: 0 auto;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(148, 163, 184, 0.18);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    font: 400 13px/1.5 -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    animation: gdprIn .2s ease-out;
}
.gdpr-banner[hidden] { display: none; }

@keyframes gdprIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.gdpr-banner__text { flex: 1 1 320px; min-width: 240px; }
.gdpr-banner__text strong { display: block; margin-bottom: 4px; font-size: 14px; color: #fff; }
.gdpr-banner__text span { color: #cbd5e1; }
.gdpr-banner__text a { color: #60a5fa; text-decoration: underline; }

.gdpr-banner__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.gdpr-banner__actions .btn { white-space: nowrap; }

@media (max-width: 600px) {
    .gdpr-banner { flex-direction: column; align-items: stretch; gap: 12px; }
    .gdpr-banner__actions { justify-content: stretch; }
    .gdpr-banner__actions .btn { flex: 1; }
}

/* ─── Категории в модалке ──────────────────────────────────────────── */
.gdpr-cat {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef1f5;
}
.gdpr-cat:last-child { border-bottom: none; }
.gdpr-cat__info { flex: 1; }
.gdpr-cat__title { font-weight: 600; font-size: 14px; color: #1e293b; margin-bottom: 2px; }
.gdpr-cat__desc { font-size: 12px; color: #64748b; }

/* Тоггл */
.gdpr-switch { position: relative; width: 44px; height: 24px; flex: 0 0 auto; margin-top: 2px; }
.gdpr-switch input { opacity: 0; width: 0; height: 0; }
.gdpr-switch__slider {
    position: absolute; cursor: pointer; inset: 0;
    background: #cbd5e1; border-radius: 24px; transition: .2s;
}
.gdpr-switch__slider::before {
    content: ""; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px;
    background: #fff; border-radius: 50%; transition: .2s;
}
.gdpr-switch input:checked + .gdpr-switch__slider { background: #2563eb; }
.gdpr-switch input:checked + .gdpr-switch__slider::before { transform: translateX(20px); }
.gdpr-switch input:disabled + .gdpr-switch__slider { background: #93c5a5; cursor: not-allowed; opacity: .8; }

/* Футер-ссылка управления cookie */
.gdpr-manage-link {
    cursor: pointer;
    color: #6b7280;
    text-decoration: underline;
}
.gdpr-manage-link:hover { color: #2563eb; }