import { X, MessageSquare, ShieldCheck, CheckCircle2, Phone, Compass } from "lucide-react"; import { TireProduct, BUSINESS_INFO } from "../data"; interface ProductDetailsModalProps { tire: TireProduct | null; onClose: () => void; darkMode: boolean; } export default function ProductDetailsModal({ tire, onClose, darkMode }: ProductDetailsModalProps) { if (!tire) return null; const waPreFilledText = `Hello Haider Brothers, I want price & stock for ${tire.name} (Size: ${tire.size})`; const encodedText = encodeURIComponent(waPreFilledText); const waLink = `${BUSINESS_INFO.whatsappUrl}?text=${encodedText}`; // Calculated physical traits for mock premium display const loadSpeedIndex = tire.size.includes("14") ? "88H" : tire.size.includes("15") ? "91H" : tire.size.includes("16") ? "94V" : tire.size.includes("17") ? "98W" : "103W"; const treadwear = tire.brand.toLowerCase() === "michelin" || tire.brand.toLowerCase() === "continental" ? "540 A A" : "400 A A"; return (
{/* Container Card */}
{/* Close Button */}
{/* Card Media Section */}
{tire.name}
{/* Image caption absolute */}
ORIGINAL SPECIFICATIONS

{tire.name}

Authorized Import & Supply

{/* Details / Spec column */}
{tire.brand} Tyre Details Lahore Stock: {tire.stock !== undefined ? `${tire.stock} Units Remaining` : "Available (In Stock)"}

{tire.description} Perfect for drivers focused on safety, longevity, and comfortable ride acoustics on both dual highways and local Lahore residential lanes.

{/* Specs Bento Grid Table */}
Tyre Size {tire.size}
Load/Speed Rating {loadSpeedIndex}
UTQG / Treadwear {treadwear}
Installation FREE AT STORE
{/* Warranties flags */}
Official Year Manufacturing Date Warranted
Optimized for Pakistan's heat cycles & road asphalt
{/* Price & Primary Call-to-actions */}
Wholesale Unit Price PKR {tire.price.toLocaleString()}
{/* Dial Store hotline */} Call Store Office {/* WhatsApp Chat prefilled */} WhatsApp Secure Order
); }