all products
{% comment %}
══════════════════════════════════════════════
COLLECTION PAGE TEMPLATE
Use this for: furniture.liquid, decor.liquid,
kitchenware.liquid, furnishings.liquid
Just change the collection handle at top
══════════════════════════════════════════════
{% endcomment %}
{% assign col = collection %}
Collection
{{ col.title }}
{% if col.description != blank %}{{ col.description | strip_html | truncate: 160 }}
{% else %}Explore our handpicked selection of premium {{ col.title | downcase }} for your home.
{% endif %}{{ col.products_count }}
Products
Showing {{ col.products_count }} products
{% paginate col.products by 24 %} {% if col.products.size > 0 %}
{% for product in col.products %}
{% endfor %}
{% else %}
{% if product.featured_image %}
{% else %}
{% endif %}
{% if product.compare_at_price > product.price %}
Sale
{% elsif product.tags contains 'new' %}
New
{% elsif product.tags contains 'bestseller' %}
Hot
{% endif %}
{{ product.type | default: col.title }}
{{ product.title }}
{% if product.compare_at_price > product.price %}
{{ product.compare_at_price | money }}
{% endif %}
{{ product.price | money }}
🛋️
{% endif %}
{% if paginate.pages > 1 %}
No Products Yet
Check back soon — new arrivals are on their way!
{% if paginate.previous %}
←
{% endif %}
{% for part in paginate.parts %}
{% if part.is_link %}
{{ part.title }}
{% else %}
{{ part.title }}
{% endif %}
{% endfor %}
{% if paginate.next %}
→
{% endif %}
{% endif %}
{% endpaginate %}