.product-card {
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    }
    
    .product-image-container {
        overflow: hidden;
        background: #f8f9fa;
    }
    
    .product-image-container img {
        transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-image-container img {
        transform: scale(1.05);
    }
    
    .product-actions {
        bottom: -50px;
        transition: all 0.3s ease;
        opacity: 0;
    }
    
    .product-card:hover .product-actions {
        bottom: 15px;
        opacity: 1;
    }
    
    .quick-view-btn {
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    .product-card:hover .quick-view-btn {
        transform: translateY(0);
    }
    
    .add-to-cart-btn:hover {
        background-color: #0b5ed7 !important;
    }
    
    .buy-now-btn:hover {
        background-color: #f8f9fa !important;
    }
    
    .stars {
        font-size: 0.9rem;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    .original-price {
        font-size: 0.9rem;
    }

    