/* ── NYELVVÁLTÓ (HU / EN) ──────────────────────── */

.lang-switch {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 9998;
  display: flex;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}

.lang-switch button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-title, sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-switch button:hover { color: var(--text); }

.lang-switch button.is-active {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 560px) {
  .lang-switch { top: 8px; right: 8px; }
  .lang-switch button { padding: 5px 11px; font-size: 12px; }
}
