## You can style the subtitle with the below css class

1. Global : `product-subtitle`
2. Product Specific : `subtitle-{product-id}`

### Example CSS

#### Applies for all product subtitles
```
.product-subtitle {
	color:green;
}
```

#### Applies for product with `99` as product ID
```
.product-subtitle.subtitle-99 {
	color:red;
}
```