/* نبض خفيف */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.product-add {
  animation: pulse 2s infinite ease-in-out;
}
/* كارد المنتجات */
.product-card, .product-box {
    border-radius: 12px !important;
    background: #fff;
    border: 1px solid #eee;
    padding: 12px;
    transition: all 0.3s ease;
}

.product-card:hover, .product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);