.floating-image {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 9999;
}
.hover-wrapper img {
  cursor: pointer;
}