/* Language Redirect Popup */
#lang-popup {
  position: fixed;
  right: 16px;
  bottom: 20px; /* JS will auto-lift above cookie banner/pill */
  max-width: 360px;
  background: #fff;
  color: #0b1e28;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 14px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  z-index: 10010; /* higher than cookie banner (9999) */
  font: 14px/1.4 system-ui,-apple-system,Segoe UI,Roboto,Arial;
}

#lang-popup .lp-text {
  margin-bottom: 10px;
}

#lang-popup .lp-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#lang-popup button {
  padding: 9px 12px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: 14px/1.4 system-ui,-apple-system,Segoe UI,Roboto,Arial;
}

#lp-go {
  background: #00c8e8;
  color: #001821;
  font-weight: 600;
}

#lp-stay {
  background: #1a3a49;
  color: #fff;
}

@media (max-width: 480px) {
  #lang-popup {
    left: 16px;
    right: 16px;
    top: 16px;
    bottom: auto;
  }
}

