// ============================================================
// SERVICE MENU — EDIT THIS BLOCK ONLY
// Menus differ per salon. Prices are member prices.
// cat: 'silk' | 'blow' | 'treat'   (drives the category filter tabs)
// Client to confirm the featured selection; add or remove rows freely.
// ============================================================
const MENU = {
  lawrenceville: [
    { id: 'lv-dirty-tini', cat: 'silk', name: 'Dirty Tini', price: 85, time: '1 hr 15 min', desc: 'A silk press with a soft feathered finish — smooth through the ends, movement left in.' },
    { id: 'lv-old-fashioned', cat: 'silk', name: 'Old Fashioned', price: 90, time: '1 hr 30 min', desc: 'Body curls set into the press. Classic, full, and built to hold for days.' },
    { id: 'lv-lemon-drop', cat: 'silk', name: 'Lemon Drop', price: 90, time: '1 hr 30 min', desc: 'Beach waves — loose, lived-in bends with a clean silk finish underneath.', tag: 'Beach waves' },
    { id: 'lv-kurlarita', cat: 'silk', name: 'Kurlarita', price: 99, time: '1 hr 30 min', desc: 'Tight curls, defined and springy, set with low heat so nothing is sacrificed.', tag: 'Tight curls' },
    { id: 'lv-round-brush', cat: 'blow', name: 'Round-brush Technique', price: 80, time: '30 min', desc: 'A round-brush blowout for lift at the root and a polished, swingy finish.' },
    { id: 'lv-round-brush-styling', cat: 'blow', name: 'Round-brush with Styling', price: 90, time: '1 hr', desc: 'The round-brush blowout, finished with the style of your choosing.' },
    { id: 'lv-steam', cat: 'treat', name: 'Steam Treatment', price: 35, time: '15 min', desc: 'Warm steam to open the cuticle and drive moisture in before your service.' },
    { id: 'lv-amino', cat: 'treat', name: 'Amino Acid Smoothing Treatment', price: 249, time: '3 hr', desc: 'A smoothing treatment that relaxes frizz and cuts your styling time for months.' },
  ],
  eastpoint: [
    { id: 'ep-top-shelf', cat: 'silk', name: 'Top Shelf Experience', price: 149, time: '1 hr 30 min', desc: 'For first-time clients — a full consultation, the press, and time to get your hair right.', tag: 'First-time clients', tagTone: 'gold' },
    { id: 'ep-presstini', cat: 'silk', name: 'Presstini', price: 85, time: '1 hr 15 min', desc: 'Straight with a slight bend at the ends. The everyday press, done properly.', tag: 'Slight bend' },
    { id: 'ep-dirty-tini', cat: 'silk', name: 'Dirty Tini', price: 85, time: '1 hr 15 min', desc: 'The feathered look — smooth with soft separation through the length.', tag: 'Feathered' },
    { id: 'ep-old-fashioned', cat: 'silk', name: 'Old Fashioned', price: 90, time: '1 hr 30 min', desc: 'Body curls set into the press. Classic, full, and built to hold for days.', tag: 'Body curls' },
    { id: 'ep-kurlarita', cat: 'silk', name: 'Kurlarita', price: 99, time: '1 hr 30 min', desc: 'Tight curls, defined and springy, set with low heat so nothing is sacrificed.', tag: 'Tight curls' },
    { id: 'ep-round-brush', cat: 'blow', name: 'Round-brush Technique', price: 80, time: '1 hr', desc: 'A round-brush blowout for lift at the root and a polished, swingy finish.' },
    { id: 'ep-twistarita', cat: 'silk', name: 'Twistarita (L)', price: 85, time: '1 hr', desc: 'Twists set and unravelled for texture with a soft, hydrated finish.' },
    { id: 'ep-amino', cat: 'treat', name: 'Amino Acid Smoothing Treatment', price: 250, time: '2 hr 30 min', desc: 'A smoothing treatment that relaxes frizz and cuts your styling time for months.' },
  ],
};
// ============================================================
// END SERVICE MENU
// ============================================================

const MENU_FILTERS = [
  { id: 'all', label: 'All' },
  { id: 'silk', label: 'Silk Press' },
  { id: 'blow', label: 'Blow Out' },
  { id: 'treat', label: 'Treatments' },
];

Object.assign(window, { MENU, MENU_FILTERS });
