.floating-ui {
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  transition: max-height 0.3s ease;
}






.consult-box,
.quick-btn-box {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.consult-box a,
.quick-btn-box a {
  min-height: 48px; /* 권장값 */
  display: flex;
  align-items: center; /* 세로 정렬 */
  padding: 10px;
   font-size: 14px;
}

.quick-btn-box a {
  font-weight: bold;
}

  .quick-btn-box a span{
    padding-left:3px;
  }

.consult-box img,
.quick-btn-box img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}


/* 🔽 텍스트 묶음 (두 줄용 구조) */
.text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.text-wrap .label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.text-wrap .sub {
  font-size: 13px;
  color: #666;
}


/* ✅ 모바일 대응 */
@media (max-width: 760px) {
  .floating-ui {
    bottom: 20px;
        right: -18px;
       transform: scale(0.85);     
  }
  .consult-box a,
  .quick-btn-box a {
    min-height: 40px;
      padding:1px 0;
  }



  .text-wrap .sub {
    display: none;
  }


  .consult-box img,
  .quick-btn-box img {
    width: 50px;
    height: auto;
  }


  .quick-btn-box a span{
    padding-top:1px;
  }
}

}




