// IndustriesData.jsx — single source of truth for the industry playbooks.
// Consumed by IndustriesPage.jsx (the /solutions overview) and
// IndustryDetail.jsx (the per-vertical /solutions/<id> pages).
window.LD_INDUSTRIES = [
  {
    id: "florists",
    icon: "🌸",
    tone: "#FCE9EE",
    ink: "#7B1F3A",
    name: "Florists",
    lead: "Same-day flowers, but for real.",
    body: "Same-day delivery is a real edge against the big-box flower sites. Local Delivery Premium handles tight 1-hour windows so bouquets arrive fresh, on the day that matters.",
    defaults: [
      { l: "Slot length", v: "1-hour windows" },
      { l: "Prep time", v: "3-hour buffer" },
      { l: "Order deadline", v: "Same-day stops at 2pm" },
      { l: "Order limit", v: "By order count" },
    ],
    pull: { v: "Same-day", l: "Your competitive edge" },
  },
  {
    id: "food",
    icon: "🥗",
    tone: "#EAF4D8",
    ink: "#3D6020",
    name: "Food + meal kits",
    lead: "Built for the freezer chain.",
    body: "Cold-chain friendly. Set per-product order deadlines (chilled vs frozen), batch by suburb, and hide tomorrow's slots when you're full. Customers see the slots they can actually have — not vague delivery promises.",
    defaults: [
      { l: "Slot length", v: "2-hour windows" },
      { l: "Prep time", v: "12-hour buffer" },
      { l: "Order deadline", v: "Per-product (chilled vs frozen)" },
      { l: "Order limit", v: "By prep time" },
    ],
    pull: { v: "Cold-chain", l: "Freezer-friendly slots" },
  },
  {
    id: "wine",
    icon: "🍷",
    tone: "#F3E1E1",
    ink: "#7A2531",
    name: "Wine + alcohol",
    lead: "Delivered when someone’s home.",
    body: "Age-restricted orders need someone there to receive them. Give customers a real delivery window so the handover actually happens — fewer missed drops and redeliveries. Set next-day defaults and clear order deadlines for each area.",
    defaults: [
      { l: "Slot length", v: "2-hour windows" },
      { l: "Prep time", v: "Next-day default" },
      { l: "Order deadline", v: "Set per area" },
      { l: "Order limit", v: "By order count" },
    ],
    pull: { v: "Next-day", l: "Windows someone’s home for" },
  },
  {
    id: "grocery",
    icon: "🥑",
    tone: "#EAF3EA",
    ink: "#234D2A",
    name: "Grocery + pantry",
    lead: "Subscription delivery, without the spreadsheet.",
    body: "Drive denser routes with order limits per delivery area. Subscribers re-up automatically with their preferred slot, so regular orders run themselves.",
    defaults: [
      { l: "Slot length", v: "4-hour or all-day" },
      { l: "Prep time", v: "Next-day default" },
      { l: "Order deadline", v: "5pm previous day" },
      { l: "Order limit", v: "By box-size" },
    ],
    pull: { v: "Hands-off", l: "Subscriptions on autopilot" },
  },
  {
    id: "furniture",
    icon: "🛋",
    tone: "#F0E9DF",
    ink: "#5A3A1F",
    name: "Furniture + bulky",
    lead: "Two-person delivery, sized right.",
    body: "Some orders need two people and a van. Some need the lift. Local Delivery Premium's per-product delivery rules let you sell only what you can actually fulfil — and the customer sees a real two-hour window, not a vague 'between 8am and 6pm'.",
    defaults: [
      { l: "Slot length", v: "2 or 4-hour windows" },
      { l: "Prep time", v: "3-day buffer" },
      { l: "Product rule", v: "Set per item" },
      { l: "Order limit", v: "By job count" },
    ],
    pull: { v: "Right-sized", l: "Two-person delivery rules" },
  },
  {
    id: "pharmacy",
    icon: "💊",
    tone: "#E2EEF7",
    ink: "#1F4A6E",
    name: "Pharmacy + health",
    lead: "Discreet, priority, cold-chain.",
    body: "Priority routing, discreet packaging notes, and tight delivery windows. Refill subscriptions surface only matching slots, so refills are easier to schedule on time.",
    defaults: [
      { l: "Slot length", v: "2-hour priority" },
      { l: "Prep time", v: "Same-day" },
      { l: "Order deadline", v: "Same-day priority" },
      { l: "Notes", v: "Discreet packaging" },
    ],
    pull: { v: "Discreet", l: "Priority + cold-chain" },
  },
];
