The open backed Tuesday slide features a playful interpretation of the ever popular Western trend, boasting motifs and rows of small stud accents that run across the front panel.
A slightly pointed toe and rounded back elongates the foot and creates a flattering silhouette.
If you are between sizes, we recommend ordering a size down
This is a ‘Final Sale’ or ‘Non-Returnable’ (subject to the Australian and New Zealand Consumer Law)
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
}
};