/* TASFUL市場 — 商品グリッド（お気に入り・最近見た・出品者） */
.tasful-market-catalog-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 16px 16px 0;
}

.tasful-market-catalog-main__title {
  margin: 0 0 6px;
  font-size: 1.125rem;
  font-weight: 900;
}

.tasful-market-catalog-main__lead {
  margin: 0 0 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--tasful-market-muted);
}

.tasful-market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tasful-market-grid-card {
  background: #fff;
  border: 1px solid var(--tasful-market-border);
  border-radius: 10px;
  overflow: hidden;
}

.tasful-market-grid-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.tasful-market-grid-card__img {
  aspect-ratio: 1;
  background: #f3f4f6;
  overflow: hidden;
}

.tasful-market-grid-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tasful-market-grid-card__body {
  padding: 10px;
}

.tasful-market-grid-card__title {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tasful-market-grid-card__rating {
  margin: 0 0 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--tasful-market-muted);
}

.tasful-market-grid-card__price {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 900;
  color: #b12704;
}

.tasful-market-grid-card__badge {
  display: inline-flex;
  margin-top: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.625rem;
  font-weight: 800;
}

.tasful-market-catalog-empty {
  padding: 32px 16px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--tasful-market-border);
  border-radius: 12px;
}

.tasful-market-catalog-empty__icon {
  margin: 0 0 12px;
  font-size: 2.5rem;
  line-height: 1;
}

.tasful-market-catalog-empty__text {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  font-weight: 700;
}

.tasful-market-catalog-empty__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 160px;
  padding: 0 20px;
  border-radius: 999px;
  background: #ffd814;
  border: 1px solid #e6c200;
  color: #111;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
}

body.tasful-market-catalog-page {
  padding-top: calc(var(--tasful-market-header-total-h, 152px) + env(safe-area-inset-top, 0px)) !important;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
  background: var(--tasful-market-bg);
}
