Winter Melon 1kg
Also known as Ash gourd (Wax gourd)
Crisp, refreshing and delicately sweet, winter melon soaks up savory flavors beautifully in soups, stir‑fries, and gentle steams.
Why you’ll love it
- Clean, mild taste that carries aromatics and stock like a sponge.
- Low in calories yet satisfying; great for light, cozy meals.
- Versatile: ideal for clear soups, quick stir‑fries, steaming, and hot pot.
- Cooks fast to a translucent, tender‑crisp finish.
How to enjoy
-
Clear winter melon, shiitake & tofu soup Broth‑based
-
Garlic oyster‑sauce stir‑fry
-
Steamed stuffed melon rings
-
Hot pot essential
-
Chilled vinegar‑sesame salad
Recipes with this product
Products used in these recipes
Prep Tips
- Peel off the thick, waxy rind; scoop out seeds and pith before cutting.
- For soup, cut 2–3 cm cubes so they turn translucent without breaking; for stir‑fry, use thicker wedges.
- Don’t overcook — aim for tender, slightly crisp bites (stir‑fry 2–4 minutes; simmer 8–12 minutes; steam 8–12 minutes).
- A pinch of salt before cooking helps draw moisture for a silkier finish in stir‑fries.
Delivery & Timing
You can Track the courier's location in Real‑Time online! Get your order as soon as the Next Day (for most areas in Sydney).
Order Time |
Arrival Time |
Today |
Next Day (2 options):
- 11:30AM – 06:30PM
- 05:00PM – 11:00PM
|
* Canceling after the cutoff may incur fees. Click here.
Details: Delivery Information.
Delivery Fees
* A flat $2 service & packaging fee will be added at checkout — see details.
$69.00 and up |
Free |
$20 – $68.99 |
$4.99 (was $10)
|
$0.01 – $19.99 |
$7.99 (was $10)
|
'; return a; };
const hydrate = async (a)=>{ const h=a.getAttribute('data-handle'); try{ const r=await fetch('/products/'+h+'.js',{credentials:'same-origin'}); if(!r.ok) return; const p=await r.json(); const img=a.querySelector('img'); if(p.images&&p.images[0]) img.src=p.images[0]; const t=a.querySelector('.um-title'); t.textContent=p.title||t.textContent; const vs=(p.variants||[]); const avail=vs.filter(v=>v.available); const arr=avail.length?avail:vs; if(arr.length){ const min=Math.min(...arr.map(v=>v.price)); const maxCompare=Math.max(...arr.map(v=>v.compare_at_price||0)); const price=a.querySelector('.um-price'); price.textContent=''; const cur=document.createElement('span'); cur.textContent=money(min); price.appendChild(cur); if(maxCompare && maxCompare>min){ const s=document.createElement('s'); s.textContent=money(maxCompare); price.appendChild(document.createTextNode(' ')); price.appendChild(s); const badge=a.querySelector('.um-badge'); const off=Math.round((1-min/maxCompare)*100); badge.textContent='-'+off+'%'; badge.style.display='inline-block'; } } }catch(e){} };
// How to enjoy → 卡片(保留原内容)
try{
const enjoyH3 = Array.from(root.querySelectorAll('h3')).find(h=>/how to enjoy/i.test(h.textContent));
if(enjoyH3){
const section = enjoyH3.parentElement;
const ol = section.querySelector('ol');
const cardsHost = section.querySelector('#um-recipes-cards');
const prodHost = section.querySelector('#um-recipes-products');
const links = new Set();
if(ol && cardsHost){
const items = Array.from(ol.children).filter(n=>n.tagName==='LI');
items.forEach((li, idx)=>{
const card=document.createElement('article'); card.className='um-rcard';
const h4=document.createElement('h4');
// 标题来自首个加粗/标题元素
const strong = li.querySelector('div[style*="font-weight:700"], strong');
h4.textContent = strong ? strong.textContent.trim() : ('Recipe '+(idx+1));
// 克隆 li,去掉标题节点,仅保留正文内容,避免重复与项目符号
const clone = li.cloneNode(true);
const toRemove = clone.querySelector('div[style*="font-weight:700"], strong');
if(toRemove) toRemove.remove();
const body=document.createElement('div');
while(clone.firstChild){ body.appendChild(clone.firstChild); }
card.appendChild(h4);
card.appendChild(body);
cardsHost.appendChild(card);
// 收集产品链接(仅 products/*)
li.querySelectorAll('a[href]').forEach(a=>{ const h=handleFromHref(a.getAttribute('href')); if(h) links.add(h); });
});
// 隐藏原始标题与列表,只显示卡片与滑动条
ol.style.display='none';
if(enjoyH3) enjoyH3.style.display='none';
}
if(prodHost && links.size){ Array.from(links).forEach(h=>{ const a=buildProdCard(h); prodHost.appendChild(a); hydrate(a); }); }
}
}catch(e){}
// Pairs well → 滑动卡片
try{
const pairsH3 = Array.from(root.querySelectorAll('h3')).find(h=>/pairs well/i.test(h.textContent));
if(pairsH3){ const ul=pairsH3.parentElement.querySelector('ul'); const host=pairsH3.parentElement.querySelector('#um-pairs-slider'); if(ul && host){ const unique=new Set(); ul.querySelectorAll('a[href]').forEach(a=>{ const h=handleFromHref(a.getAttribute('href')); if(h && !unique.has(h)){ unique.add(h); const card=buildProdCard(h); host.appendChild(card); hydrate(card); } }); } }
}catch(e){}
// More in this category → 条件滑动
try{
const moreH3 = Array.from(root.querySelectorAll('h3')).find(h=>/more in this category/i.test(h.textContent));
if(moreH3){
const section = moreH3.parentElement;
const ul=section.querySelector('ul');
const host=section.querySelector('#um-more-slider');
if(ul && host){
const links=ul.querySelectorAll('a[href]');
if(links.length>=2){
const unique=new Set();
links.forEach(a=>{ const h=handleFromHref(a.getAttribute('href')); if(h && !unique.has(h)){ unique.add(h); const card=buildProdCard(h); host.appendChild(card); hydrate(card); } });
// 若生成了卡片:隐藏原“More in this category”和其列表;把 Explore CTA 提到滑动条上方
if(host.children.length){
ul.style.display='none';
moreH3.style.display='none';
const cta = section.querySelector('div a[href^="/collections/"]')?.parentElement;
if(cta){ section.insertBefore(cta, host); }
}
}
}
}
}catch(e){}
})();