#fw-section-featured-product-7ea55e71-4228-4bc1-964f-674cb87c13a9 {

/* Product image hover: float + drop shadow */
.gallery__image-object{
  transition: transform 220ms ease, box-shadow 220ms ease;
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  border-radius: 12px; /* optional */
  will-change: transform;
}

/* Lift + shadow on hover */
.gallery__image-object:hover{
  transform: translateY(-10px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}

}