<script>
    document.addEventListener("DOMContentLoaded", function() {
        const nav = document.querySelector(".imperial-categorias-nav");
        const prevBtn = document.querySelector(".imperial-slider-btn.prev");
        const nextBtn = document.querySelector(".imperial-slider-btn.next");

        if(!nav) return;

        if(prevBtn && nextBtn) {
            prevBtn.addEventListener("click", () => nav.scrollBy({ left: -220, behavior: "smooth" }));
            nextBtn.addEventListener("click", () => nav.scrollBy({ left: 220, behavior: "smooth" }));
        }

        let isDown = false;
        let startX, scrollLeft;

        nav.addEventListener("mousedown", (e) => {
            isDown = true;
            startX = e.pageX - nav.offsetLeft;
            scrollLeft = nav.scrollLeft;
        });
        nav.addEventListener("mouseleave", () => isDown = false);
        nav.addEventListener("mouseup", () => isDown = false);
        nav.addEventListener("mousemove", (e) => {
            if(!isDown) return;
            e.preventDefault();
            const x = e.pageX - nav.offsetLeft;
            const walk = (x - startX) * 2;
            nav.scrollLeft = scrollLeft - walk;
        });
    });
    </script><?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://prueba.castillo.marcacreativos.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://prueba.castillo.marcacreativos.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://prueba.castillo.marcacreativos.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://prueba.castillo.marcacreativos.com/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://prueba.castillo.marcacreativos.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://prueba.castillo.marcacreativos.com/wp-sitemap-taxonomies-product_brand-1.xml</loc></sitemap><sitemap><loc>https://prueba.castillo.marcacreativos.com/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://prueba.castillo.marcacreativos.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
