
.lang-switcher {
  position: fixed;
  top: 22px; /* идеальная высота */
  right: 60px; /* отступ от бургера */
  z-index: 9999;
  display: flex;
  gap: 6px; /* расстояние между флажками */
}

.lang-switcher button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.lang-switcher img {
  width: 24px; /* размер флажков */
  height: auto;
  border-radius: 4px; /* закругляем углы */
  transition: transform 0.2s ease;
}

.lang-switcher img:hover {
  transform: scale(1.1); /* лёгкий эффект наведения */
}

