// Product catalog — three wands + lubricant. Each carries a theme + photography.
const PRODUCTS = [
  {
    id: 'aura',
    name: 'Aura',
    tagline: 'Wearable',
    subtitle: 'Discreet companion',
    price: 129,
    theme: 'champagne',
    color: 'Champagne Beige',
    image: 'assets/wand-aura.jpg',
    boxImage: 'assets/box-champagne-open.jpg',
    description: 'A quiet companion, shaped to fit you. Six whisper-soft modes. Made to be forgotten until you remember.',
    specs: [
      { label: 'Modes',     value: 'Six rumble patterns' },
      { label: 'Material',  value: 'Body-safe medical silicone' },
      { label: 'Battery',   value: '90 minutes, USB-C' },
      { label: 'Sound',     value: '< 35 dB whisper-quiet' },
    ],
    features: ['Whisper Mode', 'App-paired', 'Waterproof IPX7'],
  },
  {
    id: 'nova',
    name: 'Nova',
    tagline: 'Dual Stimulation',
    subtitle: 'Twin rhythm',
    price: 149,
    theme: 'onyx',
    color: 'Matte Onyx',
    image: 'assets/wand-nova.jpg',
    boxImage: 'assets/box-champagne-tray.jpg',
    description: 'Two motors. Independent rhythms. A duet of sensuality.',
    specs: [
      { label: 'Motors',    value: 'Dual independent' },
      { label: 'Material',  value: 'Body-safe medical silicone' },
      { label: 'Battery',   value: '120 minutes, USB-C' },
      { label: 'Finish',    value: 'Matte black soft-touch' },
    ],
    features: ['Dual motors', 'Memory mode', 'Waterproof IPX7'],
  },
  {
    id: 'ember',
    name: 'Ember',
    tagline: 'Wand Massager',
    subtitle: 'Deep release',
    price: 119,
    theme: 'terracotta',
    color: 'Terracotta',
    image: 'assets/wand-terracotta.jpg',
    boxImage: 'assets/box-terracotta-open.jpg',
    description: 'Powerful relief, distilled. Deep, rumbly vibrations that melt tension into a quiet, knowing warmth.',
    specs: [
      { label: 'Power',     value: '8,000 RPM peak' },
      { label: 'Material',  value: 'Body-safe medical silicone' },
      { label: 'Battery',   value: '180 minutes, USB-C' },
      { label: 'Finish',    value: 'Terracotta velvet-touch' },
    ],
    features: ['Deep rumble', 'Heated tip', 'Waterproof IPX7'],
  },
  {
    id: 'serum',
    name: 'Intimate Serum',
    tagline: 'Luxury Lubricant',
    subtitle: '80ml · 2.7 fl oz',
    price: 48,
    theme: 'onyx',
    color: 'Smoky Champagne',
    image: 'assets/serum-bottle.jpg',
    boxImage: 'assets/serum-pair.jpg',
    description: 'Silky, long-lasting hydration. pH balanced, paraben-free, fragrance-free. The finishing touch to every ritual.',
    specs: [
      { label: 'Volume',    value: '80ml / 2.7 fl oz' },
      { label: 'Base',      value: 'Water-based, body-safe' },
      { label: 'Free of',   value: 'Parabens, glycerin, fragrance' },
      { label: 'pH',        value: 'Balanced for intimate wellness' },
    ],
    features: ['pH balanced', 'Paraben-free', 'Glycerin-free'],
  },
];

window.PRODUCTS = PRODUCTS;
