/* =====================================
   FILTER BOX
===================================== */

.filter-box input {
    min-width: 140px;
}

/* =====================================
   PRODUCT CARD
===================================== */

.product-card {
    border-radius: 10px;
    border: 1px solid #dedede;
    transition: 0.3s ease;
    background: #fff;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

/* Product Image */
.product-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;

    
}

/* Price text */
.price-text {
    font-size: 18px;
    color: #28a745;
}

/* Stock badge */
.stock-badge {
    font-size: 12px;
    border-radius: 6px;
    padding: 4px 8px;
}

/* =====================================
   ADD-TO-CART ANIMATION SUPPORT
===================================== */

.fly-img {
    position: absolute;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    z-index: 9999;
    transition: transform 0.7s cubic-bezier(.45,1.58,.46,.84);
}

.cart-pulse {
    animation: pulseCart 0.5s ease;
}

@keyframes pulseCart {
    50% { transform: scale(1.25); color: #28a745; }
}

.btn-bounce {
    animation: bounce 0.4s ease;
}

@keyframes bounce {
    40% { transform: scale(0.9); }
    70% { transform: scale(1.05); }
}
