/* ── Language toggle button (banderas ES/EN) ────────────────── */
.meza-lang-item {
  display: flex;
  align-items: center;
}

#meza-lang-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1.5px solid #c0bdb8;
  border-radius: 20px;
  padding: 5px 10px;
  cursor: pointer;
  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-flag {
  display: flex;
  opacity: .4;
  transform: scale(.85);
  transition: opacity .2s, transform .2s;
  border-radius: 2px;
  overflow: hidden;
  line-height: 0;
}

.ml-flag.ml-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}

.ml-flag-svg {
  width: 22px;
  height: 15px;
  display: block;
}

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