".
// Anything without the nonce is blocked, replacing the previous 'unsafe-inline' allowance.
if (empty($_SESSION['gt_csp_nonce_request'])) {
    $_SESSION['gt_csp_nonce_request'] = '';
}
$GLOBALS['gt_csp_nonce'] = base64_encode(random_bytes(16));

// Security headers
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
header('X-Content-Type-Options: nosniff');
header('X-Frame-Options: SAMEORIGIN');
header('Referrer-Policy: strict-origin-when-cross-origin');
header('Permissions-Policy: camera=(), microphone=(), geolocation=()');
// script-src uses nonces (XSS-critical). style-src keeps 'unsafe-inline' because
// the SPA injects countless style="..." attributes; the XSS impact via CSS is
// negligible compared to the rewrite cost.
// script-src uses nonces (XSS-critical). style-src keeps 'unsafe-inline' because
// the SPA injects countless style="..." attributes; the XSS impact via CSS is
// negligible compared to the rewrite cost.
// unpkg.com is allowed for Leaflet (admin map only).
header(
    "Content-Security-Policy: "
    . "default-src 'self'; "
    . "script-src 'self' 'nonce-{$GLOBALS['gt_csp_nonce']}' https://js.stripe.com https://unpkg.com; "
    . "style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://unpkg.com; "
    . "font-src 'self' https://fonts.gstatic.com data:; "
    . "img-src 'self' data: https:; "
    . "connect-src 'self' https://api.stripe.com; "
    . "frame-src https://js.stripe.com;"
);

// ── Helper functions ──

function respond($data = null, int $code = 200): void
{
    http_response_code($code);
    header('Content-Type: application/json; charset=utf-8');
    echo json_encode($data, JSON_UNESCAPED_UNICODE);
    exit;
}

function error_response(string $message, int $code = 400): void
{
    http_response_code($code);
    header('Content-Type: application/json; charset=utf-8');
    echo json_encode(['success' => false, 'message' => $message], JSON_UNESCAPED_UNICODE);
    exit;
}

function bad_request(string $msg = 'Bad request'): void { error_response($msg, 400); }
function unauthorized(string $msg = 'Unauthorized'): void { error_response($msg, 401); }
function forbidden(string $msg = 'Forbidden'): void { error_response($msg, 403); }
function not_found(string $msg = 'Not found'): void { error_response($msg, 404); }

function h(?string $val): string
{
    return htmlspecialchars($val ?? '', ENT_QUOTES, 'UTF-8');
}

function csp_nonce(): string
{
    return $GLOBALS['gt_csp_nonce'] ?? '';
}

function require_auth(): array
{
    if (empty($_SESSION['gt_user'])) {
        unauthorized('Please log in');
    }
    return $_SESSION['gt_user'];
}

function require_admin(): array
{
    $user = require_auth();
    if ($user['role'] !== 'admin') {
        forbidden('Admin access required');
    }
    return $user;
}

function get_pagination(): array
{
    global $params;
    $page = max(1, (int) ($params['page'] ?? 1));
    $limit = min(MAX_PAGE_SIZE, max(1, (int) ($params['limit'] ?? DEFAULT_PAGE_SIZE)));
    return [$page, $limit];
}

function get_lang(): string
{
    $lang = $_SESSION['gt_user']['lang'] ?? $_SESSION['gt_lang'] ?? 'fr';
    return Sanitize::lang($lang);
}

/**
 * Returns the set of all valid first-level URL slugs across FR/EN/IT
 * (translated routes from assets/js/langs/*.json).
 * Used by index.php to send a real HTTP 404 for unknown routes.
 */
