/* ============================================
   VENDOR STORE PAGE — /seller/{slug}/  — RTL / Persian
   Prefix: .aitvs-
   ============================================ */

:root {
  --aitvs-bg: #f5f5f5;
  --aitvs-surface: #ffffff;
  --aitvs-ink: #111111;
  --aitvs-muted: #6b7280;
  --aitvs-line: rgba(0,0,0,0.06);
  --aitvs-primary: #1e2a78;
  --aitvs-radius: 20px;
  --aitvs-shadow: 0 18px 40px -14px rgba(16,24,40,.14);
  --aitvs-font: var(--itoll-font-family, 'Tahoma', system-ui, sans-serif);
}

.aitvs {
  max-width: 1100px;
  margin: 32px auto;
  padding: 0 16px;
  font-family: var(--aitvs-font);
  direction: rtl;
}

.aitvs__crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--aitvs-muted);
  font-size: 13px;
  font-weight: 600;
}
.aitvs__crumbs a {
  color: var(--aitvs-muted);
  text-decoration: none;
}
.aitvs__crumbs a:hover {
  color: var(--aitvs-primary);
}
.aitvs__crumbs strong {
  color: var(--aitvs-ink);
}
.aitvs__crumbs-sep {
  color: #a4acba;
}

/* ── Store header ── */
.aitvs__head {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--aitvs-surface);
  border: 1px solid var(--aitvs-line);
  border-radius: var(--aitvs-radius);
  box-shadow: var(--aitvs-shadow);
  padding: 24px;
  margin-bottom: 28px;
}
.aitvs__avatar {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--aitvs-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  overflow: hidden;
}
.aitvs__avatar img { width: 100%; height: 100%; object-fit: cover; }
.aitvs__meta { min-width: 0; }
.aitvs__title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--aitvs-ink);
}
.aitvs__desc {
  margin: 0 0 10px;
  color: var(--aitvs-muted);
  font-size: 14px;
  line-height: 1.7;
}
.aitvs__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.aitvs__contact-item {
  color: var(--aitvs-muted);
  font-size: 13px;
}

/* ── Products section ── */
.aitvs__section-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--aitvs-ink);
}
.aitvs__empty {
  color: var(--aitvs-muted);
  background: var(--aitvs-surface);
  border: 1px solid var(--aitvs-line);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

@media (max-width: 600px) {
  .aitvs__head { flex-direction: column; text-align: center; align-items: center; }
  .aitvs__contact { justify-content: center; }
}
