Eperfa
Designed by three mums in Hungary, this beautifully designed collection of wooden toys takes its inspiration from Lake Balaton and the Buda Hills in Hungary. The toys are ideal for encouraging storytelling, role play, connection to nature as well as hand-eye coordination and fine motor skills.
From Eperfa: "We make toys about the enormous trees with birds in the shady forest the houses and the children’s railway. About the scent of the summer, about the ferries in Lake Balaton, about the sun, the heat the smell of the water."
Choose from a glowing firefly, wooden hillside forest, skipping rope with fish handles, a fishing set in a shoulder bag or mushroom spinning tops.

{
const queryString = new URLSearchParams(new FormData($refs.filter_form)).toString();
let pattern = /[?&]sort_by=/;
let collUrl = location.search;
let newUrl = queryString;
if(pattern.test(collUrl)) {
const theString = window.location.search;
const urlParams = new URLSearchParams(theString);
const sorty = urlParams.get('sort_by')
newUrl = queryString + '&sort_by=' + sorty;
console.log(sorty);
}
console.log(queryString);
console.log(newUrl);
loading = true;
fetch('/collections/eperfa?' + newUrl)
.then(response => response.text())
.then(data => {
let html_div = document.createElement('div');
html_div.innerHTML = data;
let html_dom = html_div.querySelector('#dataMix').innerHTML;
document.querySelector('#dataMix').innerHTML = html_dom;
// update url without refreshing the page
history.replaceState(null, null, '?' + newUrl);
})
.catch(error => console.error('Error:', error))
.finally(() => loading = false);
})"
>
Sorry, there are no products in this collection