.lang-switch {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  display: flex;
  gap: 0.4rem;
  z-index: 60;
}

.lang-switch button {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: "PP Neue Montreal", sans-serif;
}

.lang-switch button.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.lang-switch button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
