/* Shared language switcher styles */

.lang-switcher {
  position: fixed;
  top: 34px;
  right: 14px;
  left: auto;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
}

.lang-switcher button {
  appearance: none;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 999px;
  opacity: 0.85;
}

.lang-switcher button:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

.lang-switcher button.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.16);
}

.lang-switcher .sep {
  opacity: 0.7;
  font-weight: 700;
}

@media (max-width: 520px) {
  .lang-switcher {
    top: 30px;
    right: 10px;
    padding: 7px 9px;
    font-size: 12px;
  }
}
