/* ===== FIX: product image too big ===== */
.product-card{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px !important;
  align-items: start !important;   /* يمنع التمدد */
}

.product-media{
  border-radius: 26px !important;
  overflow: hidden !important;

  height: 520px !important;        /* تحكم بالحجم */
  max-height: 520px !important;
  background: rgba(0,0,0,.03) !important;
}

.product-media img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;     /* لا تتمطط */
  display: block !important;
}

/* موبايل */
@media (max-width: 900px){
  .product-card{ grid-template-columns: 1fr !important; }
  .product-media{
    height: 340px !important;
    max-height: 340px !important;
  }
}
/* حاوية صورة المنتج */
.product-media{
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
  background: #f6f6f6;
}

/* صورة المنتج */
.product-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
