Skip to product information
1 of 1

Aromalilycafe

Yo Yo - 2 pack

Yo Yo - 2 pack

Regular price $7.00 AUD
Regular price Sale price $7.00 AUD
Sale Sold out
Tax included. Shipping calculated at checkout.

Melbourne's delectable dessert sandwiched together with delicious cream made with fresh ingredients and comes in different flavours: Raspberry, pistachio and passionfruit.

Ingredients: Vegan margarine, plain flour, food colouring (102,110,124,133), icing sugar, corn flour, peppermint, passionfruit pulp, raspberries

View full details
document.addEventListener('DOMContentLoaded', function() { const productForm = document.querySelector('product-form form'); if (!productForm) return; const qtyInput = productForm.querySelector('input[name="quantity"]'); const variantIdInput = productForm.querySelector('input[name="id"]'); if (!qtyInput || !variantIdInput || !window.variantLimits) return; function applyVariantLimits() { const vid = variantIdInput.value; const limits = window.variantLimits[vid]; if (!limits) return; let min = parseInt(limits.min) || 1; let max = limits.max !== null ? parseInt(limits.max) : null; qtyInput.min = min; let current = parseInt(qtyInput.value) || 0; if (current < min) current = min; if (max && max > 0) { qtyInput.max = max; if (current > max) current = max; } else { qtyInput.removeAttribute('max'); } qtyInput.value = current; } applyVariantLimits(); productForm.addEventListener('change', applyVariantLimits); });