/* Add custom CSS styles below */ 
.s-product-card-content-footer {
  background: #1a9c7d;
  border-radius: 20px;
}

.s-product-card-entry:hover {
  background: linear-gradient(135deg, #f4fffd, #f4fffd);
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: #1a9c7d;
  transition: 0.3s ease;
}

/* الكارد الأساسي */
.slide--cat-entry {
  width: 100%;       /* تأخذ عرض السلايد */
  height: 100%;      /* تأخذ ارتفاع السلايد */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}


/* Hover Effect */
.slide--cat-entry:hover {
  background: linear-gradient(135deg, #1a9c7d, #29caa1);
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: #1a9c7d;
}

/* الأيقونة */
.slide--cat-entry i {
  font-size: 34px;
  color: #1a9c7d;
  margin-bottom: 12px;
  transition: 0.3s;
}


/* تغيير لون الأيقونة عند hover */
.slide--cat-entry:hover h2,
.slide--cat-entry:hover i {
  color: #fff;
}

/* العنوان */
.slide--cat-entry h2 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0;
  text-align: center;
}

/* تحسين حجم السلايدر */
/* تثبيت حجم كل Slide */
.slide--cat-entry {
  width: 200px !important;   /* عرض ثابت */
  height: 160px !important;  /* ارتفاع ثابت */

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive للموبايل */
@media (max-width: 768px) {
  .slide--cat-entry {
    width: 150px !important;
    height: 130px !important;
  }

  .slide--cat-entry h2 {
    font-size: 14px;
    max-width: 120px;
  }

  .slide--cat-entry i {
    font-size: 26px;
  }
}