/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════════ */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 4px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.07);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #6b7280;
  padding: 5px 10px;
  border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease;
  letter-spacing: 0.03em;
}

.lang-btn:hover {
  background: rgba(37,99,235,0.08);
  color: #2563eb;
}

.lang-btn--active {
  background: #2563eb;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}