  /* ===== 商城列表页专属样式 ===== */
  /* 撑破父级 .article-container 的 padding，让 Hero 横幅全宽展示 */
  .article-container:has(.shop-page) {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
  }

  .shop-page { padding: 0; }

  /* 覆盖 shop.css 的默认容器样式 */
  .shop-page .shop {
    max-width: 100%;
    padding: 0;
  }

  /* 工具栏：分类选择 + 结果计数 */
  .shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color, #edf0f5);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(20, 40, 80, 0.06);
  }

  /* 分类选择条（横向胶囊） */
  .shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .shop-categories .cat-label {
    font-size: 13px;
    color: var(--text-light, #8a94a6);
    margin-right: 6px;
    font-weight: 500;
  }
  .shop-categories a {
    font-size: 13px;
    color: var(--text-light, #8a94a6);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 16px;
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid transparent;
    transition: var(--transition, all 0.25s ease);
    font-weight: 500;
  }
  .shop-categories a:hover {
    color: #e84393;
    background: rgba(232, 67, 147, 0.08);
    border-color: rgba(232, 67, 147, 0.2);
  }
  .shop-categories a.active {
    color: #fff;
    background: linear-gradient(135deg, #ff7e1d 0%, #e84393 100%);
    box-shadow: 0 4px 10px rgba(232, 67, 147, 0.3);
    border-color: transparent;
  }

  .shop-result {
    font-size: 14px;
    color: var(--text-light, #8a94a6);
    white-space: nowrap;
  }
  .shop-result strong {
    color: #e84393;
    font-size: 16px;
    margin: 0 2px;
  }

  /* 商品卡片网格（4 列，中屏 3 列，小屏 2 列，移动端 1 列） */
  .shop-page .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .shop-page .product {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #edf0f5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(20, 40, 80, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .shop-page .product:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(20, 40, 80, 0.14);
    border-color: #ffd4b0;
  }

  .shop-page .product-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    height: auto;
    background: linear-gradient(135deg, #fff5eb, #ffe9d6);
    overflow: hidden;
  }
  .shop-page .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .shop-page .product:hover .product-thumb img { transform: scale(1.08); }

  /* 库存角标 */
  .stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 10px;
    font-size: 11px;
    color: #fff;
    background: rgba(46, 204, 113, 0.92);
    border-radius: 10px;
    backdrop-filter: blur(4px);
  }
  .stock-badge.out {
    background: rgba(231, 76, 60, 0.92);
  }

  .shop-page .product h3 {
    margin: 14px 16px 6px;
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .shop-page .product p {
    margin: 0 16px 12px;
    color: #8a94a6;
    line-height: 1.55;
    font-size: 12.5px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .shop-page .product .price {
    font-size: 17px;
    font-weight: bold;
    color: #e67e22;
    margin: 0 16px 12px;
  }
  .shop-page .product .price small {
    font-size: 12px;
    font-weight: normal;
    color: #8a94a6;
    margin-left: 4px;
  }
  .shop-page .product-actions {
    display: flex;
    gap: 8px;
    margin: 0 16px 16px;
  }
  .shop-page .product-actions .btn {
    flex: 1;
    font-size: 13px;
    padding: 8px 10px;
  }

  /* 空状态 */
  .shop-empty {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255,255,255,0.95);
    border: 1px solid #edf0f5;
    border-radius: 12px;
    color: #8a94a6;
  }
  .shop-empty i {
    font-size: 48px;
    color: #edf0f5;
    margin-bottom: 16px;
    display: block;
  }
  .shop-empty p { margin-bottom: 18px; }

  /* 响应式 */
  @media (max-width: 1200px) {
    .shop-page .products { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 768px) {
    .shop-page .products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .shop-toolbar { flex-direction: column; align-items: stretch; }
    .shop-categories { justify-content: center; }
  }
  @media (max-width: 480px) {
    .shop-page .products { grid-template-columns: 1fr; }
  }
