/* Store product hover stability fix
   Prevents product cards from moving or shaking when the mouse enters/leaves. */
.product-card,
.product-item,
.shop-product-card,
.product-box,
.store-product-card{
    transform:none !important;
    transition:box-shadow .16s ease, border-color .16s ease, background-color .16s ease !important;
    will-change:auto !important;
}

.product-card:hover,
.product-item:hover,
.shop-product-card:hover,
.product-box:hover,
.store-product-card:hover{
    transform:none !important;
}

.product-card *,
.product-item *,
.shop-product-card *,
.product-box *,
.store-product-card *{
    transform:none !important;
}

.product-card:hover,
.product-item:hover,
.shop-product-card:hover,
.product-box:hover,
.store-product-card:hover{
    border-width:1px !important;
}
