/* ============================================
   Supplier Info Page — Template 1
   카페24 미니멀 화이트 참고
   ============================================ */

.supplier-info-page {
  min-height: calc(100vh - 300px);
  background: #fff;
  padding: 48px 0 60px;
}

.supplier-info-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 페이지 헤더 */
.page-header {
  text-align: center;
  margin-bottom: 56px;
}

.page-title {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
  letter-spacing: -0.03em;
}

.page-subtitle {
  font-size: 13px;
  color: #aaa;
  margin: 0;
  font-weight: 400;
}

/* 섹션 공통 */
.info-section {
  background: #fff;
  border-radius: 0;
  padding: 0;
  margin-bottom: 48px;
  box-shadow: none;
  border: none;
  padding-bottom: 48px;
  border-bottom: 1px solid #f0f0f0;
}

.info-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.section-header {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title svg {
  width: 18px;
  height: 18px;
  color: #ccc;
  stroke-width: 2;
}

/* 회사 개요 */
.overview-content {
  padding: 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.overview-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.overview-label {
  font-size: 11px;
  font-weight: 500;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.overview-value {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  word-break: keep-all;
}

.category-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #f5f5f5;
  color: #333;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #111;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

.phone-link svg {
  width: 14px;
  height: 14px;
}

/* 로고/이미지 섹션 */
.logo-content {
  padding: 0;
}

.logo-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: #f9f9f9;
  border: none;
}

.logo-image-wrapper img {
  max-width: 100%;
  max-height: 360px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* 회사 소개 */
.description-content {
  padding: 0;
}

.description-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  word-break: keep-all;
}

.description-text p {
  margin: 0 0 12px;
}

.description-text p:last-child {
  margin-bottom: 0;
}

/* CTA 버튼 — 카페24 스타일 */
.cta-section {
  display: flex;
  gap: 8px;
  margin-top: 48px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: 1px solid #111;
  font-family: inherit;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: #111;
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  background: #000;
}

.btn-secondary {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  border-color: #111;
}

.btn-primary svg,
.btn-secondary svg {
  width: 16px;
  height: 16px;
}

/* 반응형 */
@media (max-width: 768px) {
  .supplier-info-page {
    padding: 36px 0 48px;
  }

  .supplier-info-container {
    padding: 0 16px;
  }

  .page-header {
    margin-bottom: 40px;
  }

  .page-title {
    font-size: 20px;
  }

  .info-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }

  .section-title {
    font-size: 14px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .overview-value {
    font-size: 13px;
  }

  .logo-image-wrapper {
    padding: 24px;
  }

  .logo-image-wrapper img {
    max-height: 280px;
  }

  .description-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .cta-section {
    flex-direction: column;
    gap: 8px;
    margin-top: 36px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .supplier-info-page {
    padding: 28px 0 36px;
  }

  .supplier-info-container {
    padding: 0 12px;
  }

  .page-title {
    font-size: 18px;
  }

  .section-title {
    font-size: 13px;
  }

  .overview-value {
    font-size: 12px;
  }

  .logo-image-wrapper {
    padding: 16px;
  }

  .logo-image-wrapper img {
    max-height: 220px;
  }
}