# XWUIVendorSellerCard

A marketplace seller/vendor profile card: logo, seller name (with an optional "Verified" badge), a star rating with review count, product count and typical response time stats, and "Visit store" / "Contact seller" actions.

## Events

| Event | Callback | Subscriber | `detail` |
|---|---|---|---|
| `xwui-vendor-seller-card:visit-store` | `onVisitStore` | `onVisitStore(handler)` | — |
| `xwui-vendor-seller-card:contact-seller` | `onContactSeller` | `onContactSeller(handler)` | — |

## Usage

```ts
import { XWUIVendorSellerCard } from '@exonware/xwui/industry';

const card = new XWUIVendorSellerCard(host, {
  name: 'Northwind Outfitters',
  rating: 4.8,
  reviewCount: 2140,
  verified: true,
});

card.onVisitStore(() => router.navigate('/store/northwind-outfitters'));
```

```api
```
