.wishlist-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ef4444;

    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    z-index: 20;
}

@keyframes particle-explosion {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}