
/* Produktbilder vollständig anzeigen, ohne Beschneidung */
.product-media{
  height: 210px;
  aspect-ratio: auto;
  background: #f3f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.product-media img{
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
}
.current-image-preview{
  max-width: 320px;
  max-height: 210px;
  object-fit: contain;
  border: 1px solid #dce6f1;
  border-radius: 12px;
  background: #f5f8fc;
  padding: 8px;
  margin-top: 8px;
}
