export interface ProductSpecs {
    thickness: string;
    length: string;
    fullWidth: string;
    coveringWidth: string;
    purlinGap: string;
    weight: string;
    layers: string;
}

export interface Product {
    id: string;
    name: string;
    category: string;
    image: string;
    gallery: string[];
    longDesc: string;
    features: string[];
    applications: string[];
    specs: ProductSpecs;
    tags: string[];
    colors: string[];
    sivilimaLink: string;
}

export const availableLengths = [
    "5 Feet 9 Inches",
    "7 Feet 11 Inches",
    "10 Feet 1 Inches",
    "12 Feet 3 Inches",
    "13 Feet 8 Inches",
    "15 Feet 1 Inches",
    "16 Feet 6 Inches",
    "18 Feet",
    "19 Feet 5 Inches",
    "20 Feet 10 Inches",
    "22 Feet 3 Inches",
    "24 Feet 5 Inches"
];

export const products: Product[] = [
{
    id: "iroof-max-brick",
    name: "iRoof Max Brick Red",
    category: "iRoof Max",
    image: "/images/Brick Red.jpg",
    gallery: [
        "/images/Brick Red.jpg",
        "/images/Line art  I - ROOF MAX _ Brick Red.jpg",
        "/images/brick-red-house2.webp",
        "/images/brick-red-house1.webp"
    ],
    longDesc: "A vibrant and durable roofing solution designed for modern homes and commercial buildings. The Brick Red finish features advanced UV-resistant polymers that preserve its bold color while delivering exceptional weather resistance and long-lasting performance.",
    features: [
        "Advanced UV Protection",
        "Heat Reflective Surface",
        "Impact Resistant",
        "99% Water Repellent"
    ],
    applications: [
        "Modern Homes",
        "Commercial Buildings",
        "Residential Projects"
    ],
    specs: {
        thickness: "2.8 (+/-0.1) mm",
        length: "Available from 5'9\" to 24'5\"",
        fullWidth: "3 Feet 5 Inches",
        coveringWidth: "3 Feet 1.5 Inches",
        purlinGap: "26 Inches",
        weight: "480g/sqft",
        layers: "4 layers"
    },
    tags: [
        "VIBRANT",
        "DURABLE"
    ],
    colors: ["#A52A2A"],
    sivilimaLink: "https://www.sivilima.lk/product/iroof-max-roofing-sheet-brick-red/"
},
{
    id: "iroof-max-green",
    name: "iRoof Max Dark Green",
    category: "iRoof Max",
    image: "/images/Dark Green.jpg",
    gallery: [
        "/images/Dark Green.jpg",
        "/images/Line art  I - ROOF MAX _ Dark Green.jpg",
        "/images/iroof.lk-green.webp",
        "/images/green-house.webp"
    ],
    longDesc: "Inspired by nature, the Dark Green roofing sheet combines advanced ASA protection with UV-resistant polymers to reduce heat absorption while maintaining its rich color and outstanding durability in tropical conditions.",
    features: [
        "ASA Weather Shield",
        "Low Heat Absorption",
        "UV Resistant",
        "Long Color Retention"
    ],
    applications: [
        "Eco Homes",
        "Villas",
        "Resorts"
    ],
    specs: {
        thickness: "2.8 (+/-0.1) mm",
        length: "Available from 5'9\" to 24'5\"",
        fullWidth: "3 Feet 5 Inches",
        coveringWidth: "3 Feet 1.5 Inches",
        purlinGap: "26 Inches",
        weight: "480g/sqft",
        layers: "4 layers"
    },
    tags: [
        "NATURAL",
        "COOLING"
    ],
    colors: ["#006400"],
    sivilimaLink: "https://www.sivilima.lk/product/iroof-max-roofing-sheet-dark-green/"
},
{
    id: "iroof-max-chocolate-brown",
    name: "iRoof Max Chocolate Brown",
    category: "iRoof Max",
    image: "/images/Chocolate Brown.jpg",
    gallery: [
        "/images/Chocolate Brown.jpg",
        "/images/Line art  I - ROOF MAX _ Chocolate Brown.jpg",
        "/images/iroof.lk-chocolate-brown.png"
        ],
    longDesc: "A premium earth-tone roofing solution that delivers timeless elegance. Engineered with advanced UV-resistant polymers, the Chocolate Brown finish maintains its rich appearance while providing excellent weather resistance and long-lasting durability.",
    features: [
        "Rich Color Retention",
        "UV Resistant",
        "Impact Resistant",
        "Weather Protection"
    ],
    applications: [
        "Luxury Homes",
        "Residential Villas",
        "Country Houses"
    ],
    specs: {
        thickness: "2.8 (+/-0.1) mm",
        length: "Available from 5'9\" to 24'5\"",
        fullWidth: "3 Feet 5 Inches",
        coveringWidth: "3 Feet 1.5 Inches",
        purlinGap: "26 Inches",
        weight: "480g/sqft",
        layers: "4 layers"
    },
    tags: [
        "ELEGANT",
        "PREMIUM"
    ],
    colors: ["#5C4033"],
    sivilimaLink: "https://www.sivilima.lk/product/iroof-max-roofing-sheet-chocolate-brown/"
},
{
    id: "iroof-max-white",
    name: "iRoof Max White",
    category: "iRoof Max",
    image: "/images/White.jpg",
    gallery: [
        "/images/White.jpg",
        "/images/Line art  I - ROOF MAX _ White.jpg",
        "/images/iroof.lk-white-new.png"
    ],
    longDesc: "A clean and modern roofing solution engineered for superior heat reflection. The White finish helps reduce indoor temperatures while offering excellent weather resistance, structural strength, and long-lasting visual appeal.",
    features: [
        "High Solar Reflectivity",
        "Thermal Insulation",
        "UV Resistant",
        "Zero Corrosion"
    ],
    applications: [
        "Modern Homes",
        "Factories",
        "Commercial Buildings"
    ],
    specs: {
        thickness: "2.8 (+/-0.1) mm",
        length: "Available from 5'9\" to 24'5\"",
        fullWidth: "3 Feet 5 Inches",
        coveringWidth: "3 Feet 1.5 Inches",
        purlinGap: "26 Inches",
        weight: "480g/sqft",
        layers: "4 layers"
    },
    tags: [
        "COOLING",
        "MODERN"
    ],
    colors: ["#FFFFFF"],
    sivilimaLink: "https://www.sivilima.lk/product/iroof-max-roofing-sheet-white/"
}
];
