/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Child theme for Hello Elementor.
Author: Your Name
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Import parent theme styles */
@import url("../hello-elementor/style.css");

body {
    font-family: "Poppins", Sans-serif !important;
}
/* Product image wrapper */
li.product a.woocommerce-loop-product__link {
  position: relative;
  display: block;
  overflow: hidden;
}

/* Secondary gallery image */
li.product .secondary-product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

/* Desktop hover */
@media (hover: hover) {
  li.product:hover .secondary-product-image {
    opacity: 1;
  }
}

/* Mobile tap (class added via JS) */
li.product.tap-hover .secondary-product-image {
  opacity: 1;
}
