/* ============================================= SHARED COMPONENTS — injected into every page ============================================= */ const SHARED_TOPBAR = `
Lun–Ven 7:00–19:30  |  Sab 8:00–12:30 3935936333
`; const SHARED_HEADER = `
`; const SHARED_FOOTER = ` `; /* Inject components */ (function () { const topbarEl = document.getElementById('site-topbar'); const headerEl = document.getElementById('site-header'); const footerEl = document.getElementById('site-footer'); if (topbarEl) topbarEl.outerHTML = SHARED_TOPBAR; if (headerEl) headerEl.outerHTML = SHARED_HEADER; if (footerEl) footerEl.outerHTML = SHARED_FOOTER; })();