// Product catalog and shared content
const PRODUCTS = [
  {
    id: "holy-dust",
    num: "01",
    name: "Holy Dust",
    translation: "Debu Suci",
    family: "Gourmand",
    collection: "Signature",
    mood: ["Sacred", "Warm", "Soft"],
    price: 420000,
    blurb: "Something ancient and sweet. The warmth of a room where incense has been burning all afternoon.",
    notes: {
      top: ["Oriental Vanilla"],
      middle: ["Strawberry"],
      base: ["Musk", "Vanilla"],
    },
    year: 2024,
    volume: "30ml EDP",
  },
  {
    id: "land-of-the-sun",
    num: "02",
    name: "Land of The Sun",
    translation: "Tanah Matahari",
    family: "Fruity",
    collection: "Signature",
    mood: ["Golden", "Abundant", "Midday"],
    price: 460000,
    blurb: "Sunlit orchard at noon. Layers of fruit, wood, and honey that shift through the day like light through leaves.",
    notes: {
      top: ["Plum", "Grapefruit", "Bergamot"],
      middle: ["Hazelnut", "Cedar", "Wood", "Jasmine", "Honey", "Orange"],
      base: ["Patchouli", "Oak", "Vetiver", "Amberwood"],
    },
    year: 2024,
    volume: "30ml EDP",
  },
  {
    id: "eves-garden",
    num: "03",
    name: "Eve's Garden",
    translation: "Taman Hawa",
    family: "Green",
    collection: "Signature",
    mood: ["Wild", "Dark Floral", "Earthy"],
    price: 440000,
    blurb: "Dark thorns, soft petals. Blackberry and rose on earthen ground, beautiful and a little dangerous.",
    notes: {
      top: ["Blackberry", "Pink Pepper"],
      middle: ["Vetiver", "Rose", "Wood"],
      base: ["Amber", "Patchouli"],
    },
    year: 2024,
    volume: "30ml EDP",
  },
  {
    id: "moon-drops",
    num: "04",
    name: "Moon Drops",
    translation: "Tetes Bulan",
    family: "Dark Floral",
    collection: "Reserve",
    mood: ["Nocturnal", "Romantic", "Deep"],
    price: 480000,
    blurb: "Night air and ancient roses. Oud and damask pressed into something that stays on skin until morning.",
    notes: {
      top: ["Damask Rose", "Oud"],
      middle: ["Praline"],
      base: ["Clove"],
    },
    year: 2025,
    volume: "30ml EDP",
  },
  {
    id: "enchantrees",
    num: "05",
    name: "Enchantrees",
    translation: "Pesona Pohon",
    family: "Spicy",
    collection: "Reserve",
    mood: ["Warm", "Spiced", "Evening"],
    price: 450000,
    blurb: "Spiced orange kitchen warmth. Coffee at midnight, cedar on your coat, bitter almond in the air.",
    notes: {
      top: ["Cinnamon", "Orange", "Vanilla"],
      middle: ["Jasmine", "Patchouli", "Bitter Almond"],
      base: ["Coffee", "Cedar"],
    },
    year: 2025,
    volume: "30ml EDP",
  },
  {
    id: "chaerry",
    num: "07",
    name: "Chaerry",
    translation: "Ceri",
    family: "Gourmand",
    collection: "Reserve",
    mood: ["Playful", "Sweet", "Feminine"],
    price: 440000,
    blurb: "Ripe cherry and white flowers. Soft, sweet, and unexpectedly addictive — the kind of scent that lingers long after you've left the room.",
    notes: {
      top: ["Sweet Cherry", "Orange Blossom", "Vanilla"],
      middle: ["Jasmine", "Tuberose"],
      base: ["Almond", "Tonka Bean", "Musk"],
    },
    year: 2025,
    volume: "30ml EDP",
  },
  {
    id: "discovery-set",
    num: "06",
    name: "Discovery Set",
    translation: "Set Penemuan",
    family: "Floral",
    collection: "Discovery",
    mood: ["Explore", "Sample", "Begin"],
    price: 280000,
    blurb: "Three stories in miniature. Holy Dust, Land of The Sun, and Eve's Garden, 5ml each to find your first third.",
    notes: {
      top: ["Holy Dust: Oriental Vanilla", "Land of The Sun: Plum, Grapefruit, Bergamot", "Eve's Garden: Blackberry, Pink Pepper"],
      middle: ["Holy Dust: Strawberry", "Land of The Sun: Hazelnut, Jasmine, Honey, Cedar", "Eve's Garden: Rose, Vetiver, Wood"],
      base: ["Holy Dust: Musk, Vanilla", "Land of The Sun: Patchouli, Oak, Vetiver, Amberwood", "Eve's Garden: Amber, Patchouli"],
    },
    year: 2025,
    volume: "3 × 5ml EDP",
  },
];

const FAMILIES = ["All", "Gourmand", "Sweet", "Fruity", "Woody", "Green", "Dark Floral", "Spicy", "Floral"];
const COLLECTIONS = ["All", "Signature", "Discovery", "Reserve"];

const STORES = [
  {
    name: "Larusso",
    locations: [
      { city: "Jakarta", area: "Senopati", hours: "Mon–Sun · 10:00–22:00", note: "Full collection, sampling available." },
      { city: "Lampung", area: "Kedaton, Bandar Lampung", hours: "Mon–Sat · 11:00–21:00", note: "Signature collection." },
      { city: "Sidoarjo", area: "Raya Jenggolo", hours: "Tue–Sun · 11:00–21:00", note: "Signature collection." },
    ],
  },
  {
    name: "Tomorrow",
    locations: [
      { city: "Bandung", area: "Dago Atas", hours: "Tue–Sun · 11:00–20:00", note: "Curated selection, rotating." },
    ],
  },
  {
    name: "Muku",
    locations: [
      { city: "Bali", area: "Canggu, Berawa", hours: "Mon–Sun · 09:00–21:00", note: "Full collection, exclusive miniatures." },
    ],
  },
  {
    name: "K3 Mart",
    locations: [
      { city: "Yogyakarta", area: "Prawirotaman", hours: "Mon–Sat · 12:00–22:00", note: "Signature collection only." },
    ],
  },
];

window.PRODUCTS = PRODUCTS;
window.FAMILIES = FAMILIES;
window.COLLECTIONS = COLLECTIONS;
window.STORES = STORES;

const formatIDR = (n) => "Rp " + n.toLocaleString("id-ID");
window.formatIDR = formatIDR;
