function openPayPalApp() {
// Versuch, die PayPal-App direkt zu öffnen
window.location.href = 'paypal://pay?amount=9.99¤cy=EUR';
// Fallback-Umleitung, falls die App nicht geöffnet wird
setTimeout(function() {
if (document.visibilityState === 'visible') {
window.open('https://www.paypal.com/qrcodes/managed/59bc941f-ca5c-4d9a-b75a-7e6f2271cdb4?utm_source=bizapp_download&amount=9.99¤cy_code=EUR', '_blank');
}
}, 2500); // 2,5 Sekunden Verzögerung
}
// Event-Listener für den Button
document.getElementById('payPalButton').addEventListener('click', openPayPalApp);