<?php
header('Content-Type: application/xml; charset=utf-8');
require_once 'config.php';

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
    
    <!-- Homepage -->
    <url>
        <loc>https://parishramagro.com/</loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>
    
    <!-- Category Pages -->
    <?php
    $stmt = $pdo->prepare("SELECT * FROM categories ORDER BY category_name");
    $stmt->execute();
    $categories = $stmt->fetchAll();
    
    foreach($categories as $category):
    ?>
    <url>
        <loc>https://parishramagro.com/category.php?slug=<?php echo $category['category_slug']; ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    <?php endforeach; ?>
    
    <!-- Product Pages -->
    <?php
    $stmt = $pdo->prepare("
        SELECT p.*, pi.image_path 
        FROM products p 
        LEFT JOIN product_images pi ON p.product_id = pi.product_id 
        WHERE p.status = 'active'
        GROUP BY p.product_id
        ORDER BY p.product_name
    ");
    $stmt->execute();
    $products = $stmt->fetchAll();
    
    foreach($products as $product):
    ?>
    <url>
        <loc>https://parishramagro.com/product.php?slug=<?php echo $product['product_slug']; ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.9</priority>
        <?php if(!empty($product['image_path'])): ?>
        <image:image>
            <image:loc>https://parishramagro.com/<?php echo $product['image_path']; ?></image:loc>
            <image:title><?php echo htmlspecialchars($product['product_name']); ?></image:title>
            <image:caption>Buy <?php echo htmlspecialchars($product['product_name']); ?> online - Premium quality agricultural products from Parishram Agro</image:caption>
        </image:image>
        <?php endif; ?>
    </url>
    <?php endforeach; ?>
    
    <!-- Static Pages -->
    <url>
        <loc>https://parishramagro.com/cart.php</loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>daily</changefreq>
        <priority>0.6</priority>
    </url>
    
</urlset>
