JUMP
€89.90
10.00 ml (8,990.45 EUR/l)
{
if (!r.ok) throw new Error('Request failed');
return r.json();
}).then(data => {
if (data.success) {
wishlisted = !wishlisted;
animate = true;
setTimeout(() => animate = false, 600);
$dispatch('wishlist-updated', { count: data.items_count });
}
loading = false;
}).catch(() => { loading = false; error = true; setTimeout(() => error = false, 1000); });
" :title="wishlisted ? 'Remove from Wishlist' : 'Add to Wishlist'"
:aria-label="wishlisted ? 'Remove from Wishlist' : 'Add to Wishlist'"
:aria-pressed="wishlisted.toString()"
class="p-1 transition-colors"
:class="{
'text-red-500': wishlisted && !error,
'text-black hover:text-red-500': !wishlisted && !error,
'text-red-300': error,
'animate-[shake_0.3s_ease-in-out]': error
}">