if (window.location.pathname === '/' || window.location.pathname === '') { var toggleKey = 'popup_status_royal_rose'; var currentStatus = localStorage.getItem(toggleKey); if (currentStatus === null || currentStatus === 'show') { var royalRosePopup = ` `; document.body.insertAdjacentHTML('beforeend', royalRosePopup); setTimeout(function () { var modal = document.getElementById('free-popup-modal'); if (modal) { modal.style.display = 'flex'; } }, 1500); window.closePopup = function () { var modal = document.getElementById('free-popup-modal'); if (modal) { modal.style.display = 'none'; } }; localStorage.setItem(toggleKey, 'hide'); } else { localStorage.setItem(toggleKey, 'show'); } }