# Lumina Haven Studio

[Lumina Haven Studio](https://salon.mock.shop/llms.txt) is a [mock.shop](https://www.mock.shop/) sample store for building a salon or spa storefront with a mixed physical-and-service catalog before a real Shopify store is ready. It includes haircare products, skincare, nail polish, and professional salon services. The catalog has 8 products across 3 collections. Four products require shipping and four are non-shipping services, each with a single default variant.

mock.shop is an auth-free Shopify Storefront GraphQL API backed by sample reference stores. Find out more about [mock.shop sample stores](https://www.shopify.com/blog/mock-shop).

## When to use this store

Choose Lumina Haven Studio when a storefront sells both physical retail products and non-shipping services from a single catalog.

Use Lumina Haven Studio for:

- Spa and salon storefronts that combine retail products and service listings
- Carts containing both shippable products and services
- Product pages that use `requiresShipping` to decide whether to show shipping information

Choose another mock.shop store if you need variant selectors, subscriptions, large catalog browsing, or digital downloads. Browse <https://mock.shop/llms.txt> to find a store that matches your catalog.

## Example Lumina Haven Studio query

Here’s an example GraphQL `POST` request that retrieves a shippable product and a non-shipping service side by side from <https://salon.mock.shop/api>:

```bash
curl https://salon.mock.shop/api \
  -H 'Content-Type: application/json' \
  --data '{"query":"{ shampoo: product(handle: \"botanical-repair-shampoo-with-aloe\") { title productType variants(first: 1) { nodes { price { amount currencyCode } requiresShipping } } } haircut: product(handle: \"signature-haircut-and-style\") { title productType variants(first: 1) { nodes { price { amount currencyCode } requiresShipping } } } }"}'
```

This query returns product titles, product types, prices, and `requiresShipping` for one physical product and one service. Adapt the query for your storefront needs.

The endpoint doesn't require authentication or an access token. Read <https://salon.mock.shop/llms.txt> for catalog details and store-specific instructions.

## What this catalog lets you test

The same catalog contains shippable retail products and services that don’t require shipping. Use each selected variant’s `requiresShipping` value instead of assuming the whole cart contains physical goods. The example query pairs shampoo with a haircut to demonstrate the difference; these service listings and shipping flags don’t establish appointment availability.

Preview the catalog in a storefront by opening <https://salon.hydrogen.mock.shop> in a browser.

![Lumina Haven Studio’s Salon Services collection with haircut, color, and facial listings, prices, and a sorting control.](images/lumina-haven-studio-salon-services-20260910.webp)

## Build with an AI coding tool

To build a salon or spa storefront with Lumina Haven Studio using Claude, ChatGPT, Cursor, Lovable, or another AI assistant, copy the prompt below. It gives the assistant the store domain and directs it to the catalog instructions before it starts writing code.

```text
Build me a Hydrogen storefront using salon.mock.shop as the store domain. Setup instructions: salon.mock.shop/llms.txt
```

Shopify also provides a [mock.shop starter project](https://github.com/Shopify/mock-shop-starter): a Hydrogen storefront with product pages, collection browsing, and a working cart already connected to mock.shop. You or your AI coding tool can customize this code instead of building those pieces from scratch.

Follow the repository’s setup instructions, then set `PUBLIC_STORE_DOMAIN=salon.mock.shop` in `.env` and restart the dev server to use Lumina Haven Studio’s catalog. Leave `PUBLIC_STOREFRONT_API_TOKEN` empty; mock.shop doesn’t require a token.

## Move to a real Shopify store

mock.shop uses fictional, read-only catalog data. Cart operations work, and checkout is mocked: no payment is taken and no real order is placed. The Customer Account API isn’t supported.

When you’re ready to launch, point your storefront at a Shopify store and add that store’s public Storefront API token. If you don’t have a Shopify store yet, [start a Shopify free trial](https://www.shopify.com/free-trial) to create one.

Read the [mock.shop developer documentation](https://shopify.dev/docs/storefronts/headless/mock-shop) for setup and migration details.

## Store facts

| | |
|---|---|
| Store handle | `salon` |
| Catalog model | Mixed physical and service catalog |
| Products | 8 |
| Collections | 3 |
| Categories | 4 |
| Variants per product | 1 |
| Compare-at prices | 1 product |
| Requires shipping | 4 products |
| API endpoint | <https://salon.mock.shop/api> |
| Store instructions | <https://salon.mock.shop/llms.txt> |
| Browser preview | <https://salon.hydrogen.mock.shop> |
