/* 한국어/일본어 폰트 보정 */
body {
  font-family: Inter, "Malgun Gothic", "맑은 고딕", "Hiragino Kaku Gothic ProN", "Meiryo", Helvetica, sans-serif;
}

/* 브랜드 카드 커버 */
.brand-card .brand-cover {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card .brand-cover img {
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0.475rem;
}
.brand-card:hover {
  outline: 2px solid var(--bs-primary);
}

/* 제품 카드 썸네일 */
.product-card .product-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 0.475rem 0.475rem 0 0;
  overflow: hidden;
}
.product-card .product-thumb img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
}
.product-card:hover {
  outline: 2px solid var(--bs-primary);
}
.product-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 제품 상세 이미지 */
.detail-image img {
  max-height: 420px;
  object-fit: contain;
}
