.language-switcher {
  position: fixed;
  top: 92px;
  right: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 18, 16, 0.86);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  font: 600 11px/1 var(--font-sans), sans-serif;
  letter-spacing: 0.12em;
}

.language-switcher button {
  border: 0;
  padding: 2px;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.language-switcher button.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.language-switcher button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  border-radius: 2px;
}

@media (max-width: 720px) {
  .language-switcher {
    top: 76px;
    right: 12px;
    padding: 7px 9px;
  }
}
