Cart

You may be interested in…

Your cart is currently empty!


New in store

// // Create a div element to hold the chat icon // var chatIconDiv = document.createElement('div'); // // Add styles to position the icon in the bottom right corner // chatIconDiv.style.position = 'fixed'; // chatIconDiv.style.bottom = '20px'; // Adjust as needed // chatIconDiv.style.right = '20px'; // Adjust as needed // chatIconDiv.style.width = '50px'; // Adjust width as needed // chatIconDiv.style.height = '50px'; // Adjust height as needed // chatIconDiv.style.zIndex = '1000'; // Ensures it stays on top // chatIconDiv.style.cursor = 'pointer'; // // Add the SVG icon as inner HTML with the specified color // chatIconDiv.innerHTML = ` // // // // // // `; // // Append the div to the body // document.body.appendChild(chatIconDiv);