Variant selection affects price, availability, and images.
State management:
{
selectedVariant: {
color: 'blue',
size: 'M'
},
availableVariants: [
{ color: 'blue', size: 'M', inStock: true, price: 49.99 },
{ color: 'blue', size: 'L', inStock: false, price: 49.99 }
]
}
UX considerations:
- Show which variants are out of stock
- Update price when variant changes
- Update gallery for color variants
- Disable add to cart if out of stock