MSR WindBurner Stock Pot
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500&display=swap');
:root {
--black: #0a0a0a;
--white: #ffffff;
--mid: #f5f5f5;
--border: #e0e0e0;
--text-muted: #777;
--text-body: #222;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.spur-wrap {
font-family: 'Barlow', sans-serif;
background: var(--white);
color: var(--black);
max-width: 1100px;
margin: 0 auto;
padding: 48px 24px;
}
.spur-header {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 48px;
border-bottom: 1px solid var(--border);
padding-bottom: 24px;
flex-wrap: wrap;
gap: 12px;
}
.spur-title {
font-family: 'Barlow Condensed', sans-serif;
font-size: clamp(28px, 5vw, 48px);
font-weight: 800;
letter-spacing: -0.02em;
line-height: 1;
text-transform: uppercase;
}
.spur-meta {
font-size: 12px;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-muted);
}
.spur-tabs {
display: flex;
gap: 4px;
margin-bottom: 32px;
}
.spur-tab {
font-family: 'Barlow Condensed', sans-serif;
font-size: 14px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 10px 24px;
background: var(--mid);
color: var(--text-muted);
border: 1px solid var(--border);
cursor: pointer;
transition: all 0.15s;
border-radius: 2px;
}
.spur-tab:hover {
color: var(--black);
border-color: #aaa;
}
.spur-tab.active {
background: var(--black);
color: var(--white);
border-color: var(--black);
}
.spur-panel {
display: none;
}
.spur-panel.active {
display: block;
}
.spec-category {
font-family: 'Barlow Condensed', sans-serif;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--black);
padding: 20px 0 8px;
border-bottom: 2px solid var(--black);
margin-bottom: 0;
}
.spec-row {
display: grid;
grid-template-columns: 200px 1fr;
border-bottom: 1px solid var(--border);
transition: background 0.1s;
}
.spec-row:hover {
background: var(--mid);
}
.spec-key {
font-size: 12px;
font-weight: 500;
letter-spacing: 0.05em;
text-transform: uppercase;
color: var(--text-muted);
padding: 12px 16px 12px 0;
align-self: start;
}
.spec-val {
font-size: 14px;
font-weight: 300;
color: var(--text-body);
padding: 12px 0;
line-height: 1.5;
}
@media (max-width: 600px) {
.spec-row {
grid-template-columns: 1fr;
}
.spec-key {
padding-bottom: 2px;
}
.spec-val {
padding-top: 0;
padding-bottom: 12px;
}
}
WindBurner® Stock Pot
MSR · Fast-boiling 4.5 L pot for WindBurner stove systems
Specs
Description
Not only is the WindBurner Stock Pot perfect for large volume cooking, it features an integrated heat exchanger that delivers ultra-efficient boil times, to cook meals quick for hungry groups at camp. The perfect accessory pot for WindBurner Stove Systems, the 4.5 L hard-anodized aluminum pot features fixed handles for easy lifting and a strainer lid with locking latches. Compatible exclusively with the WindBurner remote-canister stove, found in the Duo, Group and Combo Systems. Not for use with the WindBurner Personal top-mounted stove.
Features
Capacity
Group Cooking - 4.5 L Pot is designed for group & large volume cooking
Efficiency
Ultra-Efficient - Integrated heat exchanger for fast boil times, with less fuel used
Design
Compact Nesting - Pot perfectly nests WindBurner® Group Stove System for efficient packing
Stability
Stable - Self-centering pot fits WindBurner stoves' deep lip for increased stability
Included
4.5 L hard-anodized aluminum pot with fixed handles; Aluminum strainer lid with locking latches
Specs
SKU
10370
Volume
4.5 liters
Weight
1 lb 4 oz (568 g)
Packed Dimensions
8.3 x 2.8 in (21.1 x 7.1 cm)
Boil Time (1L Water)
6.2 min
Materials
4.5L Hard-anodized aluminum pot w/ strainer lid
Origin
Made in Thailand
function showPanel(id, btn) {
document.querySelectorAll('.spur-panel').forEach(p => p.classList.remove('active'));
document.querySelectorAll('.spur-tab').forEach(t => t.classList.remove('active'));
document.getElementById('panel-' + id).classList.add('active');
btn.classList.add('active');
}