/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
*/
/* Product Card Hover Animation */
.product-card,
.product,
.card,
.products .card {
    transition: all 0.25s ease;
    cursor: pointer;
}

.product-card:hover,
.product:hover,
.card:hover,
.products .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* Product Image Animation */
.product-card img,
.product img,
.card img {
    transition: transform .25s ease;
}

.product-card:hover img,
.product:hover img,
.card:hover img {
    transform: scale(1.05);
}