/* Add custom CSS styles below */ 
@media (max-width: 768px) {

  /* ❌ إخفاء كل الأزرار اللي فوق الصورة */
  .s-product-card-vertical-actions,
  .product-actions,
  .s-product-card-actions,
  .s-product-card .actions,
  .s-product-card .btn-icon,
  .s-product-card button:not(.btn--add-to-cart) {
    display: none !important;
  }

  /* 📚 تكبير الغلاف */
  .s-product-card-image {
    height: 170px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .s-product-card-image img {
    max-height: 160px !important;
    object-fit: contain !important;
  }

  /* 📦 حجم المنتج (2.5 تقريبًا) */
  .swiper-slide,
  .s-product-card {
    width: 42vw !important;
    min-width: 42vw !important;
    max-width: 42vw !important;
  }

  /* ✨ تحسين النص */
  .s-product-card-title {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .s-product-card-price {
    font-size: 13px !important;
  }

  /* 🟢 زر السلة */
  .btn--add-to-cart {
    height: 36px !important;
    font-size: 12px !important;
  }