The Corgi heel brings a contemporary touch to the cherished platform style through its split sole design. A rounded 6cm block heel is complemented by a stylish square toe, creating a flattering elongation effect for the foot. Secure your step with the lightly padded leather straps, wrapping the front and ankle.
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
}
};