/* ============================================================
   LUMFELL — product & content data
   ============================================================ */

const CATEGORIES = [
  { id: "wallets",     name: "Wallets",      tag: "Wallets category — flat-lay",          tone: ["#3a2c1f", "#211710"] },
  { id: "cardholders", name: "Card Holders", tag: "Card holders — front detail",          tone: ["#33271c", "#1b130c"] },
  { id: "travel",      name: "Travel Wallets", tag: "Travel wallet — open passport view", tone: ["#2c2016", "#17100a"] },
  { id: "accessories", name: "Accessories",  tag: "Accessories — key holders & straps",   tone: ["#352a20", "#1d140e"] },
];

const PRODUCTS = [
  {
    id: "p-messenger",
    name: "Fellside Messenger",
    cat: "travel",
    price: 480,
    leather: "Full-grain vegetable-tanned",
    color: "Cognac",
    tag: "Messenger bag — 3/4 hero",
    tone: ["#3a2a1b", "#1a120b"],
    badge: "Best Seller",
    blurb: "A weatherproof companion cut from a single hide, saddle-stitched to outlast its owner.",
    spec: ["Full-grain vegetable-tanned leather", "Solid brass hardware, hand-set", "14\" laptop sleeve, lined", "Adjustable bridle shoulder strap"],
  },
  {
    id: "p-bifold",
    name: "Bifold No. 4",
    cat: "wallets",
    price: 120,
    leather: "Vegetable-tanned calf",
    color: "Espresso",
    tag: "Bifold wallet — open flat-lay",
    tone: ["#2e2217", "#16100a"],
    badge: "Best Seller",
    blurb: "Six card slots and a full-width note pocket, skived thin to keep a low profile.",
    spec: ["Vegetable-tanned calf leather", "Six card slots, two hidden", "Hand-burnished edges", "Ages to a deep patina"],
  },
  {
    id: "p-belt",
    name: "Heritage Belt",
    cat: "accessories",
    price: 145,
    leather: "English bridle leather",
    color: "Chestnut",
    tag: "Leather belt — coiled detail",
    tone: ["#34261a", "#180f09"],
    badge: null,
    blurb: "A single thickness of bridle leather with a hand-cast solid brass buckle.",
    spec: ["English bridle leather, 3.5mm", "Solid brass roller buckle", "Hand-finished beveled edge", "Five adjustment holes"],
  },
  {
    id: "p-keyholder",
    name: "Loop Key Holder",
    cat: "accessories",
    price: 58,
    leather: "Full-grain offcut",
    color: "Tan",
    tag: "Key holder — detail shot",
    tone: ["#3c2e20", "#1c130c"],
    badge: null,
    blurb: "Made from the offcuts of our bags — nothing of the hide goes to waste.",
    spec: ["Full-grain leather offcut", "Antique brass screw rivet", "Holds 4–6 keys", "Each piece one-of-a-kind"],
  },
  {
    id: "p-tote",
    name: "Market Tote",
    cat: "travel",
    price: 395,
    leather: "Oil-tanned full-grain",
    color: "Walnut",
    tag: "Leather tote — standing shot",
    tone: ["#332619", "#190f09"],
    badge: "New",
    blurb: "An unstructured everyday carry that softens and slouches beautifully with use.",
    spec: ["Oil-tanned full-grain leather", "Riveted rolled handles", "Interior slip pocket", "Unlined, raw edge"],
  },
  {
    id: "p-cardcase",
    name: "Slim Card Case",
    cat: "cardholders",
    price: 72,
    leather: "Vegetable-tanned calf",
    color: "Cognac",
    tag: "Card case — front detail",
    tone: ["#382a1d", "#1a120b"],
    badge: "New",
    blurb: "Three slots and a pull-tab — the pared-back essential for a front pocket.",
    spec: ["Vegetable-tanned calf leather", "Three card slots + pull tab", "Hand-stitched in waxed linen", "Slimmest in the collection"],
  },
];

const TESTIMONIALS = [
  { quote: "Three years of daily use and the messenger looks better than the day it arrived. This is the last bag I'll buy.", name: "M. Halloran", meta: "Verified — Fellside Messenger" },
  { quote: "You can feel the hours in it. The stitching is dead straight and the leather smells incredible.", name: "J. Devereux", meta: "Verified — Bifold No. 4" },
];

window.LumData = { CATEGORIES, PRODUCTS, TESTIMONIALS };
