
/* SS Home Popup */
.ss-homepopup-root {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ss-homepopup-root.is-open { display: flex; }

.ss-homepopup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.ss-homepopup-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: min(80vh, 700px);
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0,0,0,.35);
}

.ss-homepopup-body { padding: 18px 18px 16px; }
.ss-homepopup-title { margin: 0 0 10px; font-size: 20px; line-height: 1.2; }
.ss-homepopup-content { font-size: 15px; line-height: 1.45; }
.ss-homepopup-actions { margin-top: 14px; display: flex; justify-content: flex-end; gap: 10px; }

.ss-homepopup-x {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  font-size: 22px;
  line-height: 36px;
  cursor: pointer;
}

.ss-homepopup-x:hover { background: rgba(0,0,0,.1); }

@media (max-width: 480px) {
  .ss-homepopup-body { padding: 16px 14px 14px; }
  .ss-homepopup-title { font-size: 18px; }
}


.ss-homepopup-image-wrap { margin: 0 0 12px; }
.ss-homepopup-image { width: 100%; height: auto; display: block; border-radius: 10px; }
