document.addEventListener("DOMContentLoaded", function() {
function initSearch() {
var searchDiv = document.getElementById("ecwid-search-container");
var storeDiv = document.querySelector(".ecwid-store");
// Check if the container exists, the store is loaded, and xProductSearch is available
if(searchDiv && storeDiv && typeof xProductSearch === "function") {
xProductSearch("ecwid-search-container");
} else {
setTimeout(initSearch, 500); // Retry after 500ms
}
}
initSearch();
});