// ─── Catálogo ──────────────────────────────────────────────────────
// 48 piezas únicas, 55€ cada una.

const PRICE = 55;

const ALL_PRODUCTS = [
  { id: 1,  nombre: "Kimono Verbena",      cat: "Vestidos" },
  { id: 2,  nombre: "Conjunto Primavera",  cat: "Conjuntos" },
  { id: 3,  nombre: "Pijama Gatito",       cat: "Pijamas" },
  { id: 4,  nombre: "Marinera Atlántico",  cat: "Conjuntos" },
  { id: 5,  nombre: "Vestido Acuarela",    cat: "Vestidos", vendida: true },
  { id: 6,  nombre: "Falda Cereza",        cat: "Conjuntos" },
  { id: 7,  nombre: "Camisón Margarita",   cat: "Vestidos" },
  { id: 8,  nombre: "Peto Floral",         cat: "Petos" },
  { id: 9,  nombre: "Peto Frambuesa",      cat: "Petos" },
  { id: 10, nombre: "Conjunto Pastel",     cat: "Conjuntos" },
  { id: 11, nombre: "Vestido Liberty",     cat: "Vestidos" },
  { id: 12, nombre: "Vestido Camisero",    cat: "Vestidos" },
  { id: 13, nombre: "Look Safari",         cat: "Conjuntos" },
  { id: 14, nombre: "Peto Animalitos",     cat: "Petos" },
  { id: 15, nombre: "Peto Vaquero",        cat: "Petos" },
  { id: 16, nombre: "Vestido Romántico",   cat: "Vestidos" },
  { id: 17, nombre: "Vestido Encaje",      cat: "Vestidos" },
  { id: 18, nombre: "Mono Flores",         cat: "Conjuntos" },
  { id: 19, nombre: "Bikini Bombón",       cat: "Verano" },
  { id: 20, nombre: "Túnica Playera",      cat: "Verano" },
  { id: 21, nombre: "Vestido Jardín",      cat: "Vestidos" },
  { id: 22, nombre: "Vestido Mariquita",   cat: "Vestidos" },
  { id: 23, nombre: "Vestido Lacito",      cat: "Vestidos" },
  { id: 24, nombre: "Vestido Amapolas",    cat: "Vestidos" },
  { id: 25, nombre: "Marinerita",          cat: "Conjuntos" },
  { id: 26, nombre: "Cárdigan Coral",      cat: "Abrigos" },
  { id: 27, nombre: "Peto Campestre",      cat: "Petos" },
  { id: 28, nombre: "Trench Otoño",        cat: "Abrigos" },
  { id: 29, nombre: "Blusa Topos",         cat: "Conjuntos" },
  { id: 30, nombre: "Falda Rosita",        cat: "Conjuntos" },
  { id: 31, nombre: "Peto Acuarela",       cat: "Petos" },
  { id: 32, nombre: "Tirantes Mostaza",    cat: "Conjuntos" },
  { id: 33, nombre: "Vestido Patito",      cat: "Vestidos" },
  { id: 34, nombre: "Vestido Lino",        cat: "Vestidos" },
  { id: 35, nombre: "Pichi Lazo",          cat: "Vestidos" },
  { id: 36, nombre: "Conjunto Domingo",    cat: "Conjuntos" },
  { id: 37, nombre: "Abrigo Avellana",     cat: "Abrigos" },
  { id: 38, nombre: "Vestido Lacito Azul", cat: "Vestidos" },
  { id: 39, nombre: "Jersey Violetas",     cat: "Punto" },
  { id: 40, nombre: "Vestido Rosa Antiguo",cat: "Vestidos" },
  { id: 41, nombre: "Vestido Caperucita",  cat: "Vestidos" },
  { id: 42, nombre: "Pijama Cerezas",      cat: "Pijamas" },
  { id: 43, nombre: "Vestido Cuento",      cat: "Vestidos" },
  { id: 44, nombre: "Conjunto Black",      cat: "Conjuntos" },
  { id: 45, nombre: "Vestido Bordado",     cat: "Vestidos" },
  { id: 46, nombre: "Saco Portamuñecas",   cat: "Accesorios" },
  { id: 47, nombre: "Vestido Enfermera",   cat: "Disfraces" },
  { id: 48, nombre: "Pijama Patitos",      cat: "Pijamas" },
];

const PRODUCTS = ALL_PRODUCTS.map(p => ({
  ...p,
  precio: PRICE,
  img: `productos/doll-${String(p.id).padStart(2, '0')}.png`,
}));

const CATEGORIAS = ['Todo', 'Vestidos', 'Conjuntos', 'Petos', 'Abrigos', 'Pijamas', 'Verano', 'Punto', 'Disfraces', 'Accesorios'];

// ─── Tarifas de envío ──────────────────────────────────────────────
const ENVIOS = {
  espana:        { label: 'España',           coste: 4.95,  gratisDesde: 100, plazo: '24–48h' },
  europa:        { label: 'Europa',           coste: 11.95, gratisDesde: 120, plazo: '4–7 días' },
  internacional: { label: 'Fuera de Europa',  coste: 19.95, gratisDesde: 120, plazo: '7–14 días' },
};

window.PRODUCTS = PRODUCTS;
window.CATEGORIAS = CATEGORIAS;
window.ENVIOS = ENVIOS;
window.PRICE_DEFAULT = PRICE;
