/*
 * V139 · 门店商品列宽校正
 *
 * 表格的核心任务是快速辨认商品，因此把主要视觉空间交给
 * “商品名称 / 规格”。UPC 只保留完整显示 13 位条码所需的宽度，
 * 避免旧版第 4、5 列规则错位造成大块空白。
 */
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(1),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(1) { width: 2.2% !important; }

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(2),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(2) { width: 4.8% !important; }

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(3),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(3) { width: 6.8% !important; }

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(4),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(4) { width: 8.2% !important; }

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(5),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(5) { width: 23% !important; }

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(6),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(6) { width: 5.8% !important; }

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(7),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(7) { width: 13% !important; }

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(8),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(8) { width: 9.5% !important; }

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(9),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(9) { width: 7.5% !important; }

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(10),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(10) { width: 6.8% !important; }

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(11),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(11) { width: 6.8% !important; }

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(12),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(12) { width: 5.6% !important; }

.view-root[data-view="catalog"] .store-product-row-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.view-root[data-view="catalog"] .store-product-row-actions .small-button {
  min-width: 32px;
  height: 27px;
  padding: 0 5px;
  font-size: 10.5px;
  white-space: nowrap;
}

.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(4),
.view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(4) {
  padding-right: 8px;
  padding-left: 8px;
}

.view-root[data-view="catalog"] .store-catalog-panel .catalog-upc {
  overflow: hidden;
  color: #294c7a;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.view-root[data-view="catalog"] .store-catalog-panel .store-product-summary {
  padding-right: 12px;
}

.view-root[data-view="catalog"] .store-catalog-panel .store-product-summary > strong {
  font-size: 12px;
  line-height: 1.25;
}

.view-root[data-view="catalog"] .store-catalog-panel .store-product-summary > span {
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th,
  .view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td {
    padding-right: 4px;
    padding-left: 4px;
  }

  .view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(4),
  .view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(4) { width: 9.4% !important; }

  .view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger th:nth-child(5),
  .view-root[data-view="catalog"] .store-catalog-panel .store-product-ledger td:nth-child(5) { width: 23.8% !important; }

  .view-root[data-view="catalog"] .store-catalog-panel .catalog-upc { font-size: 11px; }
}
