# Product Images Directory

Store product images here with the naming convention:
- `product-{id}-{index}.jpg` (or .png, .webp, etc.)

Example:
- product-1-1.jpg (Product ID 1, Image 1)
- product-1-2.jpg (Product ID 1, Image 2)
- product-2-1.jpg (Product ID 2, Image 1)

Images are referenced in products.json as an array:
```json
{
  "id": 1,
  "images": ["product-1-1.jpg", "product-1-2.jpg"]
}
```

