/* ── Product & Scent Data for Candescent Cinders Studio ── */
/* Products loaded from products.json (source of truth for the listing pipeline) */

const _xhr = new XMLHttpRequest();
_xhr.open('GET', 'products.json', false);
_xhr.send();
const PRODUCTS = JSON.parse(_xhr.responseText);

const CATEGORIES = [
  { id: 'all',        label: 'All' },
  { id: 'candles',    label: 'Candles' },
  { id: 'soaps',      label: 'Soaps' },
  { id: 'jesmonite',  label: 'Jesmonite' },
  { id: 'molds',      label: 'Molds' },
  { id: '3d-printed', label: '3D Printed' },
];

const SCENTS = [
  { name: 'Unscented', type: 'single', notes: 'Pure soy wax, no fragrance' },
  { name: 'Lavender', type: 'single', notes: 'Calming French lavender' },
  { name: 'Vanilla', type: 'single', notes: 'Warm Madagascar vanilla' },
  { name: 'Sandalwood', type: 'single', notes: 'Rich, creamy woodiness' },
  { name: 'Rose', type: 'single', notes: 'Classic damask rose' },
  { name: 'Jasmine', type: 'single', notes: 'Intoxicating white floral' },
  { name: 'Bergamot', type: 'single', notes: 'Bright Italian citrus' },
  { name: 'Peaceful Evening', type: 'blend', notes: 'Myrrh · Sandalwood · Lavender' },
  { name: 'Sweet Night', type: 'blend', notes: 'Juniper · Bergamot · Vetiver · Copaiba' },
  { name: 'Sweetest Musk', type: 'blend', notes: 'Ylang Ylang · Sandalwood · Vanilla' },
  { name: 'Inner Peace', type: 'blend', notes: 'Chamomile · Lavender · Vetiver · Cedarwood' },
  { name: 'Forest Romance', type: 'blend', notes: 'Sandalwood · Cypress · Patchouli · Bergamot' },
];

const COLOR_SWATCHES = {
  'Ivory':      '#F5F0E8',
  'Blush':      '#E8C4C4',
  'Dusty Rose': '#C9A0A0',
  'Burgundy':   '#72383D',
  'Red':        '#8B0000',
  'Sage':       '#A8B5A0',
  'Moss':       '#6B7B5E',
  'Charcoal':   '#3A3A3A',
  'Noir':       '#1a1614',
  'Cream':      '#F5F0E8',
  'Sand':       '#D1C7BD',
  'Slate':      '#8A8A8A',
  'Natural':    '#E8DDD0',
  'Terracotta': '#C67B5C',
  'Gold':       '#A4863D',
  'Mustard':    '#C9A84C',
  'White':      '#FAFAF7',
  'Lavender':   '#C9C0D9',
  'Peach':      '#E8C4A8',
};

window.PRODUCTS = PRODUCTS;
window.CATEGORIES = CATEGORIES;
window.SCENTS = SCENTS;
window.COLOR_SWATCHES = COLOR_SWATCHES;
