Skip to product information
1 of 1

Aromalilycafe

Gingerbread Men 6-pack

Gingerbread Men 6-pack

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

Enjoy Christmas all year round with our mini-gingerbread men, decorated with icing and yummy sprinkles. Freshly baked, serves as a great delight for all ages.

Bulk buy of mini gingerbreadmen will be packaged in tightly sealed bags to retain its freshness

 

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); });