// === PAGE-LEVEL CONTROL ===
document.addEventListener('DOMContentLoaded', function () {
const path = window.location.pathname.replace(/\/$/, ''); // normalize trailing slash
if (CHAT_SITE_WIDE || ALLOWED_PATHS.includes(path)) {
loadSalesforceChat();
} else {
console.info('Salesforce chat disabled on this page:', path);
}
});