.products-background-section .product-card-wrapper[data-product-url] {
    cursor: pointer;
}

.products-background-section .product-card-wrapper[data-product-url] .card {
    transition: transform 0.3s ease;
}

.products-background-section .product-card-wrapper[data-product-url]:hover .card {
    transform: scale(1.02);
}

.products-background-section .product-card-wrapper[data-product-url] .media img {
    transition: transform 0.5s ease;
}

.products-background-section .product-card-wrapper[data-product-url]:hover .media img {
    transform: scale(1.05);
}