Une botte entièrement imperméable, soigneusement conçue pour résister aux conditions climatiques et de terrain difficiles, offrant un maintien et une durabilité optimaux. La tige confortable en microfibre, associée à une membrane imperméable, offre un confort optimal et une protection imperméable dans les pires conditions hivernales.
Tige confort mi-haute en microfibre
Semelle intermédiaire coussinée en EVA
Semelle extérieure en caoutchouc à 7 crampons avec un support de traction accru
Semelle intérieure coussinée
Garantie d'étanchéité d'un an
Send it back unworn with tags attached for a refund. Full details, including how to arrange it, are on our returns page.
1 / 2
Bottes imperméables Evolve Sport II£69.99
What golfers say
Independent reviews of this product, collected from Stuburt retailers.
4.9 / 5from 10 reviews · 4.3 across 954 ratings on Amazon
★★★★★
Good solid golf boot
andy McGill · September 2026 · via Amazon
★★★★★
Very comfortable
Worked well, kept feet dry all winter
mark.bentham · July 2026 · via Amazon
★★★★☆
Stuburt Mens Evolve Sport II Waterproof Boots
These boots give good foot and ankle support. I didnt have these on my feet for very long as needed a size bigger than I usually wear, so cannot comment on comfort for longer periods They are a little clumpy looking, but playing golf in wet conditions is about function not style.
steven · December 2025 · via GolfOnline
★★★★★
Waterproof
Great pair of winter golf boots. Very comfortable and nicely waterproof. Very good price
emyr hughes · October 2025 · via Amazon
Read more reviews
★★★★★
Excellent winter golf boots.
Great product, replaced older pair of Stuburt boots that lasted for six years. These were comfortable straight out of the box, typical Stuburt high quality. Will be very pleased if these are as long lasting as previous pair,
Kindle Customer · September 2025 · via Amazon
★★★★★
Great golf shoes
Weatherproof great fit and very comfortable and easy to wear great style and really great value for money this is the second pair durability great and functionality
Amazon Customer · September 2024 · via Amazon
★★★★★
Good Quality
Pretty good waterproof
Daniel Boucher · June 2022 · via Amazon
★★★★★
Robust Waterproof Golf Boots
Needed these for the coming winter as my 2year old golf shoes are starting to leak. The boots are big change from the normal golf shoes being more like a hiking boot in style but are very solidly made and will take anything that the winter will throw at them. We play golf through any weather in winter, lashing rain, frozen ground and even light snow on occasion so these are man enough for the job.
Jamaro · November 2021 · via Amazon
★★★★★
Good value boots
Does exactly what it says on box did not expect or want anything more than I was recommended by a fellow golfer
William · November 2020 · via GolfOnline
★★★★★
Great Boot for the wet
Used these now for 2 rounds in the very wet and I mean very wet Great boots I had nice dry feet both times not heavy good grip and easy to clean Tip do check the studs before you use and make sure the are tight I would recommend these boots to anyone
`;
};
const bindCarousel = () => {
const carousel = section.querySelector('[data-carousel]');
const prev = section.querySelector('[data-direction="prev"]');
const next = section.querySelector('[data-direction="next"]');
if (!carousel) return;
const cardWidth = () => {
const c = carousel.querySelector('.stb-card');
if (!c) return 0;
return c.getBoundingClientRect().width + (parseFloat(getComputedStyle(carousel).gap) || 20);
};
const update = () => {
const max = carousel.scrollWidth - carousel.clientWidth;
// Edge fade: only where there's more to scroll (crisp resting edges).
carousel.toggleAttribute('data-fade-start', carousel.scrollLeft > 2);
carousel.toggleAttribute('data-fade-end', carousel.scrollLeft < max - 2);
if (!prev || !next) return;
prev.disabled = carousel.scrollLeft <= 2;
next.disabled = carousel.scrollLeft >= max - 2;
};
if (prev) prev.addEventListener('click', () => carousel.scrollBy({ left: -cardWidth(), behavior: 'smooth' }));
if (next) next.addEventListener('click', () => carousel.scrollBy({ left: cardWidth(), behavior: 'smooth' }));
carousel.addEventListener('scroll', update, { passive: true });
window.addEventListener('resize', update);
update();
};
/* Adding to cart is handled by the shared web component
(assets/stuburt-quick-pick.js) — it posts to /cart/add.js and dispatches the
`cart:update` event the mini-cart + cart bubble subscribe to, identical to
the SS26 carousel and the collection page. */
const load = async () => {
const handles = getViewed().filter(h => h && h !== currentHandle).slice(0, limit);
if (!handles.length) return; // stays hidden
const results = await Promise.all(
handles.map(h => fetch(`/products/${encodeURIComponent(h)}.js`, { headers: { Accept: 'application/json' }})
.then(r => r.ok ? r.json() : null).catch(() => null))
);
const valid = results.filter(Boolean);
if (!valid.length) return;
const carousel = section.querySelector('[data-carousel]');
carousel.innerHTML = valid.map(cardHTML).join('');
section.removeAttribute('hidden');
bindCarousel();
};
// Clear all: wipe the stored history and hide the section
const bindClearAll = () => {
const btn = section.querySelector('[data-clear-all]');
if (!btn) return;
btn.addEventListener('click', () => {
setViewed([]);
section.setAttribute('hidden', '');
});
};
bindClearAll();
// If we already have stored handles, reveal section so skeletons show while fetching
if (getViewed().filter(h => h && h !== currentHandle).length > 0) {
section.removeAttribute('hidden');
}
load();
})();
Cookie consent
We and our partners use cookies to personalise your experience, show relevant ads and analyse traffic. We won’t use them for these purposes unless you accept. Privacy Policy.