/*
  commercial-sink.css — /commercial-sink/ 전용 스타일.
  대형 주방·업소용 규격 정보 밀도를 강조하는 스펙박스/데이터그리드 컴포넌트.
  색상·폰트·간격 토큰은 tokens.css를 그대로 사용하며 재정의하지 않는다.
*/

/* ===== 히어로 보조 배지(업소용 규격 요약) ===== */
.cs-hero-tags{ display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; }
.cs-hero-tags span{
  display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4);
  color: var(--white); font-size: 12.5px; font-weight: 700; letter-spacing: .01em;
}

/* ===== 데이터 대시보드(스펙 요약 4~5칸) ===== */
.spec-dash{
  display: grid; gap: 1px; grid-template-columns: repeat(2, 1fr);
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: 28px;
}
@media (min-width: 768px){ .spec-dash{ grid-template-columns: repeat(4, 1fr); } }
.spec-dash__cell{ background: var(--card); padding: 18px 16px; }
.spec-dash__cell .label{ display: block; font-size: 12px; font-weight: 700; color: var(--ink-3); letter-spacing: .04em; margin-bottom: 8px; }
.spec-dash__cell .value{ display: block; font-size: clamp(19px, 3vw, 24px); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.spec-dash__cell .value small{ font-size: 13px; font-weight: 600; color: var(--ink-2); margin-left: 2px; }

/* ===== 전문 설명 + 스펙 사이드 레이아웃 ===== */
.cs-explain{ display: grid; gap: 28px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1024px){ .cs-explain{ grid-template-columns: minmax(0,1fr) 300px; gap: 36px; } }
.cs-explain__body p{ margin-bottom: 16px; }

/* ===== 스펙 박스(사이드 고정 카드) ===== */
.spec-box{
  background: var(--navy); color: var(--white); border-radius: var(--r-lg); padding: 22px;
  position: sticky; top: 76px;
}
.spec-box h3{ color: var(--white); font-size: 15px; letter-spacing: .02em; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.14); }
.spec-box dl{ margin: 0; display: grid; gap: 12px; }
.spec-box .row{ display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; padding-bottom: 12px; border-bottom: 1px dashed rgba(255,255,255,.14); }
.spec-box .row:last-child{ border-bottom: none; padding-bottom: 0; }
.spec-box dt{ color: #A8A29E; flex: none; }
.spec-box dd{ margin: 0; color: var(--white); font-weight: 700; text-align: right; }

/* ===== 구성요소 데이터그리드(조 수/재질/두께 등) ===== */
.data-grid{ display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); margin: 24px 0; }
@media (min-width: 768px){ .data-grid{ grid-template-columns: repeat(4, 1fr); } }
.data-grid__item{ border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--r); padding: 14px 16px; background: var(--card); }
.data-grid__item .k{ display: block; font-size: 12px; color: var(--ink-3); font-weight: 700; margin-bottom: 6px; }
.data-grid__item .v{ display: block; font-size: 15px; color: var(--ink); font-weight: 700; line-height: 1.4; }

/* ===== 주의사항 카드 ===== */
.notice-card{
  display: flex; gap: 14px; background: var(--mist); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px 22px;
}
.notice-card__icon{
  flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--accent-soft);
  color: var(--accent-deep); display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.notice-card p{ margin: 0; color: var(--ink-2); font-size: 14.5px; }
.notice-card p + p{ margin-top: 8px; }
