.pic {
  height: 124px;
  overflow: hidden;
}

.pic.has-image {
  background: #0b111b !important;
}

.product-photo,
.cart-product-photo,
.admin-product-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}

.items i,
.product-dot {
  overflow: hidden;
}

.items i.has-image,
.product-dot.has-image {
  background: #fff !important;
}

.product-image-field {
  display: grid;
  gap: 8px;
  color: #b9c4d2;
  font-size: 11px;
  font-weight: 700;
}

.product-image-picker {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 13px;
  align-items: center;
}

.product-image-preview {
  width: 92px;
  height: 92px;
  border: 1px solid #2a3850;
  border-radius: 13px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  font-size: 35px;
}

.product-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.product-image-picker input[type="file"] {
  padding: 9px;
  font-size: 10px;
}

.product-image-picker small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-top: 6px;
}

.image-remove {
  margin-top: 9px;
  border: 1px solid #5a3038;
  border-radius: 8px;
  background: #2b171d;
  color: #ff9da2;
  padding: 7px 9px;
  font-size: 9px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .product-image-picker {
    grid-template-columns: 72px 1fr;
  }

  .product-image-preview {
    width: 72px;
    height: 72px;
  }
}
