/* ── shop list ── */
.shop-item {
  display: flex; align-items: center; padding: 13px 14px;
  gap: 12px; cursor: pointer; transition: background .12s;
  border-bottom: 1px solid var(--hairline-light);
}
.shop-item:active { background: #faf9f5; }
.shop-item:last-child { border-bottom: none; }
.shop-avatar {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 650; flex-shrink: 0; letter-spacing: .5px;
}
.shop-avatar.no-number { background: var(--accent); }
.shop-avatar.no-number::after { content: '?'; }
.shop-info { flex: 1; min-width: 0; }
.shop-info .name { font-size: 14px; font-weight: 580; color: var(--ink); }
.shop-info .meta { font-size: 12px; color: var(--mute); margin-top: 3px;
  display: flex; gap: 8px; }
.shop-info .meta span { display: inline-flex; align-items: center; gap: 3px; }
.shop-info .landmark {
  font-size: 11px; color: var(--accent); margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.shop-actions { display: flex; gap: 2px; flex-shrink: 0; }
.shop-actions button {
  width: 34px; height: 34px; border: none; border-radius: 8px;
  font-size: 15px; cursor: pointer; background: transparent;
  transition: background .12s;
}
.shop-actions button:active { background: #f0ece6; }

/* ── list section header ── */
.list-section-header {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  color: var(--mute); letter-spacing: .8px; padding: 14px 14px 6px;
}
