<script>
document.addEventListener('DOMContentLoaded', function() {
    
    function addCloseButton() {
        var messages = document.querySelectorAll('.woocommerce-message');
        messages.forEach(function(msg) {
            if (msg.querySelector('.woo-close-btn')) return;
            
            var btn = document.createElement('button');
            btn.innerHTML = '&#x2715;';
            btn.className = 'woo-close-btn';
            
            btn.style.position = 'absolute';
            btn.style.top = '8px';
            btn.style.right = '10px';
            btn.style.background = 'none';
            btn.style.border = 'none';
            btn.style.fontSize = '20px';
            btn.style.cursor = 'pointer';
            btn.style.color = '#999';
            btn.style.lineHeight = '1';
            btn.style.padding = '0';
            btn.style.zIndex = '9999';
            
            btn.addEventListener('click', function() {
                msg.style.transition = 'opacity 0.3s';
                msg.style.opacity = '0';
                setTimeout(function() {
                    msg.style.display = 'none';
                }, 300);
            });
            
            msg.appendChild(btn);
        });
    }

    addCloseButton();

    var observer = new MutationObserver(function() {
        addCloseButton();
    });

    observer.observe(document.body, {
        childList: true,
        subtree: true
    });

});
</script><?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://merkbart.no/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://merkbart.no/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://merkbart.no/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://merkbart.no/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://merkbart.no/wp-sitemap-taxonomies-product_tag-1.xml</loc></sitemap><sitemap><loc>https://merkbart.no/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
