Your review is now visibleThanks for your review. Leaving reviews can help other shoppers make informed decisions.See Your Review
bottom of page
// Check if the website is being loaded within an iframe
if (window !== window.parent) {
// Website is being loaded within an iframe (e.g., Instagram in-app browser)
// Redirect to the same URL in the top-level window
window.top.location.href = window.location.href;
}