/* ═══════════════════════════════════════════════════════════════════════════
   ATTICAR — Cookie Consent Modal (felugró, középen, döntésig blokkolja)
   Téma: --att-accent változó (zöld kölcsönző / sárga vontató)
   ═══════════════════════════════════════════════════════════════════════════ */

:root { --att-accent: #65BC45; }
.att-theme-tow { --att-accent: #D1DC21; }

/* ── Overlay (elsötétített háttér) ─────────────────────────────────────── */
.att-consent-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0, 0, 0, 0.75);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    /* Görgetés tiltva amíg a modal nyitva */
    overflow: hidden;
}

/* ── Modal doboz ────────────────────────────────────────────────────────── */
.att-consent-box {
    background: #23272e;
    border-radius: 10px;
    max-width: 480px; width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    animation: att-slideUp .25s ease;
}

@keyframes att-slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* ── Fejléc ─────────────────────────────────────────────────────────────── */
.att-consent-header {
    background: #181A1C;
    padding: 20px 24px 16px;
    display: flex; align-items: center; gap: 12px;
}
.att-consent-icon { font-size: 28px; line-height: 1; }
.att-consent-header h2 {
    margin: 0; font-size: 18px; font-weight: 700;
    color: #fff; font-family: 'Roboto', sans-serif;
}

/* ── Body ───────────────────────────────────────────────────────────────── */
.att-consent-body { padding: 20px 24px; }
.att-consent-body p {
    color: #c0c4cc; font-size: 14px; line-height: 1.6; margin: 0 0 16px;
}
.att-consent-link { color: var(--att-accent); text-decoration: underline; }
.att-consent-link:hover { opacity: .85; }

/* ── Kategória sorok ────────────────────────────────────────────────────── */
.att-consent-cat {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 12px 0;
    border-top: 1px solid #333;
}
.att-consent-cat-info {
    display: flex; flex-direction: column; gap: 3px;
}
.att-consent-cat-info strong {
    color: #fff; font-size: 14px; font-weight: 600;
}
.att-consent-cat-info span {
    color: #888; font-size: 12px;
}

/* ── Toggle switch ──────────────────────────────────────────────────────── */
.att-switch {
    position: relative; display: inline-block;
    width: 44px; height: 24px; flex-shrink: 0;
}
.att-switch input { opacity: 0; width: 0; height: 0; }
.att-slider {
    position: absolute; cursor: pointer; inset: 0;
    background: #555; border-radius: 24px; transition: .3s;
}
.att-slider:before {
    position: absolute; content: "";
    height: 18px; width: 18px; left: 3px; bottom: 3px;
    background: #fff; border-radius: 50%; transition: .3s;
}
.att-switch input:checked + .att-slider { background: var(--att-accent); }
.att-switch input:checked + .att-slider:before { transform: translateX(20px); }
.att-switch input:disabled + .att-slider { opacity: .5; cursor: not-allowed; }

/* ── Lábléc gombok ──────────────────────────────────────────────────────── */
.att-consent-footer {
    padding: 16px 24px;
    border-top: 1px solid #333;
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;
}
.att-consent-btn {
    padding: 9px 18px; border: none; border-radius: 5px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    font-family: 'Roboto', sans-serif; transition: opacity .2s;
}
.att-consent-btn:hover { opacity: .88; }

.att-consent-btn-necessary { background: #4a5160; color: #fff; }
.att-consent-btn-save      { background: #4a5160; color: #fff; }
.att-consent-btn-accept    { background: var(--att-accent); color: #fff; }

/* Sárga témán a gombokon sötét szöveg (kontraszt) */
.att-theme-tow .att-consent-btn-accept { color: #181A1C; }

/* ── Lábléc visszatérő gomb (kis ikon) ─────────────────────────────────── */
.att-footer-cookie-btn {
    position: fixed; bottom: 16px; left: 16px; z-index: 9998;
    width: 40px; height: 40px; border-radius: 50%;
    background: #23272e; border: 2px solid var(--att-accent);
    font-size: 18px; cursor: pointer; opacity: .7;
    transition: opacity .2s;
    display: none; /* Csak döntés után jelenik meg */
}
.att-footer-cookie-btn:hover { opacity: 1; }
.att-footer-cookie-btn.visible { display: flex; align-items: center; justify-content: center; }

/* ── Body scroll tiltás amíg modal nyitva ──────────────────────────────── */
body.att-consent-open { overflow: hidden; }

/* ── Reszponzív ─────────────────────────────────────────────────────────── */
@media (max-width: 500px) {
    .att-consent-footer { flex-direction: column; }
    .att-consent-btn { width: 100%; text-align: center; }
}
