/* ============================================================
   Content data — products & services
   ============================================================ */

const PRODUCTS = [
  {
    id: 'turmeric-soap', name: 'Turmeric Glow Soap', tone: 'gold',
    tagline: 'Brightening · Even tone',
    price: 16, cat: 'Cleanse',
    desc: 'Cold-pressed turmeric and raw shea lather that brightens, calms blemishes and leaves skin luminous.',
    ingredients: ['Turmeric', 'Raw shea butter', 'Coconut oil', 'Honey'],
  },
  {
    id: 'coffee-soap', name: 'Ethiopian Coffee Soap', tone: 'cocoa',
    tagline: 'Exfoliating · Firming',
    price: 16, cat: 'Cleanse',
    desc: 'Ground Ethiopian coffee gently exfoliates and revives circulation — a wake-up ritual for the whole body.',
    ingredients: ['Ground coffee', 'Cocoa butter', 'Mango butter', 'Vanilla'],
  },
  {
    id: 'face-serum', name: 'Botanical Face Serum', tone: 'olive',
    tagline: 'Hydrating · Renewing',
    price: 42, cat: 'Treat',
    desc: 'A weightless herbal-oil serum that drinks into skin, restoring suppleness and a quiet, lit-from-within glow.',
    ingredients: ['Marula oil', 'Rosehip', 'Frankincense', 'Vitamin E'],
  },
  {
    id: 'face-cream', name: 'Restorative Face Cream', tone: 'clay',
    tagline: 'Nourishing · Plumping',
    price: 38, cat: 'Treat',
    desc: 'Whipped mango butter and botanical extracts seal in moisture for soft, replenished, resilient skin.',
    ingredients: ['Mango butter', 'Aloe', 'Calendula', 'Shea'],
  },
  {
    id: 'body-butter', name: 'Whipped Body Butter', tone: '',
    tagline: 'Deep moisture · Silken',
    price: 32, cat: 'Body',
    desc: 'Cloud-soft shea and cocoa whip that melts on contact, wrapping skin in lasting, fragrant moisture.',
    ingredients: ['Shea butter', 'Cocoa butter', 'Sweet almond', 'Herbal oils'],
  },
  {
    id: 'body-scrub', name: 'Herbal Body Scrub', tone: 'clay',
    tagline: 'Polishing · Detoxifying',
    price: 28, cat: 'Body',
    desc: 'Mineral salts and botanical grounds buff away dullness, revealing smooth, awakened, glowing skin.',
    ingredients: ['Sea salt', 'Coffee grounds', 'Botanical oils', 'Eucalyptus'],
  },
  {
    id: 'hair-oil', name: 'Herbal Hair Oil', tone: 'olive',
    tagline: 'Strengthening · Shine',
    price: 34, cat: 'Hair',
    desc: 'A traditional herbal infusion that nourishes the scalp, strengthens strands and brings back natural shine.',
    ingredients: ['Black seed oil', 'Castor oil', 'Rosemary', 'Fenugreek'],
  },
];

const SERVICES = [
  {
    id: 'weyba-signature', name: 'Weyba Tish Signature Ritual', duration: '75 min', price: 140,
    desc: 'The full traditional Yoni smoke ceremony — herbal steam, guided rest and restoration. Our heart offering.',
    tone: 'cocoa',
  },
  {
    id: 'weyba-intro', name: 'Weyba Tish Introductory Session', duration: '45 min', price: 90,
    desc: 'A first invitation to the ritual, with consultation and a gentle herbal smoke cleanse.',
    tone: 'clay',
  },
  {
    id: 'glow-facial', name: 'E Glow Beauty Botanical Facial', duration: '60 min', price: 110,
    desc: 'A deep-cleansing facial using our turmeric, serum and cream line for a radiant finish.',
    tone: 'gold',
  },
  {
    id: 'body-ritual', name: 'Full-Body Glow Ritual', duration: '90 min', price: 160,
    desc: 'Herbal scrub, warm butter massage and herbal steam — total renewal from head to toe.',
    tone: 'olive',
  },
];

const SERVICE_TIMES = ['10:00', '11:30', '1:00', '2:30', '4:00', '5:30'];

const API_BASE = 'https://eglowbeauty-mailer.shlglow25.workers.dev';

Object.assign(window, { PRODUCTS, SERVICES, SERVICE_TIMES, API_BASE });
