/* Tab：左对齐 */
.page.has-fav-content {
  background: #fff;
}

#favTabs.sub-tabs {
  justify-content: flex-start;
  gap: 28px;
  padding: 0 16px;
}

#favTabs .sub-tab {
  flex: none;
  padding: 14px 0;
}

#favTabs .sub-tab.active::after {
  left: 0;
  transform: none;
  width: 100%;
}

/* 列表 */
.fav-list {
  background: #fff;
  min-height: calc(100vh - 120px);
}

.fav-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  border-bottom: 1px solid #f5f5f5;
}

.fav-item:last-child {
  border-bottom: none;
}

.fav-item:active {
  background: #fafafa;
}

/* 商户缩略图 4:3 */
.fav-merchant .fav-thumb {
  width: 88px;
  height: 66px;
  border-radius: 6px;
  background: #eee center/cover no-repeat;
  flex-shrink: 0;
}

/* 商品缩略图 1:1 */
.fav-product .fav-thumb {
  width: 88px;
  height: 88px;
  border-radius: 6px;
  background: #eee center/cover no-repeat;
  flex-shrink: 0;
}

.fav-body {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.fav-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.fav-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.fav-hours {
  flex-shrink: 0;
  font-size: 13px;
  color: #b8860b;
  white-space: nowrap;
}

.fav-meta {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}

.fav-row-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.fav-reviews {
  font-size: 13px;
  color: #999;
}

.fav-sales {
  font-size: 13px;
  color: #999;
  flex-shrink: 0;
}

.fav-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.fav-price-label,
.fav-price {
  color: var(--red);
  font-weight: 700;
}

.fav-price-label {
  font-size: 14px;
}

.fav-price {
  font-size: 18px;
}
