/* Modal overlay */
.sb-lp-lock { overflow: hidden; }
.sb-lp-modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  z-index: 99999;
}
.sb-lp-modal-overlay.is-open{ display: block; }
.sb-lp-modal{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  padding: 12px 12px 16px;
}
.sb-lp-modal-close{
  position: absolute;
  top: 6px; right: 8px;
  font-size: 20px;
  line-height: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.sb-lp-stage{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sb-lp-title{
  font-weight: 600;
  margin: 4px 0 10px;
}
.sb-lp-canvas-wrap{
  position: relative;
  overflow: hidden;
}
.sb-lp-base{
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  height: auto;
}
.sb-lp-canvas{
  position: absolute;
  left: 0; top: 0;
  pointer-events: none;
}
.sb-lp-note{
  margin-top: 8px;
  font-size: 12px;
  color: #666;
  text-align: center;
}
/* Toggle above add-to-cart */
.sb-lp-toggle-wrap{ margin: 0.5rem 0 0.75rem; }
.button.sb-lp-toggle.is-active{ background:#2e7dd7; color:#fff; }
