// v3 — extends v2 data with louder copy

const V3_HERO_WORDS = ["pop.", "snap.", "melt.", "crunch."];

const V3_MARQUEE_TEXT = [
  "Snacks people actually want",
  "Halal certified",
  "Six markets across GCC + Levant",
  "Cold + dry chain",
  "ISO 22000",
  "Retail-ready",
  "Curated, not catalogued",
];

const V3_MARQUEE_BIG = [
  { t: "Snacks", it: false },
  { t: "people", it: true },
  { t: "actually", it: false },
  { t: "want.", it: true },
  { t: "Made loud.", it: false },
  { t: "Sold proud.", it: true },
];

const V3_MANIFESTO = {
  eyebrow: "FMCG · EST. 2021 · KUWAIT",
  heading: ["Loud", "snacks.", "Quiet", { it: "logistics." }],
  body: [
    "TULEEN IS A KUWAIT-BASED DISTRIBUTOR. We pick brands like a buyer picks ripe fruit — by hand, by season, by feel.",
    "We back the ones with shelf-presence and pantry-staying-power. Sugarless. O My Pop. Popsmalaya. And the next ones we're cooking up.",
    "Six markets. Real warehouses. Honest people answering the phone.",
  ],
  pulls: [
    { n: "15+", l: "Years in FMCG" },
    { n: "12M+", l: "Units / year" },
    { n: "40+", l: "Retail chains" },
    { n: "6", l: "Live markets" },
  ],
};

// Pick 3 SKUs per brand for sticky stacks
const V3_STACK_BRANDS = [
  {
    key: "sugarless",
    color: "purple",
    num: "01",
    name: ["No sugar.", { it: "All flavor." }],
    tag: "99.9% sugar-free chocolate, jellies, gums and hard-boiled candies — sweetened with stevia and real fruit.",
    chips: ["Stevia-sweetened", "Halal", "60+ SKUs"],
    tiles: [
      "assets/products/sugarless-besmart.jpeg",
      "assets/products/sugarless-charming-snakes.jpeg",
      "assets/products/sugarless-dark-almonds.jpeg",
      "assets/products/sugarless-hardboiled-espresso.jpeg",
      "assets/products/sugarless-strawberry-cream-bar.jpeg",
    ],
    cta: "See all Sugarless",
  },
  {
    key: "omypop",
    color: "coral",
    num: "02",
    name: ["Happiness", "in every", { it: "pop." }],
    tag: "Gourmet popcorn — thinly and evenly coated. Six bold flavors, premium tubes, 70g of pure snacking joy.",
    chips: ["6 flavors", "70g tubes", "Non-GMO"],
    tiles: [
      "assets/products/omypop-caramel.jpeg",
      "assets/products/omypop-cocoa.jpeg",
      "assets/products/omypop-cheese.jpeg",
      "assets/products/omypop-bbq.jpeg",
      "assets/products/omypop-tomato.jpeg",
      "assets/products/omypop-sourcream.jpeg",
    ],
    cta: "See all O My Pop",
  },
  {
    key: "popsmalaya",
    color: "mustard",
    num: "03",
    name: ["Freeze.", { it: "Snap." }, "Done."],
    tag: "Freeze-at-home sorbet bars. 100% fruit juice and puree. The popsicle that lives in your pantry.",
    chips: ["Vegan", "All-natural", "12-packs"],
    tiles: [
      "assets/products/popsmalaya-variety.jpeg",
      "assets/products/popsmalaya-strawberry.jpeg",
      "assets/products/popsmalaya-mango.jpeg",
      "assets/products/popsmalaya-passionfruit.jpeg",
      "assets/products/popsmalaya-pink-guava.jpeg",
    ],
    cta: "See all Popsmalaya",
  },
];

const V3_PROD_MARQUEE_IMAGES = [
  "assets/products/sugarless-besmart.jpeg",
  "assets/products/omypop-caramel.jpeg",
  "assets/products/popsmalaya-mango.jpeg",
  "assets/products/sugarless-charming-snakes.jpeg",
  "assets/products/omypop-cheese.jpeg",
  "assets/products/popsmalaya-strawberry.jpeg",
  "assets/products/sugarless-dark-almonds.jpeg",
  "assets/products/omypop-cocoa.jpeg",
  "assets/products/popsmalaya-passionfruit.jpeg",
  "assets/products/sugarless-hardboiled-espresso.jpeg",
  "assets/products/omypop-bbq.jpeg",
  "assets/products/popsmalaya-pink-guava.jpeg",
  "assets/products/sugarless-strawberry-cream-bar.jpeg",
  "assets/products/omypop-tomato.jpeg",
  "assets/products/popsmalaya-variety.jpeg",
  "assets/products/sugarless-praline.jpeg",
];

Object.assign(window, {
  V3_HERO_WORDS, V3_MARQUEE_TEXT, V3_MARQUEE_BIG,
  V3_MANIFESTO, V3_STACK_BRANDS, V3_PROD_MARQUEE_IMAGES,
});
