/* ── Footer ── */
.site-footer {
  background: #1a1a1a;
  color: #999;
  font-size: 13px;
  line-height: 1.6;
  margin-top: auto;
  border-top: 1px solid #2e2e2e;
}

/* 상단 링크 바 */
.footer-top {
  border-bottom: 1px solid #2e2e2e;
  padding: 18px 0;
}

.footer-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-top-inner a {
  color: #bbb;
  text-decoration: none;
  font-size: 12px;
  padding: 0 10px;
  border-right: 1px solid #3a3a3a;
  transition: color 0.15s;
}

.footer-top-inner a:last-child {
  border-right: none;
}

.footer-top-inner a:hover {
  color: #fff;
}

.footer-top-inner a.highlight {
  color: #f97316;
  font-weight: 600;
}

/* 본문 */
.footer-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* 로고 + 사업자 정보 */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo img {
  height: 28px;
}

.footer-logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.footer-desc {
  color: #666;
  font-size: 12.5px;
  line-height: 1.7;
}

.footer-biz {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #555;
}

.footer-biz span {
  display: inline;
}

.footer-biz .sep {
  margin: 0 6px;
  color: #333;
}

/* 고객센터 + 소셜 */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-cs-title {
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 6px;
}

.footer-cs-time {
  font-size: 12px;
  color: #555;
  margin-bottom: 14px;
}

.footer-cs-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-cs-btns a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.footer-cs-btns a.btn-primary {
  background: #f97316;
  color: #fff;
}

.footer-cs-btns a.btn-primary:hover {
  background: #ea6c0a;
}

.footer-cs-btns a.btn-outline {
  border: 1px solid #3a3a3a;
  color: #aaa;
  background: transparent;
}

.footer-cs-btns a.btn-outline:hover {
  border-color: #666;
  color: #fff;
}

/* 소셜 아이콘 */
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #888;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.15s, color 0.15s;
}

.footer-social a:hover {
  background: #f97316;
  color: #fff;
}

/* 하단 카피라이트 */
.footer-bottom {
  border-top: 1px solid #2e2e2e;
  padding: 16px 24px;
  text-align: center;
  font-size: 11.5px;
  color: #444;
}

.footer-bottom strong {
  color: #666;
}

/* 반응형 */
@media (max-width: 768px) {
  .footer-body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 16px 20px;
  }

  .footer-top-inner {
    padding: 0 16px;
  }
}
