/* Product Actions CSS */
.enhanced-product-card {
    position: relative;
    overflow: hidden;
}

.enhanced-product-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.add-to-cart-btn {
    transition: all 0.3s ease;
}

.add-to-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wishlist-btn {
    transition: all 0.3s ease;
}

.wishlist-btn.active {
    color: #e74c3c;
}

.qty-input {
    text-align: center;
    width: 60px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #e9ecef;
}















