@charset "utf-8";
/* CSS Document */

/* 商品カード全体のレイアウト */
.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

/* 画像の整列とサイズ調整 */
.product-card picture {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* スマホ対応（高さを調整） */
@media (max-width: 768px) {
  .product-card picture {
    height: 180px;
  }
}

/* 商品名 */
.product-info h3 {
  font-size: 1rem;
  margin: 12px 0 8px;
  color: #333;
  line-height: 1.4;
}

/* 「詳しく見る」リンク */
.product-info a {
  color: #c02f1d;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #2c7c2f;
  padding-bottom: 2px;
}

.product-info a:hover {
  opacity: 0.8;
}
