/* products.html 전용 — style.css에 없는 규칙만 */
[data-chipbar]{scrollbar-width:none}
[data-chipbar]::-webkit-scrollbar{display:none}
.pd-img-slot{background:#E9EEF6;border-radius:14px;overflow:hidden;display:block;width:100%;height:100%;object-fit:cover}

/* 주요 취급 품목: 이미지 영역 고정, 품목 텍스트만 줄바꿈 */
/* 이미지가 텍스트 옆에 오는 폭(≥561px)에서는 품목 영역 높이를 이미지 기준(180px)으로
   고정 → 품목이 늘어도 그 영역 안에서만 줄바꿈되어 카드 높이(=전장·공조 기준)가 통일됨. */
@media (min-width:561px){
  .pd-items > div:first-child{height:180px;overflow:hidden}
  .pd-items > div:last-child{height:180px;min-height:0}
}
/* 모바일에서는 이미지를 품목 아래로 내려 전폭 배치 */
@media (max-width:560px){
  .pd-items{flex-direction:column}
  .pd-items > div:last-child{flex:0 0 auto;width:100%;min-height:200px}
}

