/* ══════════════════════════════════════════
   FAMINAB — Stores & Suppliers Listing
   ══════════════════════════════════════════ */
[hidden] { display: none !important; }

/* ── Breadcrumb ── */
.breadcrumb-wrap {
  background: rgba(3,10,19,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.breadcrumb-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.bc-item { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; white-space: nowrap; text-decoration: none; }
.bc-item:hover { color: var(--accent); }
.bc-item--current { color: var(--text); font-weight: 600; pointer-events: none; }
.bc-sep { font-size: 0.65rem; color: rgba(157,176,199,0.4); flex-shrink: 0; }

/* ── Compact Header ── */
.st-header {
  padding: 20px 0 18px;
  background:
    radial-gradient(ellipse 50% 40% at 25% -20%, rgba(212,175,55,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #0b1929 0%, #060d1a 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.st-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.st-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.st-header-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #EAF0F8;
  margin: 0;
  white-space: nowrap;
}
.st-header-badges {
  display: flex;
  gap: 8px;
}
.st-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(157,176,199,0.65);
  white-space: nowrap;
}
.st-mini-badge i { color: var(--accent); font-size: 0.7rem; }

/* Inline Search + city as sibling fields */
.st-header-search {
  flex: 1;
  max-width: 560px;
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: none;
}
.st-header-search:focus-within {
  border-color: transparent;
  box-shadow: none;
}

.st-search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  position: relative;
  min-height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.st-search-input-wrap:focus-within {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.st-search-input-wrap > i { color: rgba(157,176,199,0.5); font-size: 0.9rem; flex-shrink: 0; }
.st-search-input-wrap:focus-within > i { color: var(--accent); }
.st-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #EAF0F8;
  font-size: 0.86rem;
  font-family: inherit;
  font-weight: 500;
  padding: 10px 0;
  min-width: 0;
}
.st-search-input::placeholder { color: rgba(157,176,199,0.45); }
.st-search-clear {
  position: static;
  background: none;
  border: none;
  color: rgba(157,176,199,0.45);
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  opacity: 0;
  pointer-events: none;
  flex-shrink: 0;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
}
.st-search-input:not(:placeholder-shown) ~ .st-search-clear {
  opacity: 1;
  pointer-events: auto;
}
.st-search-clear:hover {
  background: rgba(255,255,255,0.08);
  color: #EAF0F8;
}

/* ── City Custom Dropdown ── */
.st-city-dropdown {
  position: relative;
  border-right: none;
  flex-shrink: 0;
}
.st-city-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  height: 100%;
  padding: 0 14px;
  color: rgba(157,176,199,0.85);
  font-size: 0.84rem;
  font-family: inherit;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.st-city-btn:hover { color: var(--accent); border-color: rgba(212,175,55,0.35); }
.st-city-btn .bi-geo-alt { font-size: 0.85rem; }
.st-city-chevron {
  font-size: 0.55rem;
  opacity: 0.5;
  transition: transform 0.25s;
}
.st-city-dropdown.open .st-city-chevron { transform: rotate(180deg); }

.st-city-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(12,22,42,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.97);
  transition: all 0.22s cubic-bezier(0.22,1,0.36,1);
  z-index: 500;
}
.st-city-dropdown.open .st-city-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.st-city-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  margin: 2px 2px 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.st-city-search i { color: rgba(157,176,199,0.4); font-size: 0.78rem; flex-shrink: 0; }
.st-city-search-input {
  background: none;
  border: none;
  outline: none;
  color: #EAF0F8;
  font-size: 0.78rem;
  font-family: inherit;
  width: 100%;
}
.st-city-search-input::placeholder { color: rgba(157,176,199,0.35); }

.st-city-list {
  display: flex;
  flex-direction: column;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(128,128,128,0.12) transparent;
}
.st-city-list::-webkit-scrollbar { width: 3px; }
.st-city-list::-webkit-scrollbar-thumb { background: rgba(128,128,128,0.12); border-radius: 99px; }

.st-city-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 0.8rem;
  font-family: inherit;
  color: rgba(157,176,199,0.8);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: right;
}
.st-city-opt:hover {
  background: rgba(255,255,255,0.05);
  color: #EAF0F8;
}
.st-city-opt--active {
  color: var(--accent) !important;
  background: rgba(212,175,55,0.08);
  font-weight: 600;
}
.st-city-opt--active::after {
  content: '\F272';
  font-family: 'bootstrap-icons';
  margin-right: auto;
  font-size: 0.7rem;
}
.st-city-opt i { font-size: 0.72rem; opacity: 0.5; }

/* ── Chips (inside toolbar) ── */
.st-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(157,176,199,0.8);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.st-chip:hover {
  color: var(--accent);
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.05);
}
.st-chip--active {
  color: #1a0e00;
  background: linear-gradient(180deg, #F6D578 0%, #D4AF37 60%, #B8870C 100%);
  border-color: rgba(255,240,190,0.4);
  box-shadow: 0 3px 12px rgba(212,175,55,0.25);
}
.st-chip i { font-size: 0.78rem; }

/* ── Main Section ── */
.st-section {
  padding: 32px 0 80px;
  background: linear-gradient(180deg, #030a13 0%, #050e1a 100%);
  min-height: 70vh;
}

/* ── Layout ── */
.st-layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 28px;
  align-items: start;
}

/* ═══════════ SIDEBAR ═══════════ */
.st-sidebar {
  position: sticky;
  top: 120px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  background: linear-gradient(160deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.018) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 12px 40px rgba(0,0,0,0.4);
  scrollbar-width: thin;
  scrollbar-color: rgba(128,128,128,0.15) transparent;
}
.st-sidebar::-webkit-scrollbar { width: 4px; }
.st-sidebar::-webkit-scrollbar-thumb { background: rgba(128,128,128,0.15); border-radius: 99px; }
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(234,240,248,0.9);
  display: flex;
  align-items: center;
  gap: 7px;
}
.sidebar-title i { color: var(--accent); }
.sidebar-header-actions { display: flex; align-items: center; gap: 8px; }
.sidebar-reset {
  font-size: 0.76rem;
  color: rgba(157,176,199,0.6);
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.08);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.sidebar-reset:hover { color: #ef4444; border-color: rgba(239,68,68,0.3); }
.sidebar-close {
  display: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(157,176,199,0.7);
  font-size: 0.82rem;
  cursor: pointer;
  place-items: center;
  transition: all 0.2s;
}
.sidebar-close:hover { background: rgba(239,68,68,0.15); color: #ef4444; border-color: rgba(239,68,68,0.3); }

/* Filter Groups (reused pattern from category) */
.filter-group { border-bottom: 1px solid rgba(255,255,255,0.05); }
.filter-group:last-of-type { border-bottom: none; }
.filter-group-head {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 13px 18px;
  font-size: 0.84rem; font-weight: 600;
  color: rgba(234,240,248,0.85);
  background: none; border: none; cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.filter-group-head:hover { color: var(--accent); background: rgba(212,175,55,0.03); }
.filter-chevron { font-size: 0.72rem; transition: transform 0.25s; color: rgba(157,176,199,0.5); }
.filter-group-body { padding: 4px 18px 14px; display: flex; flex-direction: column; gap: 2px; }
.filter-group-body[hidden] { display: none; }

.filter-search {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 0 12px; min-height: 38px; margin-bottom: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.filter-search:focus-within {
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.06);
}
.filter-search i { color: rgba(157,176,199,0.5); font-size: 0.85rem; flex-shrink: 0; }
.filter-search:focus-within i { color: var(--accent); }
.filter-search-input {
  background: none; border: none; outline: none;
  color: rgba(234,240,248,0.9); font-size: 0.82rem;
  font-family: inherit; width: 100%; padding: 8px 0; min-width: 0;
}
.filter-search-input::placeholder { color: rgba(157,176,199,0.4); }

.filter-check {
  display: flex; align-items: center; gap: 9px;
  padding: 5px 4px; font-size: 0.82rem;
  color: rgba(157,176,199,0.8); cursor: pointer;
  transition: color 0.2s; border-radius: 6px;
}
.filter-check:hover { color: rgba(234,240,248,0.9); }
.filter-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--accent); cursor: pointer;
  border-radius: 4px; flex-shrink: 0;
}
.filter-check span:first-of-type { flex: 1; }
.filter-count {
  font-size: 0.72rem; color: rgba(98,116,142,0.8);
  background: rgba(255,255,255,0.05);
  padding: 1px 7px; border-radius: 99px; flex-shrink: 0;
}

.filter-check--extra { display: none; }
.filter-group--expanded .filter-check--extra,
.filter-group-body--searching .filter-check--extra { display: flex; }

.filter-show-more {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; color: var(--accent);
  background: none; border: none; cursor: pointer;
  padding: 4px 0; margin-top: 4px; opacity: 0.85;
  transition: opacity 0.2s;
}
.filter-show-more:hover { opacity: 1; }

.filter-rating {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 4px; font-size: 0.8rem;
  color: rgba(157,176,199,0.8); cursor: pointer;
  transition: color 0.2s; border-radius: 6px;
}
.filter-rating:hover { color: rgba(234,240,248,0.9); }
.filter-rating input { accent-color: var(--accent); cursor: pointer; }
.rating-stars { display: flex; gap: 2px; color: var(--accent); font-size: 0.75rem; }

.sidebar-apply-wrap {
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: none;
}
.sidebar-apply { width: 100%; }

/* ═══════════ TOOLBAR ═══════════ */
.st-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.st-toolbar-chips {
  display: flex;
  gap: 6px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.st-toolbar-chips::-webkit-scrollbar { display: none; }
.st-result-count {
  font-size: 0.78rem;
  color: rgba(157,176,199,0.6);
  white-space: nowrap;
}
.st-result-count strong { color: var(--accent); font-weight: 700; }
.st-toolbar-left { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.st-sort { display: flex; align-items: center; gap: 6px; }
/* ── Sort Custom Dropdown ── */
.st-sort-dropdown {
  position: relative;
  flex-shrink: 0;
}
.st-sort-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(234,240,248,0.85);
  font-size: 0.82rem;
  font-family: 'Vazirmatn', system-ui, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.st-sort-btn:hover { border-color: rgba(212,175,55,0.35); background: rgba(255,255,255,0.08); }
.st-sort-btn .bi-sort-down { color: rgba(157,176,199,0.5); font-size: 0.88rem; }
.st-sort-chevron { font-size: 0.55rem; opacity: 0.5; transition: transform 0.25s; }
.st-sort-dropdown.open .st-sort-chevron { transform: rotate(180deg); }

.st-sort-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: rgba(12,22,42,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.97);
  transition: all 0.22s cubic-bezier(0.22,1,0.36,1);
  z-index: 500;
}
.st-sort-dropdown.open .st-sort-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.st-sort-opt {
  display: block;
  width: 100%;
  padding: 9px 14px;
  font-size: 0.8rem;
  font-family: 'Vazirmatn', system-ui, sans-serif;
  font-weight: 500;
  color: rgba(157,176,199,0.8);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: right;
}
.st-sort-opt:hover { background: rgba(255,255,255,0.05); color: #EAF0F8; }
.st-sort-opt--active {
  color: var(--accent) !important;
  background: rgba(212,175,55,0.08);
  font-weight: 700;
}

[data-theme="light"] .st-sort-btn {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
  color: #334155;
}
[data-theme="light"] .st-sort-btn:hover { background: #fafafa; border-color: rgba(166,124,46,0.3); }
[data-theme="light"] .st-sort-btn .bi-sort-down { color: #94a3b8; }
[data-theme="light"] .st-sort-panel {
  background: rgba(255,255,255,0.98);
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
[data-theme="light"] .st-sort-opt { color: #475569; }
[data-theme="light"] .st-sort-opt:hover { background: rgba(0,0,0,0.04); color: #1e293b; }
[data-theme="light"] .st-sort-opt--active { color: #a67c2e !important; background: rgba(212,175,55,0.08); }

.st-view-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.st-view-btn {
  padding: 7px 12px;
  background: rgba(255,255,255,0.03);
  border: none;
  color: rgba(157,176,199,0.5);
  cursor: pointer;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.st-view-btn:hover { color: rgba(234,240,248,0.8); background: rgba(255,255,255,0.06); }
.st-view-btn--active {
  color: var(--accent);
  background: rgba(212,175,55,0.1);
}
.st-view-btn + .st-view-btn { border-right: 1px solid rgba(255,255,255,0.08); }

/* Active Filters */
.st-active-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.st-active-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.st-active-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 99px;
  font-size: 0.76rem;
  color: var(--accent);
  cursor: default;
}
.st-active-tag button {
  background: none; border: none; cursor: pointer;
  color: var(--accent); font-size: 0.7rem;
  padding: 0; opacity: 0.7;
  transition: opacity 0.2s;
}
.st-active-tag button:hover { opacity: 1; }
.st-clear-all {
  font-size: 0.76rem;
  color: rgba(239,68,68,0.7);
  background: none; border: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
.st-clear-all:hover { color: #ef4444; }

/* ═══════════ STORE ROWS ═══════════ */
.st-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.st-row {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.st-row:hover {
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateX(-4px);
}

.st-row--featured {
  border-color: rgba(212,175,55,0.2);
  background: linear-gradient(160deg, rgba(212,175,55,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.st-row--featured:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 8px 40px rgba(212,175,55,0.15), inset 0 1px 0 rgba(255,240,190,0.1);
}

.st-row-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #F6D578 0%, #D4AF37 60%, #B8870C 100%);
  color: #1a0e00;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.3);
  z-index: 2;
}

.st-row-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
}

/* Avatar */
.st-row-logo {
  position: relative;
  flex-shrink: 0;
}
.st-avatar {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(42,74,107,0.5) 0%, rgba(13,27,42,0.6) 100%);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(234,240,248,0.8);
  transition: border-color 0.3s;
}
.st-row:hover .st-avatar { border-color: rgba(212,175,55,0.3); }
.st-avatar--gold {
  background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(184,135,12,0.15) 100%);
  border-color: rgba(212,175,55,0.3);
  color: var(--accent);
}
.st-avatar--img {
  overflow: hidden;
  padding: 0;
}
.st-avatar--img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.st-verified-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-radius: 99px;
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid #0a1525;
  box-shadow: 0 2px 8px rgba(22,163,106,0.35);
  white-space: nowrap;
  font-family: inherit;
}
.st-verified-badge::after {
  content: 'تایید شده';
}

/* Info */
.st-row-info { flex: 1; min-width: 0; }
.st-row-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.st-row-name {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}
.st-row-name a {
  color: #EAF0F8;
  text-decoration: none;
  transition: color 0.2s;
}
.st-row-name a:hover { color: var(--accent); }

.st-row-trade {
  display: inline-block;
  margin: 2px 0 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ak-accent, #2dd4a8);
}

.st-row-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.st-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(157,176,199,0.7);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}
.st-tag i { font-size: 0.68rem; }
.st-tag--cat {
  color: var(--accent);
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.15);
}

.st-row-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.st-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: rgba(157,176,199,0.6);
}
.st-meta-item i { font-size: 0.75rem; color: rgba(157,176,199,0.45); }

.st-row-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.st-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 99px;
  font-size: 0.76rem;
  color: rgba(157,176,199,0.75);
}
.st-stat-pill i { font-size: 0.72rem; }
.st-stat-pill span { font-weight: 700; color: rgba(234,240,248,0.85); }

.st-stat-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.st-stat-stars i { color: var(--accent); font-size: 0.72rem; }
.st-stat-stars span { color: var(--accent); font-weight: 800; }
.st-stat-sub { color: rgba(157,176,199,0.5); font-weight: 400; }

.st-stat-pill--delivery {
  color: rgba(52,211,153,0.85);
  background: rgba(52,211,153,0.06);
  border-color: rgba(52,211,153,0.15);
}
.st-stat-pill--delivery i { color: rgba(52,211,153,0.85); }

.st-row-desc {
  font-size: 0.8rem;
  color: rgba(157,176,199,0.6);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Actions */
.st-row-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  align-self: center;
}
.st-btn-view, .st-btn-contact {
  white-space: nowrap;
  font-size: 0.82rem !important;
  padding: 10px 20px !important;
}

/* ═══════════ GRID VIEW ═══════════ */
.st-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.st-list--grid .st-row-inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
}
.st-list--grid .st-row-head { justify-content: center; }
.st-list--grid .st-row-meta { justify-content: center; }
.st-list--grid .st-row-stats { justify-content: center; }
.st-list--grid .st-row-desc { text-align: center; }
.st-list--grid .st-row-actions {
  flex-direction: row;
  align-self: stretch;
  margin-top: 8px;
}
.st-list--grid .st-row-actions .btn { flex: 1; }
.st-list--grid .st-row-badge { top: 12px; left: 12px; }

/* ═══════════ EMPTY STATE ═══════════ */
.st-empty {
  text-align: center;
  padding: 64px 20px;
}
.st-empty-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(157,176,199,0.4);
}
.st-empty-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(234,240,248,0.85);
  margin: 0 0 8px;
}
.st-empty-desc {
  font-size: 0.84rem;
  color: rgba(157,176,199,0.6);
  margin: 0 0 20px;
}

/* ═══════════ PAGINATION ═══════════ */
.st-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.page-btn {
  min-width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: rgba(157,176,199,0.7);
  font-size: 0.82rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 6px;
  transition: all 0.2s;
}
.page-btn:hover:not(:disabled):not(.page-btn--active) {
  border-color: rgba(212,175,55,0.35);
  color: var(--accent);
  background: rgba(212,175,55,0.06);
}
.page-btn--active {
  background: linear-gradient(180deg, #F6D578 0%, #D4AF37 60%, #B8870C 100%);
  border-color: rgba(255,240,190,0.4);
  color: #1a0e00;
  box-shadow: 0 3px 12px rgba(212,175,55,0.3);
}
.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.page-btn--nav { padding: 0 14px; }
.page-nav-label { font-size: 0.78rem; }
.page-dots {
  color: rgba(157,176,199,0.4);
  font-size: 0.9rem;
  padding: 0 4px;
}

/* ═══════════ FILTER FAB (mobile) ═══════════ */
.filter-fab {
  display: none;
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 90;
  padding: 12px 20px;
  background: linear-gradient(135deg, #D4AF37, #F6D578);
  color: #1a0e00;
  border: none;
  border-radius: 99px;
  font-size: 0.84rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.filter-fab:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(212,175,55,0.4); }
.fab-count {
  background: #1a0e00;
  color: var(--accent);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
}
.filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  backdrop-filter: blur(4px);
}
.filter-overlay--active { display: block; }

/* ═══════════════════════════════════
   LIGHT MODE
   ═══════════════════════════════════ */
[data-theme="light"] .breadcrumb-wrap {
  background: rgba(255,255,255,0.92);
  border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .bc-item { color: #64748b; }
[data-theme="light"] .bc-item--current { color: #1e293b; }
[data-theme="light"] .bc-sep { color: rgba(0,0,0,0.2); }

[data-theme="light"] .st-header {
  background:
    radial-gradient(ellipse 50% 40% at 25% -20%, rgba(212,175,55,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #f8f9fa 0%, #f1f3f5 100%);
  border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .st-header-title { color: #1e293b; }
[data-theme="light"] .st-mini-badge {
  color: #64748b;
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .st-header-search {
  background: transparent;
  border: none;
  box-shadow: none;
}
[data-theme="light"] .st-header-search:focus-within {
  border: none;
  box-shadow: none;
}
[data-theme="light"] .st-search-input-wrap,
[data-theme="light"] .st-city-btn {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
[data-theme="light"] .st-search-input-wrap:focus-within,
[data-theme="light"] .st-city-dropdown.open .st-city-btn {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
[data-theme="light"] .st-search-input-wrap > i { color: #94a3b8; }
[data-theme="light"] .st-search-input { color: #1e293b; }
[data-theme="light"] .st-search-input::placeholder { color: #94a3b8; }
[data-theme="light"] .st-city-dropdown { border-color: transparent; }
[data-theme="light"] .st-city-btn { color: #475569; }
[data-theme="light"] .st-city-btn:hover { color: #a67c2e; }
[data-theme="light"] .st-city-panel {
  background: rgba(255,255,255,0.98);
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
[data-theme="light"] .st-city-search {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .st-city-search i { color: #94a3b8; }
[data-theme="light"] .st-city-search-input { color: #1e293b; }
[data-theme="light"] .st-city-search-input::placeholder { color: #94a3b8; }
[data-theme="light"] .st-city-opt { color: #475569; }
[data-theme="light"] .st-city-opt:hover { background: rgba(0,0,0,0.04); color: #1e293b; }
[data-theme="light"] .st-city-opt--active { color: #a67c2e !important; background: rgba(212,175,55,0.08); }

[data-theme="light"] .st-chip {
  color: #475569;
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .st-chip:hover {
  color: #a67c2e;
  border-color: rgba(166,124,46,0.3);
  background: rgba(212,175,55,0.08);
}
[data-theme="light"] .st-chip--active {
  color: #1a0e00;
  background: linear-gradient(180deg, #F6D578 0%, #D4AF37 60%, #B8870C 100%);
  border-color: rgba(212,175,55,0.4);
}

[data-theme="light"] .st-section {
  background: linear-gradient(180deg, #f1f3f5 0%, #f8f9fa 100%);
}

[data-theme="light"] .st-sidebar {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  backdrop-filter: none;
}
[data-theme="light"] .sidebar-header { border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .sidebar-title { color: #1e293b; }
[data-theme="light"] .sidebar-reset { color: #94a3b8; border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .filter-group { border-color: rgba(0,0,0,0.05); }
[data-theme="light"] .filter-group-head { color: #334155; }
[data-theme="light"] .filter-group-head:hover { color: #a67c2e; background: rgba(212,175,55,0.04); }
[data-theme="light"] .filter-chevron { color: #94a3b8; }
[data-theme="light"] .filter-check { color: #475569; }
[data-theme="light"] .filter-check:hover { color: #1e293b; }
[data-theme="light"] .filter-count { color: #94a3b8; background: rgba(0,0,0,0.04); }
[data-theme="light"] .filter-search { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .filter-search i { color: #94a3b8; }
[data-theme="light"] .filter-search-input { color: #1e293b; }
[data-theme="light"] .filter-search-input::placeholder { color: #94a3b8; }
[data-theme="light"] .filter-rating { color: #475569; }
[data-theme="light"] .filter-rating:hover { color: #1e293b; }

[data-theme="light"] .st-toolbar { border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .st-result-count { color: #64748b; }
/* st-sort-select light handled in main block */
[data-theme="light"] .st-view-toggle { border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .st-view-btn { color: #94a3b8; background: rgba(0,0,0,0.02); }
[data-theme="light"] .st-view-btn:hover { color: #334155; background: rgba(0,0,0,0.04); }
[data-theme="light"] .st-view-btn--active { color: #a67c2e; background: rgba(212,175,55,0.1); }
[data-theme="light"] .st-view-btn + .st-view-btn { border-color: rgba(0,0,0,0.08); }

[data-theme="light"] .st-row {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  backdrop-filter: none;
}
[data-theme="light"] .st-row:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
[data-theme="light"] .st-row--featured {
  background: linear-gradient(160deg, rgba(212,175,55,0.04) 0%, rgba(255,255,255,0.9) 100%);
  border-color: rgba(212,175,55,0.15);
}
[data-theme="light"] .st-row--featured:hover {
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 6px 28px rgba(212,175,55,0.1);
}

[data-theme="light"] .st-avatar {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  border-color: rgba(0,0,0,0.1);
  color: #475569;
}
[data-theme="light"] .st-avatar--gold {
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(184,135,12,0.1) 100%);
  border-color: rgba(212,175,55,0.25);
  color: #a67c2e;
}
[data-theme="light"] .st-verified-badge { border-color: #fff; box-shadow: 0 2px 8px rgba(22,163,106,0.2); }

[data-theme="light"] .st-row-name a { color: #1e293b; }
[data-theme="light"] .st-row-name a:hover { color: #a67c2e; }
[data-theme="light"] .st-tag { color: #64748b; background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .st-tag--cat { color: #a67c2e; background: rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.15); }
[data-theme="light"] .st-meta-item { color: #94a3b8; }
[data-theme="light"] .st-meta-item i { color: #cbd5e1; }
[data-theme="light"] .st-stat-pill {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.06);
  color: #64748b;
}
[data-theme="light"] .st-stat-pill span { color: #1e293b; }
[data-theme="light"] .st-stat-pill--delivery {
  color: #059669;
  background: rgba(5,150,105,0.06);
  border-color: rgba(5,150,105,0.12);
}
[data-theme="light"] .st-stat-pill--delivery i { color: #059669; }
[data-theme="light"] .st-row-desc { color: #64748b; }

[data-theme="light"] .st-pagination { border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .page-btn {
  border-color: rgba(0,0,0,0.1);
  background: #fff;
  color: #475569;
}
[data-theme="light"] .page-btn:hover:not(:disabled):not(.page-btn--active) {
  border-color: rgba(212,175,55,0.35);
  color: #a67c2e;
  background: rgba(212,175,55,0.06);
}
[data-theme="light"] .page-dots { color: #94a3b8; }

[data-theme="light"] .st-empty-icon {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  color: #94a3b8;
}
[data-theme="light"] .st-empty-title { color: #1e293b; }
[data-theme="light"] .st-empty-desc { color: #64748b; }

[data-theme="light"] .st-active-tag {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.2);
  color: #a67c2e;
}
[data-theme="light"] .st-active-tag button { color: #a67c2e; }

/* Light mode premium buttons */
[data-theme="light"] .st-btn-view.btn-gold-3d {
  background: linear-gradient(180deg, #e8c547 0%, #c9a227 50%, #a67c2e 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(166,124,46,0.3) !important;
  box-shadow: 0 2px 8px rgba(166,124,46,0.25), inset 0 1px 0 rgba(255,255,255,0.3) !important;
}
[data-theme="light"] .st-btn-view.btn-gold-3d:hover {
  box-shadow: 0 4px 16px rgba(166,124,46,0.35), inset 0 1px 0 rgba(255,255,255,0.4) !important;
}
[data-theme="light"] .st-btn-contact.btn-glass-3d {
  background: rgba(255,255,255,0.85) !important;
  color: #475569 !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8) !important;
}
[data-theme="light"] .st-btn-contact.btn-glass-3d:hover {
  color: #a67c2e !important;
  border-color: rgba(166,124,46,0.25) !important;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .st-layout { grid-template-columns: 1fr; }
  .st-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    z-index: 1000;
    border-radius: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
  }
  .st-sidebar--open { transform: translateX(0); }
  .sidebar-close { display: grid; }
  .sidebar-apply-wrap { display: block; }
  .filter-fab { display: flex; }

  .st-header-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .st-header-search { max-width: none; }
  .st-header-right { flex-wrap: wrap; }
}

/* Mobile */
@media (max-width: 640px) {
  .breadcrumb-wrap { display: none; }
  .st-main { max-width: 100%; overflow-x: hidden; }
  .st-header { padding: 10px 0 8px; }
  .st-header-row { gap: 10px; }
  .st-header-right { flex-wrap: wrap; gap: 6px; }
  .st-header-title { font-size: 0.95rem; white-space: normal; }
  .st-header-badges { gap: 4px; }
  .st-mini-badge { font-size: 0.62rem; padding: 2px 6px; }

  .st-header-search {
    flex-direction: column;
    border-radius: 0;
  }
  .st-city-dropdown { border-right: none; border-top: none; width: 100%; }
  .st-city-btn { width: 100%; padding: 0 12px; font-size: 0.8rem; justify-content: flex-start; }
  .st-city-panel { left: 0; right: 0; min-width: auto; }
  [data-theme="light"] .st-city-dropdown { border-color: transparent; }
  .st-search-input { padding: 8px 0; font-size: 0.82rem; }

  .st-toolbar { flex-direction: column; align-items: stretch; gap: 6px; padding-bottom: 10px; margin-bottom: 12px; }
  .st-toolbar-chips { gap: 4px; flex-wrap: wrap; overflow: visible; flex: none; }
  .st-toolbar-left { justify-content: space-between; }
  .st-view-toggle { display: none; }
  .st-result-count { font-size: 0.74rem; }
  .st-sort-select { font-size: 0.76rem; padding: 5px 8px 5px 22px; }

  .st-row-inner {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px 10px;
    padding: 12px;
  }
  .st-row-logo {
    grid-row: 1;
    grid-column: 1;
    align-self: start;
  }
  .st-row-info {
    grid-row: 1;
    grid-column: 2;
    min-width: 0;
    overflow: hidden;
  }
  .st-row-actions {
    grid-row: 2;
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 6px;
  }
  .st-row-actions .btn,
  .st-row-actions .btn.btn-gold-3d,
  .st-row-actions .btn.btn-glass-3d {
    flex: 1;
    font-size: 0.73rem !important;
    padding: 9px 6px !important;
    gap: 4px !important;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 10px !important;
    box-shadow: none !important;
  }
  .st-row-actions .btn i { font-size: 0.8rem; flex-shrink: 0; }

  .st-avatar { width: 48px; height: 48px; font-size: 1.05rem; border-radius: 12px; }
  .st-verified-badge { font-size: 0.5rem; padding: 1px 5px; bottom: -5px; }

  .st-row-head { flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 4px; }
  .st-row-name { font-size: 0.88rem; }
  .st-row-tags { gap: 4px; flex-wrap: wrap; }
  .st-tag { font-size: 0.65rem; padding: 1px 7px; }
  .st-row-meta { gap: 8px; margin-bottom: 6px; }
  .st-meta-item { font-size: 0.72rem; }
  .st-row-stats { gap: 3px 4px; flex-wrap: wrap; }
  .st-stat-pill { padding: 2px 5px; font-size: 0.64rem; white-space: nowrap; }
  .st-row-desc { font-size: 0.74rem; -webkit-line-clamp: 2; margin-top: 4px; }

  .st-row { overflow: hidden; }
  .st-row-badge { display: none; }
  .st-row--featured .st-row-inner { padding-top: 14px; }

  .st-row:hover { transform: none; }

  .page-nav-label { display: none; }
  .page-btn { min-width: 34px; height: 34px; font-size: 0.78rem; }

  .st-sidebar { width: 85vw; max-width: 320px; }

  .st-section { padding: 20px 0 100px; }

  .st-list { gap: 12px; }
  .st-row { border-radius: 14px; }
}

@media (max-width: 380px) {
  .st-stat-pill { padding: 2px 4px; font-size: 0.6rem; }
  .st-chip { padding: 4px 10px; font-size: 0.7rem; }
  .st-chip i { font-size: 0.72rem; }
  .st-row-name { font-size: 0.82rem; }
  .st-avatar { width: 42px; height: 42px; font-size: 0.95rem; }
  .st-row-inner { grid-template-columns: 42px minmax(0, 1fr); gap: 8px 10px; padding: 10px; }
  .st-header-title { font-size: 0.9rem; }
  .st-verified-badge { font-size: 0; padding: 0; width: 16px; height: 16px; border-radius: 50%; justify-content: center; }
  .st-verified-badge::after { display: none; }
  .st-verified-badge i { font-size: 0.55rem; }
  .st-row-desc { display: none; }
  .st-meta-item { font-size: 0.66rem; }
  .st-row-actions .btn i { display: none; }
  .st-row-actions .btn { font-size: 0.7rem !important; }
}

/* Focus visible */
.st-chip:focus-visible,
.st-view-btn:focus-visible,
.page-btn:focus-visible,
.filter-group-head:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
