{% extends 'base.html' %}{% load static %} {% block title %}{{ merchant.business_name }} — Unity Nation{% endblock %} {% block extra_css %} .m-hero{background:linear-gradient(135deg,rgba(123,95,230,.15),rgba(0,200,168,.08));border:1px solid rgba(123,95,230,.28);border-radius:var(--rl);padding:28px 32px;margin-bottom:28px;display:flex;align-items:center;gap:20px;flex-wrap:wrap} .m-logo{width:68px;height:68px;border-radius:16px;background:rgba(123,95,230,.25);display:flex;align-items:center;justify-content:center;font-size:1.9rem;flex-shrink:0} .item-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:13px} .item-card{background:var(--panel);border:1px solid var(--border);border-radius:var(--rl);overflow:hidden;transition:all var(--tr)} .item-card:hover{border-color:rgba(123,95,230,.35);transform:translateY(-3px);box-shadow:0 14px 36px rgba(0,0,0,.4)} .item-img{height:145px;background:linear-gradient(135deg,#1a1a3a,#0d0e1e);display:flex;align-items:center;justify-content:center;font-size:2.2rem;overflow:hidden} .item-img img{width:100%;height:100%;object-fit:cover} .item-body{padding:14px} .item-body h3{font-family:var(--ff);font-size:.92rem;font-weight:700;margin-bottom:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis} .item-body .desc{font-size:.78rem;color:var(--muted);margin-bottom:11px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden} .item-foot{display:flex;align-items:center;justify-content:space-between} .item-price{font-family:var(--ff);font-weight:700;color:var(--teal)} {% endblock %} {% block content %}
Marketplace
Verified Merchant

{{ merchant.business_name }}

{{ merchant.business_address }}{% if merchant.country %} · {{ merchant.country }}{% endif %}{% if merchant.business_phone %} · {{ merchant.business_phone }}{% endif %}
{% if merchant.description %}
{{ merchant.description }}
{% endif %}
Approved
{% if products %}

Products

{% for item in products %}
{% if item.image %}{{ item.name }}{% else %}📦{% endif %}

{{ item.name }}

{{ item.description }}
${{ item.price }}View
{% endfor %}
{% endif %} {% if services %}

Services

{% for item in services %}
{% if item.image %}{{ item.name }}{% else %}⚡{% endif %}

{{ item.name }}

{{ item.description }}
${{ item.price }}View
{% endfor %}
{% endif %} {% if not products and not services %}
🏪

No listings yet

This merchant hasn't added products or services yet.

{% endif %}
{% endblock %}