/* ===== Language Switcher ===== */
.flux-lang-switcher {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 4px;
}

.flux-lang-btn {
  padding: 6px 11px;
  font-family: var(--font-display, 'Sora', system-ui, sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
  line-height: 1;
}

.flux-lang-btn:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.flux-lang-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.flux-lang-btn.is-active {
  color: #fff;
  background: rgba(83, 73, 151, 0.45);
}
