Seine
Our luxury towel collection, Seine, is sculpted with heavyweight one hundred percent sustainable cotton and carries a plush border that invokes the gentle waves of a river. With seven hundred grams per square meter, the towels are luxuriously soft, offering the comfort of a spa at home. Shared in a rich color palette of white, mineral, stone, and charcoal.
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-seine?' + 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);
})
">