document.addEventListener('DOMContentLoaded', function () {
alert('Script is running!'); // Test if the script runs on page load
function addEnquireButton() {
alert('addEnquireButton function is called!'); // Test if this function is executed
if (document.body.classList.contains('page-id-basket-enquire')) {
alert('We are on the basket-enquire page!'); // Check if you're on the correct page
const cartTotals = document.querySelector('.cart_totals');
if (cartTotals) {
alert('Cart totals found! Adding button now.'); // Verify if cart_totals exists
const buttonHTML = `