/* ============================================================
   九南科技商城 · 商品列表页样式 v6.0（标签流 + 横向列表行）
   商品行 .prod-list/.prod-row 由 css/app.css 提供。
   ============================================================ */

/* 页头 */
.shop-head {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--mh-line);
  background: var(--mh-bg-page);
}
.shop-head .sec-kicker { margin-bottom: 12px; display: block; }
.shop-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--mh-text-1);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}
.shop-sub {
  font-size: 15px;
  color: var(--mh-text-3);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 560px;
}
.shop-search {
  display: flex;
  align-items: center;
  max-width: 480px;
  height: 46px;
  background: var(--mh-bg-card);
  border: 1px solid var(--mh-border);
  border-radius: var(--mh-radius);
  padding: 0 12px 0 16px;
  transition: border-color var(--mh-dur) var(--mh-ease);
}
.shop-search:focus-within { border-color: var(--mh-text-1); }
.shop-search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: var(--mh-text-1);
  height: 100%;
  min-width: 0;
}
.shop-search input::placeholder { color: var(--mh-text-3); }
.shop-search-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mh-text-3);
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
}
.shop-search-btn:hover { color: var(--mh-text-1); }
.shop-kw-tip {
  margin-top: 16px;
  font-size: 13px;
  color: var(--mh-text-2);
}

/* 工具条 */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--mh-line);
  margin-bottom: 8px;
}
.shop-count { font-size: 13px; color: var(--mh-text-3); }
.shop-count b { color: var(--mh-text-1); font-weight: 700; }
.shop-sort { display: flex; gap: 4px; }
.sort-item {
  padding: 6px 14px;
  font-size: 13px;
  color: var(--mh-text-2);
  cursor: pointer;
  border-radius: var(--mh-radius);
  transition: all var(--mh-dur) var(--mh-ease);
}
.sort-item:hover { color: var(--mh-text-1); background: var(--mh-bg-soft); }
.sort-item.active { color: var(--mh-text-1); background: var(--mh-bg-section); font-weight: 600; }

@media (max-width: 600px) {
  .shop-head { padding: 48px 0 32px; }
  .shop-title { font-size: 26px; }
  .shop-toolbar { flex-direction: column; gap: 12px; align-items: flex-start; }
}
