Nile
Our waffle towel collection, Nile, is inspired by the eternal river that has flowed for millions of years. While lightweight in nature, these sustainable towels are extra absorbent and offer a cozy luxurious feeling, which means you’ll find yourself wrapped in one long after you’ve stepped out of the shower. Shared in a combination of white, ivory, sage, and ochre.
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-nile?' + 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);
})
">