/* 공통 섹션 스타일 */
.section-header {
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
}
.section-header p {
  margin-top:.5rem;
  color:#666;
}

/* About */
.about-text p {
  margin-bottom:.75rem;
  line-height:1.7;
}
.about-icons li{
  margin-bottom:.4rem;
  font-size:.95rem;
}

/* 상품 카드 */
.product-card {
  border: none;
  border-radius: 1rem;
  overflow:hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  height:100%;
}
.product-card img {
  height: 180px;
  object-fit: cover;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

/* 유통 과정 */
.process-box {
  padding: 1.8rem 1.4rem;
  border-radius: 1rem;
  background:#fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  height:100%;
}
.process-box h6 {
  margin-top:.75rem;
  margin-bottom:.4rem;
  font-weight:600;
}
.process-box p {
  font-size:.92rem;
  color:#666;
}

/* 고객센터 / 직판장 안내 */
.info-box {
  border-radius:1rem;
  padding:1.8rem;
  background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  height:100%;
}
.info-box h5 {
  margin-bottom:.5rem;
  font-weight:600;
}
.info-box p {
  margin-bottom:.3rem;
  font-size:.95rem;
}