<?php
date_default_timezone_set('Asia/Bangkok');
header('Content-Type: application/xml; charset=UTF-8');
$scheme = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$currentHost = $_SERVER['HTTP_HOST'] ?? '';
$baseUrl = $currentHost ? $scheme . '://' . $currentHost : '';
$pages = ['/', '/brand/', '/products/', '/videos/', '/guide/', '/faq/', '/contact/', '/features/', '/tutorials/', '/updates/', '/help/', '/tips/'];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($pages as $page): ?>
  <url>
    <loc><?= htmlspecialchars(($baseUrl ?: '') . $page, ENT_QUOTES, 'UTF-8') ?></loc>
    <lastmod><?= date('Y-m-d') ?></lastmod>
    <changefreq>daily</changefreq>
    <priority><?= $page === '/' ? '1.0' : '0.8' ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
