/* Add custom CSS styles below */ 
/* عرض منتجين فقط في كل صف */
.s-products-list__items {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px;
}

@media (max-width: 768px) {
  .s-products-list__items {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* تقليل الفراغ بين بطاقات المنتجات */
.s-products-list__items {
  gap: 0px !important;
  row-gap: 0px !important;
  column-gap: 0px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* إزالة الحشوات داخل كل بطاقة منتج */
.s-product-card {
  padding: 0 !important;
  margin: 0 !important;
}
/* توحيد ارتفاع بطاقات المنتجات */
.s-product-card {
  height: 100% !important;
  min-height: 400px !important; /* يمكنك تعديل الرقم حسب ما يناسبك */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* توحيد ارتفاع صور المنتجات */
.s-product-card__image-wrapper {
  height: 300px !important; /* اضبطي حسب حجم الصورة */
  overflow: hidden;
}