/* Floating Kakao OpenChat 상담 버튼 */
.floating-kakao-chat {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #FEE500;
  color: #181600;
  font-family: 'Noto Sans KR', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), 0 3px 10px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(24, 22, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.floating-kakao-chat:hover,
.floating-kakao-chat:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 5px 14px rgba(0, 0, 0, 0.14);
  filter: brightness(1.02);
  color: #181600;
  text-decoration: none;
  outline: none;
}

.floating-kakao-chat__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #181600;
  color: #FEE500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
}

.floating-kakao-chat__text {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .floating-kakao-chat {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    min-height: 50px;
    padding: 0 16px;
    font-size: 15px;
  }

  .floating-kakao-chat__icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}

@media print {
  .floating-kakao-chat {
    display: none !important;
  }
}
