// The Apéro Garden — catalog source of truth
// ----------------------------------------------------------------------------
// Previously this file hard-coded the product list. We now fetch from the
// Shopify Storefront API (see shopify.js + App.jsx's boot effect). This file
// only declares default placeholders so the rest of the app can boot before
// `window.PRODUCTS` is populated from the network. Once the fetch resolves,
// App.jsx replaces both globals with the live values.
window.PRODUCTS = [];
window.CATEGORIES = ["Alle"];
