/* Add custom CSS styles below */ 
/* ضبط صندوق صورة المنتج */
.product-item .product-image,
.product-card .product-image {
  height: auto !important;
  aspect-ratio: 3 / 4; /* نسبة مناسبة للساعات */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

/* اظهار الصورة كاملة */
.product-item img,
.product-card img {
  object-fit: contain !important;
  width: 100%;
  height: 100%;
}