
Sergio Tacchini
Sporting elegance, legacy defined.
Sergio Tacchini has long stood at the intersection of performance, style, and tennis heritage. Originally founded by the Italian tennis legend himself, the brand is synonymous with bold silhouettes, vintage appeal, and modern court-craft.
Though it’s a European brand with apparel that runs slimmer by design it now bridges the Atlantic with global distribution and refreshed logistics, especially across the U.S. and Europe. Inquiries, orders, shipping, and support operate under globalised systems while preserving Tacchini’s DNA.
Explore the Sergio Tacchini collection and wear a legacy of style and sport.
{
loading = true;
const params = new URLSearchParams(window.location.search);
const newParams = new URLSearchParams(new FormData($refs.filter_form));
newParams.set('page', 1);
newParams.set('filter.v.availability', 1);
if(params.get('sort_by')){
newParams.set('sort_by', params.get('sort_by'));
}
fetch(`/collections/sergio-tacchini?${newParams.toString()}`)
.then(response => response.text())
.then(data => {
let html_div = document.createElement('div');
html_div.innerHTML = data;
// update product grid view
let html_dom = html_div.querySelector('#ProductGridContainer').innerHTML;
document.querySelector('#ProductGridContainer').innerHTML = html_dom;
// update filter view
let filters_dom = html_div.querySelector('#ProductFilters').innerHTML;
document.querySelector('#ProductFilters').innerHTML = filters_dom;
document.title = html_div.querySelector('title').textContent;
// update url without refreshing the page
history.replaceState(null, null, '?' + newParams.toString());
})
.catch(error => console.error('Error:', error))
.finally(() => loading = false);
})"
>