body a,
.site-footer a,
.site-footer .footer-info a,
.site-footer .footer-links a {
  text-decoration: none !important;
  color: inherit !important;
}

.dotted {
  border: none;
  border-top: 2px dotted #aaa;   /* 연한색 + 두께 증가 */
  margin: 30px 0;
}

/* ✅ Footer 기본 */
.site-footer {
  background: var(--theme-color);
  color: #fff;
    padding-top: 20px;
    padding-bottom: 80px !important;
  font-size: 14px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 15px;
}

.footer-info {
  font-weight: 200;
  flex: 1 1 300px;
  line-height: 1.6;
}

.footer-info .company_name {
  font-weight: 400;
  font-size: 15px;
  padding-bottom: 10px;
}

.footer-links {
  font-weight: 300;
  flex: 1 1 180px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 15px;
  font-size: 14px;
}

.footer-links a {
  color: #fff;
  text-decoration: none !important;
}
.footer-links a:hover {
  text-decoration: none !important;
}

/* ✅ PC 플로팅 버튼 */
.floating-items {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 9998;
}

.floating-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  // background: #4f7ce6;
  // color: #fff;
  font-size: 20px;
  transition: width 0.3s ease, padding 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  text-decoration: none !important;
}

.floating-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 20px;
  flex-shrink: 0;
}

.floating-item span {
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-item:hover {
  width: auto;
  padding: 0 15px;
}
.floating-item:hover span {
  opacity: 1;
}

.floating-item.call         { background: #28a745; color: #fff !important; }     /* ☎️ 전화: 가장 우선 */
.floating-item.sms          { background: #2ecc71; color: #fff !important; }
.floating-item.kakao        { background: #f7e600; color: #000 !important; }     /* 💬 카카오톡: 상담 수단 */
.floating-item.n_talk       { background: #00bf38; color: #fff !important; }     /* 💬 네이버 톡톡 */
.floating-item.map          { background: #dc3545; color: #fff !important; }     /* 📍 오시는 길 */
.floating-item.blog         { background: #41b649; color: #fff !important; }     /* 📘 블로그 */
.floating-item.youtube      { background: #ff0000; color: #fff !important; }     /* ▶️ 유튜브 */
.floating-item.instagram    { background: #e1306c; color: #fff !important; }     /* 📸 인스타그램 */
.floating-item.top          { background: #fff; color: #343a40; border: 1px solid var(--theme-color) !important; } /* 🔝 맨 위로 */

/* ✅ 모바일용 오버레이 + 버튼 */
.floating-toggle,
.floating-menu,
.floating-overlay {
  display: none;
}

@media (max-width: 768px) {
  .floating-items {
    display: none;
  }

  .floating-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    z-index: 9997;
  }

  .floating-overlay.active {
    display: block;
  }

  .floating-toggle {
    display: block;
    position: fixed;
    right: 15px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #333;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    z-index: 9999;
  }

  .floating-toggle i::before {
    content: "\f142";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }

  .floating-toggle.open i::before {
    content: "\f00d";
  }

  .floating-menu {
    display: flex;
    position: fixed;
    right: 15px;
    bottom: 80px;
    flex-direction: column;
    gap: 8px;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .floating-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  .floating-menu a {
    display: block;
    width: 45px;
    height: 45px;
    background: #4f7ce6;
    color: #fff !important;
    font-size: 22px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .floating-menu a:hover {
    background: #375bb0;
  }

/* ✅ 모바일용 Footer에서 여백 줄이기 */

  .site-footer {
    padding-top: 20px;
    padding-bottom: 80px;
  }
  .footer-inner {
    padding: 0 16px;
    gap: 4px;
  }
  .footer-info {
    font-size: 13px;
    line-height: 1.3;
  }
  .footer-info > div {
    margin: 1px 0;
  }
  .footer-info a {
    color: inherit;
    text-decoration: none;
  }
  .footer-links {
    display: none;
  }

  footer::after {
    display: none;
  }
}

/* ✅ 하단 고정 띠*/
/* ✅ SUIT 폰트 적용 */
@import url('https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css');

.bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #2b2b2b;
  color: #fff;
  text-align: center;
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  padding: 12px 0px;
  z-index: 500 !important;  /* ✅ 띠는 플로팅보다 낮게 */
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);
  line-height: 1.5;
}

.bottom-banner a {
  color: #fff;
  text-decoration: none;
}

/* ✅ 한글만 약간 작게 */
.bottom-banner a span[lang="ko"] {
  font-size: 12.5px;
}

/* Page title */
.page-title{
  font-size: 17px;
}

/* ✅ 모바일 대응 */
@media (max-width: 768px) {
  .bottom-banner {
    font-size: 15px;
    padding: 12px 0px;
  }
  .bottom-banner a span[lang="ko"] {
    font-size: 13.5px;
  }
}