Trustpilot
🌿 KAMPANJ! Hoya sigillatis i 12 cm kruka – nu till specialpris! Passa på innan lagret tar slut! 💚✨ Klicka här för att fynda!

Utförsäljning


Trustpilot
const btn = document.createElement('button'); btn.textContent = '▲ Till toppen'; btn.style.position = 'fixed'; btn.style.bottom = '20px'; btn.style.right = '20px'; btn.style.padding = '10px 15px'; btn.style.fontSize = '18px'; btn.style.backgroundColor = 'red'; btn.style.color = 'white'; btn.style.border = 'none'; btn.style.borderRadius = '8px'; btn.style.cursor = 'pointer'; btn.style.zIndex = '9999'; btn.addEventListener('click', () => { window.scrollTo({top: 0, behavior: 'smooth'}); }); document.body.appendChild(btn);