Want to be a part of the latest bag trend, don't go past Sol Sana's Crescent bag, with its simple shoulder strap and classic Sol Sana hardware, you'll always be the IT girl this season
W:24cm x H:14cm x D:9cm, Strap Length: 49cm (Adjustable)
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
}
};