﻿.lang-switcher { display: none !important; }
.unified-lang-switcher {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: 12px;
  z-index: 12000;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(10, 31, 68, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.unified-lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  text-decoration: none;
  font: 700 12px/1 Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #0A1F44;
  background: transparent;
  transition: background-color .2s ease, color .2s ease;
}
.unified-lang-switcher__btn:hover,
.unified-lang-switcher__btn:focus-visible { background: rgba(11, 91, 230, 0.12); color: #0A1F44; }
.unified-lang-switcher__btn.is-active { background: #0B5BE6; color: #FFFFFF; }
@media (max-width: 900px) {
  .unified-lang-switcher {
    top: auto;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    gap: 3px;
    padding: 3px;
  }
  .unified-lang-switcher__btn {
    min-width: 34px;
    height: 28px;
    padding: 0 8px;
    font-size: 11px;
  }
}
