<?php
header('Content-Type: application/xml; charset=utf-8');
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://vintagetoys.forsale/</loc>
    <lastmod><?php echo date('Y-m-d'); ?></lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  
  <?php
  // List all categories (add aliases if needed)
  $cats = ['all-toys', 'action-figures', 'classic-toys', 'diecast', 'games', 'marbles', 'models-kits'];
  foreach ($cats as $c) {
    echo "<url><loc>https://vintagetoys.forsale/category.php?c=$c</loc><lastmod>" . date('Y-m-d') . "</lastmod><changefreq>daily</changefreq><priority>0.8</priority></url>\n";
    
    // Optional: partner store variants (e.g., marbles with store param)
    if ($c === 'marbles' || $c === 'models-kits') {
      echo "<url><loc>https://vintagetoys.forsale/category.php?c=$c&amp;store=bugnworm</loc><lastmod>" . date('Y-m-d') . "</lastmod><changefreq>daily</changefreq><priority>0.8</priority></url>\n";
    }
  }
  ?>
</urlset>