/* ==========================================================================
   product-custom.css
   商品紹介ページ固有スタイル
   ========================================================================== */

/* 商品一覧グリッド */
.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
  margin-top: 40px;
}

/* 商品アイテム */
.product-item__image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.product-item__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 商品名・価格 */
.product-item__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ece8e0;
  padding-bottom: 10px;
}

.product-item__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3d3d3d;
  letter-spacing: 0.03em;
}

.product-item__price {
  font-size: 1.4rem;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 説明文 */
.product-item__description {
  font-size: 1.35rem;
  line-height: 1.75;
  color: #888;
  margin-bottom: 10px;
}

/* タグ */
.product-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

/* タブレット：2カラム */
@media (max-width: 896px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

/* SP：1カラム */
@media (max-width: 639px) {
  .product-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-item__image {
    height: 200px;
  }
}
