/* 상담 배너 CSS */
.fixed-banner {
    position: fixed;
    bottom: 30px;
    left: 80px;
    display: flex;
    align-items: center;
    background: rgba(238, 245, 255, 0.4); /* 반투명 회색 */
    padding: 16px 32px 16px 80px; /* 왼쪽 패딩 줄이고, 오른쪽 넉넉하게 */
    border-radius: 999px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    color: black;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    min-width: 360px;
  }
  
  /* 동그란 버튼이 배너보다 왼쪽으로 튀어나오게 */
  .reservation-btn {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0003c0;
    color: white !important; /* 강제 적용 */
    text-decoration: none;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 20px;
    box-shadow: 0 3px 8px rgba(246, 246, 247, 0.3);
  }
  
  .reservation-btn strong {
    color: white !important; /* 강제 적용 */
    font-weight: 500 !important; /* 굵게 변경 */
    font-size: 20px !important; /* 글자 크기 키움 */
  }
  
  .reservation-btn span {
    font-size: 12px;
    opacity: 0.8;
    color: white !important; /* 강제 적용 */
  }
  
  .reservation-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
  }
  
  .reservation-info p {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 500;
  }
  
  /* 숫자와 요약 텍스트를 옆으로 나란히 */
  .count-line {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .count {
    display: flex;
    gap: 4px;
  }
  
  .count span {
    background-color: black;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
  }
  
  /* 텍스트 크기 조절 */
  .unit-big {
    font-size: 24px;      
    font-weight: 500;
    margin-left: 4px;
    color: black;
  }
  
  .summary-inline {
    font-size: 16px;        
    opacity: 0.8;
    margin-left: 6px;
  }

  /* 채팅 버튼 + 채팅 박스 CSS */
  .chat-widget {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background: white;
    border: 2px solid #ffde00;
    border-radius: 999px;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    text-decoration: none;
    z-index: 9999;
  }
  
  .chat-widget img {
    width: 60px;
    height: 60px;
    border-radius: 50%;           /* ✅ 동그랗게 만들기 */
    object-fit: cover;            /* ✅ 꽉 차게 만들기 */
    display: block;
  }
  
  .chat-widget span {
    color: #3c1e1e;
    font-weight: bold;
    font-size: 20px;
  }
  