/* 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;
  }
/* زر إضافة للسلة */
.s-product-card__add-btn,
.s-product-card .s-button-btn,
button.s-button-btn {
  background-color: #16a34a !important;
  border-color: #16a34a !important;
  color: #fff !important;
}

/* الأيقونة داخل الزر */
.s-product-card__add-btn svg,
.s-product-card__add-btn i {
  color: #fff !important;
  fill: #fff !important;
}

/* عند المرور */
.s-product-card__add-btn:hover,
.s-product-card .s-button-btn:hover {
  background-color: #15803d !important;
  border-color: #15803d !important;
}