/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/

/* Afficher la 2e image au survol d'un produit WooCommerce (sur la page boutique)*/
ul.products li.product {
  position: relative;
}

ul.products li.product img.second-product-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

ul.products li.product:hover img.second-product-image {
  opacity: 1;
}
