Danube
Our classic towel collection, Danube, was inspired by the notion of quiet luxury. Consciously crafted with one hundred percent sustainable cotton, the towels carry an understated but elegant finish, with its quintessential design making it perfect for day-to-day use as well as special occasions. Shared in a timeless collection of white, morning pink, and dusk.
All of our towels come from a women-led family-run business where cotton, that is ethically sourced from the Indus Valley, is spun into yarn and woven into indulgent towels by a team of local craftspeople who have practiced the trade for generations.
{
const queryString = new URLSearchParams(new FormData($refs.filter_form)).toString()
history.replaceState(null, null, '?' + queryString);
loading = false;
fetch('/collections/the-danube?' + queryString)
.then(response => response.text())
.then(data => {
let html_div = document.createElement('div');
html_div.innerHTML = data;
let html_dom = html_div.querySelector('#ProductGridContainer').innerHTML;
document.querySelector('#ProductGridContainer').innerHTML = html_dom;
// update url without refreshing the page
})
.catch(error => console.error('Error:', error))
.finally(() => loading = false);
})
">