/**
 * Sellzy — yalnızca ürün görselleri (assets/images/urunler/…).
 * Oran ne olursa olsun 1:1 kutu; taşan alan object-fit: cover ile kırpılır.
 */
.sellzy-urun-thumb-1x1 {
  position: relative;
  /* Yükleme sırası: width % burada w-* / .size-12 ile çakışıp küçük thumb’i satıra yayıyordu. */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.sellzy-urun-thumb-1x1 > a {
  position: absolute;
  inset: 0;
  display: block;
}

.sellzy-urun-thumb-1x1 > picture,
.sellzy-urun-thumb-1x1 > a > picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.sellzy-urun-thumb-1x1 > img,
.sellzy-urun-thumb-1x1 > a > img,
.sellzy-urun-thumb-1x1 picture img,
.sellzy-urun-thumb-1x1 > a > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

a.sellzy-urun-thumb-1x1 {
  display: block;
}
