.admin-body #productDialog {
  width: min(680px, calc(100% - 30px));
  max-height: 92vh;
  overflow: auto;
}

.image-manager {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.image-manager-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
}

.image-manager-heading small {
  color: var(--muted);
  font-weight: 400;
}

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.managed-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper);
}

.managed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.managed-image b {
  position: absolute;
  left: 5px;
  bottom: 5px;
  background: var(--yellow);
  padding: 4px 6px;
  font-size: 8px;
  text-transform: uppercase;
}

.managed-image button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 20, 14, .86);
  color: white;
  cursor: pointer;
}

.image-upload {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px dashed var(--muted);
  cursor: pointer;
  background: #fff;
}

.image-upload:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.image-upload input {
  position: absolute;
  width: 1px !important;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
