/* =============================================
   出品リスト ページ専用CSS
   ============================================= */

.list-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
}

/* ---- カテゴリヘッダー ---- */
.list-category {
  margin-bottom: 0;
}

.list-category-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 0 32px;
}
.list-category-header .cat-icon {
  flex-shrink: 0;
}
.list-category-header .cat-icon img {
  width: auto;
  display: block;
}
.list-category-header .cat-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.list-category-header .cat-ruby {
  font-size: .72rem;
  display: block;
  letter-spacing: .15em;
  margin-bottom: 2px;
}
.list-category-header .cat-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .04em;
  color: #333;
  line-height: 1;
}

/* ---- 店舗グリッド ---- */
.list-shops {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  border-top: 1px dashed #888;
  border-bottom: 1px dashed #888;
}
/* 連続するlist-shopsのborder-topを打ち消して重複を防ぐ */
.list-shops + .list-shops {
  border-top: none;
  margin-top: -1px;
}

.list-shops-divider {
  background: transparent;
  border-left: 1px dashed #888;
  width: 0;
  margin: 32px 0;
}

.list-shop {
  padding: 32px 32px;
}
.list-shop:nth-child(1) {
  padding-left: 0;
}
.list-shop:nth-child(3) {
  padding-right: 0;
}

/* ---- 店舗名 ---- */
.list-shop-name {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: .02em;
}

/* ---- 店舗説明 ---- */
.list-shop-desc {
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---- 商品リスト ---- */
.list-products {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}



.list-product {
  position: relative;
  padding-left: 20px;
}
.list-product::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8622a;
  flex-shrink: 0;
}
.list-product-body {}

.list-product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
  line-height: 1.5;
}

.list-product-info {
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 4px;
}

.list-product-note {
  font-size: .95rem;
  line-height: 1.6;
}

/* ---- カテゴリ間の余白 ---- */
.list-category + .list-category {
  margin-top: 56px;
}

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 640px) {
  .list-page {
    padding: 40px 0 60px;
  }
  .list-category-header {
    gap: 14px;
    padding: 36px 0 24px;
  }
  .list-category-header .cat-icon img {
    height: 64px;
  }
  .list-shops {
    grid-template-columns: 1fr;
    border-bottom: none;
  }
  .list-shops-divider {
    display: none;
  }
  .list-shop {
    padding: 28px 0 !important;
    border-bottom: 1px dashed #888;
  }
}
