/* 2️⃣ الصورة مربعة وثابتة */
.s-product-card-entry .s-product-card-image {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 100% !important;
  overflow: hidden !important;
  background: #f9f9f9 !important;
  border-radius: 12px 12px 0 0 !important;
  margin-bottom: -8px !important;
}
.s-product-card-entry .s-product-card-image a {
  position: absolute !important;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}
.s-product-card-entry .s-product-card-image img {
  position: absolute !important;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}
.s-product-card-entry:hover .s-product-card-image img {
  transform: scale(1.05) !important;
}