Build Your Own Bundle
Pick any 3 products from our full range and get 10% off automatically.
Loading products…
const res = await fetch('/cart/add.js', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ items })
});
if (!res.ok) throw new Error('failed');
msgEl.style.color = '#2f5233';
msgEl.textContent = 'Bundle added to cart!';
addBtn.textContent = 'Add Bundle to Cart';
updateBar();
} catch (err) {
msgEl.style.color = 'var(--accent)';
msgEl.textContent = 'Something went wrong — please try again.';
addBtn.textContent = 'Add Bundle to Cart';
addBtn.disabled = false;
}
});
loadProducts();
})();