/* 하단 고정 카카오챗봇 바로가기 */
/* 하단 고정 바 스타일 */
  .bottom-kakao-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    
    /* 카카오 노란색 배경 & 텍스트 스타일 */
    background-color: #FEE500;
    color: #191919;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    
    /* 요소 정렬 */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* 반응형 여백 (최소 12px ~ 최대 20px) */
    padding: clamp(12px, 2vh, 20px) 0;
    
    /* 반응형 폰트 크기 (최소 14px ~ 최대 20px) */
    font-size: clamp(14px, 2.5vw, 20px);
    
    /* 팝업보다 아래에 배치되도록 설정 (일반 팝업은 9999 이상) */
    z-index: 1000;
  }