/* .woo-product-image-hover-box:not(:hover) img:last-child:not(:first-child){display: none;} */
/* .woo-product-image-hover-box:hover img:first-child:not(:last-child){display: none;} */
.woo-product-image-hover-box{
	position: relative;
	display: flex;
}
.woo-product-image-hover-box img:last-child:not(:first-child){
	position: absolute;
	z-index: 1;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.4s ease;
}
.woo-product-image-hover-box:hover img:last-child:not(:first-child){
	opacity: 1;
	transform: scale(1);
}
	
	