/* ── Language toggle button ─────────────────────────────────── */
.meza-lang-item {
  list-style: none;
  display: flex;
  align-items: center;
}

#meza-lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1.5px solid #c0bdb8;
  border-radius: 20px;
  padding: 5px 14px;
  cursor: pointer;
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .6px;
  color: #4a4a4a;
  transition: border-color .2s, box-shadow .2s;
  line-height: 1;
}

#meza-lang-toggle:hover {
  border-color: #1c3a27;
  box-shadow: 0 0 0 3px rgba(28,58,39,.08);
}

.ml-sep {
  opacity: .35;
  font-weight: 300;
  font-size: .75rem;
}

.ml-label {
  transition: color .2s;
  color: #9a9a9a;
}

.ml-label.ml-active {
  color: #1c3a27;
  font-weight: 800;
}

/* ── Page-level flash prevention ───────────────────────────── */
[data-lang="en"] [data-i18n] { visibility: visible; }
