.salesiq-image-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.salesiq-image-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}
.salesiq-image-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 46, 0.55);
}
.salesiq-image-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 2.5rem);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(13, 27, 46, 0.12), 0 24px 64px rgba(13, 27, 46, 0.08);
  overflow: auto;
  padding: 1rem 1rem 1.25rem;
}
.salesiq-image-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: #F6F7F9;
  color: #5B6478;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.salesiq-image-close:hover { background: #E8EBF0; color: #0B102E; }
.salesiq-image-close:focus-visible {
  outline: 2px solid #D5FD2C;
  outline-offset: 2px;
}
.salesiq-image-dialog img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
