Knee-high boots are a must-have in every style maven's closet. Fashioned in a supple leather with a beautiful natural welt plus an exaggerated Square toe, these signature 8cm block heeled boots also come with a secure side-zip closure for access which enables you to easily slip in and out of. These sleek knee boots will make you look and feel your best this Winter.
Subscribe to be the first to discover the latest collections, exclusive discounts & events, plus a special treat on your birthday!
Availability
// Save scroll position
window.onbeforeunload = function() {
localStorage.setItem('scrollPosition', window.scrollY);
};
// Restore scroll position
window.onload = function() {
var scrollPosition = localStorage.getItem('scrollPosition');
if (scrollPosition) {
window.scrollTo(0, scrollPosition);
localStorage.removeItem('scrollPosition'); // Clear saved position after use
}
};