/* ======================================
 * VB – Fly-to-Cart Animation
 * ====================================== */

#vb-fly{
  position: fixed;
  z-index: 999999;
  border-radius: 12px;
  overflow: hidden;
  width: 64px;
  height: 64px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  pointer-events: none;
  transform-origin: center;
  will-change: transform, opacity;
}

#vb-fly img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce){
  #vb-fly{
    display: none !important;
  }
}