/* lp-popup system */
body.lp-popup-lock { overflow: hidden; }
.lp-popup { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
.lp-popup--open { display: flex; }
.lp-popup__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.lp-popup__box {
  position: relative; z-index: 1; background: #fff; border-radius: 12px;
  padding: 2.5rem; width: min(560px, 94vw); max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.lp-popup__close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; line-height: 1; color: #555;
}
.lp-popup__close:hover { color: #000; }
