/* The picture moves; the product link and labels remain still and easy to use. */
.hero-visual-clip[data-hero-motion] > .recups-picture {
  position: absolute;
  display: block;
  inset: 0;
  transform: translate3d(var(--hero-x, 0px), var(--hero-y, 0px), 0);
  transition: transform .65s ease-out;
}
.hero-visual-clip[data-motion-ready="true"] > .recups-picture > img {
  animation: recups-photo-drift 12s ease-in-out infinite alternate;
  animation-play-state: paused;
  transform-origin: 48% 52%;
}
.hero-visual-clip[data-motion-running="true"] > .recups-picture > img {
  animation-play-state: running;
}
@keyframes recups-photo-drift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-.4%, -.3%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual-clip[data-hero-motion] > .recups-picture,
  .hero-visual-clip[data-hero-motion] > .recups-picture > img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
