body {
  padding-bottom: 0;
}

.floating-contact {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
  pointer-events: none;
}

.floating-contact__button {
  display: inline-flex;
  min-width: 56px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border: 1px solid rgba(24, 59, 91, 0.12);
  border-radius: 7px;
  background: #FFFFFF;
  color: #183B5B;
  box-shadow: 0 12px 28px rgba(24, 59, 91, 0.12);
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  pointer-events: auto;
}

.floating-contact__button--naver {
  border-color: rgba(3, 199, 90, 0.18);
  background: #03C75A;
  color: #FFFFFF;
}

.floating-contact__button--kakao {
  border-color: rgba(250, 225, 0, 0.42);
  background: #FAE100;
  color: #1F2937;
}

.floating-contact__button--phone {
  border-color: rgba(242, 140, 40, 0.28);
  background: #F28C28;
  color: #FFFFFF;
}

.floating-contact__button:focus-visible {
  outline: 3px solid rgba(242, 140, 40, 0.46);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .floating-contact {
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    border-top: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .floating-contact__button {
    width: 64px;
    min-width: 64px;
    min-height: 34px;
    padding: 0 5px;
    font-size: 12px;
  }
}
