<?xml version="1.0" encoding="UTF-8"?>
<!--
  Sitemap index — mirrors the shared multi-site SEO architecture used across
  all websites on this backend (see Task 6/8 of the SEO cleanup workflow).

  * sitemap-static.xml     -> hand-maintained, hosted by this frontend build
  * sitemap-products.xml   -> generated dynamically by the shared Django
                               backend (ProductModel.objects.filter(is_active=True, is_published=True))
  * sitemap-categories.xml -> generated dynamically by the shared Django
                               backend (CategoryModel.objects.filter(is_active=True))
  * sitemap-blogs.xml      -> generated dynamically by the shared Django
                               backend (BlogModel.objects.filter(is_published=True))

  The three dynamic sitemaps are proxied to the backend for this site via the
  rewrite rules in public/.htaccess (website_id-scoped to Pureco).
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://www.pureco.shop/sitemap-static.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://www.pureco.shop/sitemap-products.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://www.pureco.shop/sitemap-categories.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://www.pureco.shop/sitemap-blogs.xml</loc>
  </sitemap>
</sitemapindex>
