diff --git a/commerce-add-ons/packages/README.md b/commerce-add-ons/packages/README.md
index eb69dc2f1f2..2480639d57c 100644
--- a/commerce-add-ons/packages/README.md
+++ b/commerce-add-ons/packages/README.md
@@ -6,8 +6,7 @@ description: Find detailed documentation for each of the official packages avail
Below is an overview of the different add-ons that you can install into your Umbraco Commerce implementation. All add-ons are meant to extend the features and functionality already available in the core product.
-
Checkout
Use this package to add additional functionality to the checkout flow for your Umbraco Commerce implementation.
## Using These Docs
diff --git a/commerce-add-ons/packages/SUMMARY.md b/commerce-add-ons/packages/SUMMARY.md
index bd1d72ba3a3..006af55ddac 100644
--- a/commerce-add-ons/packages/SUMMARY.md
+++ b/commerce-add-ons/packages/SUMMARY.md
@@ -8,6 +8,13 @@
* [Commerce Payment Providers](https://docs.umbraco.com/umbraco-commerce-payment-providers)
* [Commerce Shipping Providers](https://docs.umbraco.com/umbraco-commerce-shipping-providers)
+## Cart
+
+* [Overview](cart/README.md)
+* [Installation](cart/installation.md)
+* [Configuration](cart/configuration.md)
+* [Release Notes](cart/release-notes.md)
+
## Checkout
* [Overview](checkout/README.md)
diff --git a/commerce-add-ons/packages/cart/README.md b/commerce-add-ons/packages/cart/README.md
new file mode 100644
index 00000000000..178f1b3494d
--- /dev/null
+++ b/commerce-add-ons/packages/cart/README.md
@@ -0,0 +1,22 @@
+---
+description: This is the documentation for the Cart package for Umbraco Commerce.
+---
+
+# Overview
+
+Umbraco Commerce Cart is a free and open-source add-on package for Umbraco Commerce. It provides a low-code solution for creating an instant shopping cart in your Umbraco Commerce stores.
+
+Umbraco Commerce Cart allows you to set up your shopping cart with minimal development costs.
+
+![A look at the Umbraco Commerce Cart UI](../media/cart/cart.png)
+
+In this section, you will learn the key steps necessary to get started with the Cart package for Umbraco Commerce.
+
+It is assumed that you already have an Umbraco website configured, Umbraco Commerce installed and a store set up. If you are not at this stage yet, please read the [core Umbraco Commerce documentation](https://docs.umbraco.com/umbraco-commerce/) to learn how to get started.
+
+## Useful links
+
+As well as the content in these documents, here are a few useful links to learn more about the Umbraco Commerce Cart package.
+
+* [Umbraco Commerce Cart source code](https://github.com/umbraco/Umbraco.Commerce.Cart)
+* [Umbraco Commerce Cart issue tracker](https://github.com/umbraco/Umbraco.Commerce.Cart/issues)
diff --git a/commerce-add-ons/packages/cart/configuration.md b/commerce-add-ons/packages/cart/configuration.md
new file mode 100644
index 00000000000..b10e1ac0f9d
--- /dev/null
+++ b/commerce-add-ons/packages/cart/configuration.md
@@ -0,0 +1,340 @@
+---
+description: Learn how to configure the Umbraco Commerce Cart package.
+---
+
+# Configuration
+
+The Cart package is configured using a JavaScript, CSS, and data attributes-based API.
+
+## Initialization
+
+Before adding items to a cart, it is required that the Cart package is initialized with some default settings. This is done using the `UCC.init` global function which should be executed after the `umbraco-commerce-cart.js` file is loaded.
+
+```javascript
+
+
+```
+
+The core initialization settings are shown in the table below.
+
+| Key | Description |
+| -- | -- |
+| `store` | The ID or alias of the store the cart should be associated with. |
+| `checkoutUrl` | The URL of the checkout page the cart should redirect to on checkout. |
+| `showPricesIncludingTax` | Define whether to show prices inclusive or exclusive of sales tax. Defaults to `false`. |
+
+Calling the `init` method will also automatically bind any UI elements configured using the following APIs.
+
+## UI Elements
+
+### Add to Cart Buttons
+
+With Umbraco Commerce Cart, products that can be added to a cart are defined by adding attributes to HTML elements on your site. Most likely this will be a "buy" `