/* كود يعمل على جميع الشاشات */
.product-card,
.product,
.product-item {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  height: auto !important;
  overflow: visible !important;
}

/* إصلاح الصور */
.product-card img,
.product img {
  width: 100% !important;
  height: auto !important;
  max-height: 240px !important;
  object-fit: contain !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
}

/* إصلاح صندوق النصوص تحت الصورة */
.product-card .product-info,
.product .product-info,
.product-details,
.product-description {
  position: relative !important;
  z-index: 2 !important;
  background: #fff !important;
  padding-top: 10px !important;
}

/* تأكد أن زر "إضافة للسلة" لا يركب فوق الصورة */
.add-to-cart-button,
.add-to-cart,
.product .btn {
  position: relative !important;
  z-index: 2 !important;
  margin-top: auto;
}

.hero-banner img {
  loading: eager!important;
}