/* Language switcher */
.mcah-lang-switcher {
  position: fixed;
  top: 12px;
  right: 14px;
  z-index: 99999;
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(3, 38, 59, 0.12);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 6px 20px rgba(3, 38, 59, 0.12);
  font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
}
.mcah-lang-switcher button {
  border: 0;
  background: transparent;
  color: #03263B;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
}
.mcah-lang-switcher button:hover {
  background: rgba(227, 173, 49, 0.15);
}
.mcah-lang-switcher button.is-active {
  background: #e3ad31;
  color: #fff;
}
@media (max-width: 480px) {
  .mcah-lang-switcher {
    top: 8px;
    right: 8px;
    padding: 3px;
  }
  .mcah-lang-switcher button {
    font-size: 11px;
    padding: 5px 8px;
  }
}
