.language-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.language-switcher__label {
  font-weight: 800;
  color: var(--text);
  margin-right: 2px;
}
.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #344054;
  font-weight: 700;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.language-switcher a:hover {
  background: var(--orange-soft);
  color: var(--orange-dark);
  transform: translateY(-1px);
}
.language-switcher a.active {
  background: #dfe2e7;
  color: #1f2937;
}
@media (max-width: 720px) {
  .language-switcher { gap: 8px; }
  .language-switcher__label { width: 100%; }
  .language-switcher a { min-height: 40px; padding: 7px 13px; }
}
