// SEO: Add H1 to homepage only
if (window.location.pathname === '/' || window.location.pathname === '') {
document.addEventListener('DOMContentLoaded', function() {
if (document.querySelector('h1')) return;
var h1 = document.createElement('h1');
h1.textContent = 'Wholesale Nail & Beauty Supplies Ireland';
h1.style.cssText = 'text-align:center;font-size:1.4rem;font-weight:600;color:#555;padding:12px 20px 4px;margin:0;letter-spacing:0.5px;';
var target = document.querySelector('.highlights, .usp-bar, [class*="usp"], [class*="highlight"], main, #main, .wrapper');
if (target) {
target.parentNode.insertBefore(h1, target);
} else {
document.body.prepend(h1);
}
});
}