<script>
document.addEventListener("DOMContentLoaded", function () {

  const container = document.getElementById("compare");
  const after = container.querySelector(".after-img");
  const slider = document.getElementById("slider");

  if (!container || !after || !slider) return;

  let isDragging = false;

  function move(x) {
    const rect = container.getBoundingClientRect();
    let pos = x - rect.left;

    if (pos < 0) pos = 0;
    if (pos > rect.width) pos = rect.width;

    let percent = (pos / rect.width) * 100;

    after.style.clipPath = "inset(0 " + (100 - percent) + "% 0 0)";
    slider.style.left = percent + "%";
  }

  // drag only
  slider.addEventListener("mousedown", function () {
    isDragging = true;
  });

  window.addEventListener("mouseup", function () {
    isDragging = false;
  });

  window.addEventListener("mousemove", function (e) {
    if (isDragging) move(e.clientX);
  });

  // mobile
  slider.addEventListener("touchstart", function () {
    isDragging = true;
  });

  window.addEventListener("touchend", function () {
    isDragging = false;
  });

  window.addEventListener("touchmove", function (e) {
    if (isDragging) move(e.touches[0].clientX);
  });

});
</script><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//burro.ai/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://burro.ai/post-sitemap.xml</loc>
		<lastmod>2026-03-26T11:05:26+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://burro.ai/page-sitemap.xml</loc>
		<lastmod>2026-04-01T16:29:14+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://burro.ai/dealer-sitemap.xml</loc>
		<lastmod>2025-03-11T15:15:09+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://burro.ai/product-sitemap.xml</loc>
		<lastmod>2026-04-08T19:31:51+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://burro.ai/dealer_category-sitemap.xml</loc>
		<lastmod>2025-03-11T15:15:09+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://burro.ai/product_cat-sitemap.xml</loc>
		<lastmod>2026-04-08T19:31:51+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://burro.ai/author-sitemap.xml</loc>
		<lastmod>2026-04-02T14:35:32+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->