/* =========================================================
   ASI LOCATIONS LOCK OVERLAY (Forced Redirect Only)
   - Visual prompt only; interaction blocking is done in JS
   - Scroll is allowed (no overflow hidden here)
   ========================================================= */

#asi-locations-lock-overlay{
  position: fixed;
  inset: 0;
  z-index: 10050; /* above header (header is 9999) */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,0.45);

  /* IMPORTANT: do not block pointer events; JS blocks interactions precisely */
  pointer-events: none;
}

#asi-locations-lock-overlay .asi-locations-lock-overlay__panel{
  pointer-events: auto;
  background: #fff;
  border-radius: 14px;
  max-width: 520px;
  width: 100%;
  padding: 18px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  text-align: center;
}

#asi-locations-lock-overlay .asi-locations-lock-overlay__title{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

#asi-locations-lock-overlay .asi-locations-lock-overlay__text{
  font-size: 15px;
  line-height: 1.35;
  opacity: 0.85;
}
