/* Add custom CSS styles below */ 
.product-card,
.product-item,
.salla-product-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* تأثير عند المرور */
.product-card:hover,
.product-item:hover,
.salla-product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* صورة المنتج */
.product-card img,
.product-item img,
.salla-product-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* تكبير الصورة عند المرور */
.product-card:hover img,
.product-item:hover img,
.salla-product-item:hover img {
  transform: scale(1.05);
}

/* عنوان المنتج */
.product-card h3,
.product-item h3,
.salla-product-item h3 {
  font-size: 16px;
  margin: 10px;
  color: #222;
}

/* السعر */
.product-card span,
.product-item span,
.salla-product-item .price {
  color: #b03060;
  font-weight: bold;
  margin: 10px;
  display: block;
}

/* زر الطلب */
.product-card button,
.product-item button {
  background: #b03060;
  color: #fff;
  border: none;
  padding: 10px;
  width: 90%;
  margin: 10px auto;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.product-card button:hover,
.product-item button:hover {
  background: #8b1c47;
}