.mgm-lang-switcher {
  position: fixed; right: 20px; bottom: 4px; z-index: 9999;
  display: inline-flex; gap: 6px; align-items: center;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(13,27,42,.92); /* navy glass */
  color: #fff;
  font: 500 14px/1 system-ui,-apple-system,Segoe UI,Inter,Arial,sans-serif;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.mgm-lang-switcher.show { opacity: 1; transform: translateY(0); }

.mgm-lang-btn {
  appearance: none; border: 0; background: transparent; color: inherit;
  padding: 4px 8px; border-radius: 999px; cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .1s ease;
}
.mgm-lang-btn[aria-pressed="true"] {
  background: #fff; color: #0d1b2a; font-weight: 600;
  box-shadow: 0 0 0 2px #d4af37 inset; /* gold ring */
}
.mgm-lang-btn:hover { transform: translateY(-1px); }
.mgm-lang-btn:focus-visible { outline: 2px solid #d4af37; outline-offset: 2px; }

.mgm-sep { opacity: .7; }

/* Optional: hide on very small screens if it collides with UI */
@media (max-width: 480px) {
  .mgm-lang-switcher { right: 12px; bottom: 16px; }
}