function get_valid_route_slugs(): array
{
    static $slugs = null;
    if ($slugs !== null) return $slugs;

    $slugs = [''];  // root "/" = home
    foreach (['fr', 'en', 'it'] as $lang) {
        $file = __DIR__ . '/assets/js/langs/' . $lang . '.json';
        if (!file_exists($file)) continue;
        $data = json_decode((string) file_get_contents($file), true);
        if (!empty($data['routes']) && is_array($data['routes'])) {
            foreach ($data['routes'] as $slug) {
                $slugs[] = $slug;
            }
        }
    }
    $slugs = array_values(array_unique($slugs));
    return $slugs;
}
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xhtml="http://www.w3.org/1999/xhtml">
  <url>
    <loc>https://gtiramisu.com/</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/carte</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/carte" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/menu" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/menu" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/carte" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/menu</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/carte" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/menu" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/menu" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/carte" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/menu</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/carte" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/menu" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/menu" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/carte" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/nos-gouts</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/nos-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/flavors" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/i-nostri-gusti" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/nos-gouts" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/flavors</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/nos-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/flavors" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/i-nostri-gusti" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/nos-gouts" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/i-nostri-gusti</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/nos-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/flavors" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/i-nostri-gusti" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/nos-gouts" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/notre-histoire</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/notre-histoire" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/our-story" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/la-nostra-storia" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/notre-histoire" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/our-story</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/notre-histoire" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/our-story" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/la-nostra-storia" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/notre-histoire" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/la-nostra-storia</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/notre-histoire" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/our-story" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/la-nostra-storia" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/notre-histoire" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/livre-d-or</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/livre-d-or" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/guestbook" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/libro-d-oro" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/livre-d-or" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.6</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/guestbook</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/livre-d-or" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/guestbook" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/libro-d-oro" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/livre-d-or" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.6</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/libro-d-oro</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/livre-d-or" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/guestbook" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/libro-d-oro" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/livre-d-or" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.6</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/faq</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/faq" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/faq" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/faq" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/faq" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/faq</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/faq" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/faq" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/faq" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/faq" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/faq</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/faq" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/faq" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/faq" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/faq" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/contact</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/contact" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/contact" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/contatti" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/contact" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/contact</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/contact" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/contact" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/contatti" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/contact" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/contatti</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/contact" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/contact" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/contatti" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/contact" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/mentions-legales</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/mentions-legales" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/legal" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/note-legali" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/mentions-legales" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/legal</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/mentions-legales" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/legal" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/note-legali" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/mentions-legales" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/note-legali</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/mentions-legales" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/legal" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/note-legali" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/mentions-legales" />
    <lastmod>2026-05-10</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/coffret-8-gouts</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/coffret-8-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/coffret-8-gouts" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/coffret-8-gouts" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/coffret-8-gouts" />
    <lastmod>2026-03-15</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/coffret-8-gouts</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/coffret-8-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/coffret-8-gouts" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/coffret-8-gouts" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/coffret-8-gouts" />
    <lastmod>2026-03-15</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/coffret-8-gouts</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/coffret-8-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/coffret-8-gouts" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/coffret-8-gouts" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/coffret-8-gouts" />
    <lastmod>2026-03-15</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/coffret-4-gouts</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/coffret-4-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/coffret-4-gouts" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/coffret-4-gouts" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/coffret-4-gouts" />
    <lastmod>2026-03-15</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/coffret-4-gouts</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/coffret-4-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/coffret-4-gouts" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/coffret-4-gouts" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/coffret-4-gouts" />
    <lastmod>2026-03-15</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/coffret-4-gouts</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/coffret-4-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/coffret-4-gouts" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/coffret-4-gouts" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/coffret-4-gouts" />
    <lastmod>2026-03-15</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/coffret-6-gouts</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/coffret-6-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/coffret-6-gouts" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/coffret-6-gouts" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/coffret-6-gouts" />
    <lastmod>2026-03-15</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/coffret-6-gouts</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/coffret-6-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/coffret-6-gouts" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/coffret-6-gouts" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/coffret-6-gouts" />
    <lastmod>2026-03-15</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/coffret-6-gouts</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/coffret-6-gouts" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/coffret-6-gouts" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/coffret-6-gouts" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/coffret-6-gouts" />
    <lastmod>2026-03-15</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/delizia-del-momento</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/delizia-del-momento" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/delizia-del-momento" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/delizia-del-momento" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/delizia-del-momento" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/delizia-del-momento</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/delizia-del-momento" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/delizia-del-momento" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/delizia-del-momento" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/delizia-del-momento" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/delizia-del-momento</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/delizia-del-momento" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/delizia-del-momento" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/delizia-del-momento" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/delizia-del-momento" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/framboise</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/framboise" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/framboise" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/framboise" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/framboise" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/framboise</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/framboise" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/framboise" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/framboise" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/framboise" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/framboise</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/framboise" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/framboise" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/framboise" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/framboise" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/feve-tonka</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/feve-tonka" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/feve-tonka" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/feve-tonka" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/feve-tonka" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/feve-tonka</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/feve-tonka" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/feve-tonka" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/feve-tonka" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/feve-tonka" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/feve-tonka</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/feve-tonka" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/feve-tonka" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/feve-tonka" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/feve-tonka" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/creme-marron</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/creme-marron" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/creme-marron" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/creme-marron" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/creme-marron" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/creme-marron</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/creme-marron" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/creme-marron" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/creme-marron" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/creme-marron" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/creme-marron</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/creme-marron" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/creme-marron" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/creme-marron" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/creme-marron" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/beurre-cacahuete</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/beurre-cacahuete" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/beurre-cacahuete" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/beurre-cacahuete" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/beurre-cacahuete" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/beurre-cacahuete</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/beurre-cacahuete" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/beurre-cacahuete" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/beurre-cacahuete" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/beurre-cacahuete" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/beurre-cacahuete</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/beurre-cacahuete" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/beurre-cacahuete" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/beurre-cacahuete" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/beurre-cacahuete" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/classico</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/classico" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/classico" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/classico" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/classico" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/classico</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/classico" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/classico" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/classico" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/classico" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/classico</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/classico" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/classico" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/classico" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/classico" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/citron</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/citron" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/citron" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/citron" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/citron" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/citron</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/citron" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/citron" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/citron" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/citron" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/citron</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/citron" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/citron" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/citron" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/citron" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/cafe</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/cafe" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/cafe" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/cafe" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/cafe" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/cafe</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/cafe" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/cafe" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/cafe" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/cafe" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/cafe</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/cafe" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/cafe" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/cafe" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/cafe" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/produit/pistache</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/pistache" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/pistache" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/pistache" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/pistache" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/product/pistache</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/pistache" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/pistache" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/pistache" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/pistache" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://gtiramisu.com/prodotto/pistache</loc>
    <xhtml:link rel="alternate" hreflang="fr" href="https://gtiramisu.com/produit/pistache" />
    <xhtml:link rel="alternate" hreflang="en" href="https://gtiramisu.com/product/pistache" />
    <xhtml:link rel="alternate" hreflang="it" href="https://gtiramisu.com/prodotto/pistache" />
    <xhtml:link rel="alternate" hreflang="x-default" href="https://gtiramisu.com/produit/pistache" />
    <lastmod>2026-03-04</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>
