# Product Cards Grid
> A responsive grid of product cards with images, metrics, and clean layouts for displaying multiple items at a glance.
A responsive grid of product cards with images, metrics, and clean layouts for displaying multiple items at a glance.
**Best for**: E-commerce dashboards, product catalogs, inventory displays
**Key techniques**: CSS Grid responsive layout, image handling with `.raw`, looped card generation
## Template Code
```html
{% map(rows) %}
{{ `Name` }}
- Revenue
- {{ values.`Revenue` }}
- Category
- {{ `Category Name` }}
- Price
- {{ values.`Total Price` }}
{% end %}
```
## Required Data Fields
| Field | Type | Description |
|-------|------|-------------|
| `Name` | Dimension | Product name |
| `Product Image Url` | Dimension | URL to product image |
| `Category Name` | Dimension | Product category |
| `Revenue` | Measure | Revenue metric |
| `Total Price` | Measure | Price metric |
## Sample Data
Import this data into Holistics to use: [sample-data-card-grid.csv](https://media.holistics.io/d1a61ae6-sample-data-card-grid.csv)
```csv
Name,Product Image Url,Category Name,Total Price,Revenue
Samsung Bluetooth Earphone,https://m.media-amazon.com/images/I/61xtSvzyi1L._AC_UL320_.jpg,Audio Gadgets,32615,$102414.00
Sony Headphone 1,https://m.media-amazon.com/images/I/61qzLC0pG+L._AC_UY218_.jpg,Audio Gadgets,29529,$96082.00
Face Cream,https://m.media-amazon.com/images/I/61El1UzIVVL._AC_UL320_.jpg,Face,8832,$107831.00
Playstation 4,https://media.holistics.io/j4wlo8-Group-2884.png,Gaming,31842,$126679.00
Sony Xperia 1,https://media.holistics.io/tdcmvm-Group-2882.png,Mobiles,39826,$169948.00
Apple Watch 1,https://media.holistics.io/1pm8rk-Group-2887.png,Smartwatches,24887,$128789.00
```
## Customization Tips
- Adjust the grid breakpoints in `@media` queries for different responsive behavior
- Change the `.revenue-badge` colors to highlight different value ranges
- Add more detail rows by duplicating the `.deal-details-inner` block
- Use `.raw` for image URLs to ensure proper rendering