const platform = navigator.platform || ''; const userAgent = navigator.userAgent || ''; const isAppleDevice = /iPhone|iPad|MacIntel/.test(platform) || /iPhone|iPad|Mac OS/.test(userAgent); // Set redirect URL and message based on device const redirectUrl = isAppleDevice ? 'https://www.apple.com/watch' : 'https://store.google.com/product/pixel_watch_3?hl=en-US';