*** title: Packages subtitle: >- Group multiple products together into a single purchasable option with combined pricing. ----------------- # Overview **Packages** let you group multiple products into a single purchasable option, simplifying checkout and giving customers flexibility to choose the option that fits their needs. Each product in a package can include multiple pricing options, such as one-time or recurring prices. **Use cases:** * Bundled software features (e.g., Pro + Analytics) * Hardware + service packages * Multi-seat or multi-feature plans sold together *** # How packages work With packages: * Multiple products are presented as a single option at checkout * Customers can select the variant or price for each product within the package * Total price is calculated by combining all selected items in the package * Can coexist with other packages or individual product purchases ```mermaid flowchart LR A[Customer views package] --> B[Select options for each product] B --> C[Calculate total package price] C --> D[Payment collected via checkout] D --> E[Transaction complete] ``` *** # Example ## SaaS Package ```typescript Package: Pro Suite ├── Product: Pro Plan │ └── Price: $29/month ├── Product: Analytics Add-on │ └── Price: $10/month └── Product: Team Seats └── Price: $10/seat/month Customer selects 5 seats: Total = $29 + $10 + (5 × $10) = $89/month ```