document.addEventListener('DOMContentLoaded', () => {
const buttons = {
'bienetre-btn': 'radix-_R_98p52npfl9fivb_-trigger-zwbHTJn',
'relation-btn': 'radix-_R_98p52npfl9fivb_-trigger-pJKQLPJ',
'equitation-btn': 'radix-_R_98p52npfl9fivb_-trigger-VyZB3jP'
};
Object.entries(buttons).forEach(([btnId, tabId]) => {
const btn = document.getElementById(btnId);
if (!btn) return;
btn.addEventListener('click', (e) => {
e.preventDefault();
// Clic sur l'onglet pour l'activer
const tab = document.getElementById(tabId);
if (tab) tab.click();
// Scroll vers la section
const section = document.getElementById('basics-videos');
if (section) {
setTimeout(() => {
section.scrollIntoView({ behavior: 'smooth', block: 'start' });
}, 50);
}
});
});
});