/* ===== 내용 전체폭 확장 ===== */
#ctt_con,
#ctt_con .content {
  width:100% !important;
  max-width:100% !important;
  padding:0 !important;
  margin:0 !important;
}

/* 하단 고정배너에 가려지지 않도록 여유 여백 */
#ctt_con { padding-bottom:110px !important; }

#container_title { display:none; }

/* =========================================================
   이 페이지 전용 : B다이렉트샵 스타일 하단 배너 + 상담 모달
   클래스 접두어 : .bdir- 로만 사용 (다른 페이지와 충돌 방지)
   ========================================================= */

/* 하단 고정 배너 */
.bdir-fixed-bar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:9999;
  background:#2563eb; /* 진한 파란색 */
  color:#fff;
  border-radius: 15px 15px 0px 0px;
    max-width:1200px;
  margin:0 auto;
}

.bdir-fixed-inner{
  padding:15px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  box-sizing:border-box;
}

.bdir-fixed-left{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.bdir-fixed-title{
  font-size:25px;
  font-weight:700;
}

.bdir-fixed-desc{
  font-size:20px;
  opacity:.9;
}

.bdir-fixed-right{
  display:flex;
  align-items:center;
  gap:8px;
}

/* 전화 버튼 */
.bdir-tel-link{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  color:#fff;
  padding:10px 50px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.3);
  min-width:120px;
}
.bdir-tel-label{
  font-size:18px;
  opacity:.9;
}
.bdir-tel-num{
  font-size:25px;
  font-weight:700;
}

/* 상담신청 버튼 */
.bdir-open-modal-btn{
  border:none;
  outline:none;
  cursor:pointer;
  border-radius:999px;
  padding:25px 30px;
  font-size:20px;
  font-weight:700;
  background:#ffffff;
  color:#2563eb;
  white-space:nowrap;
}

/* ================== 모달 공통 ================== */
.bdir-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:10000;
}
.bdir-modal.is-open{ display:block; }

.bdir-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.bdir-modal-dialog{
  position:relative;
  max-width:420px;
  margin:60px auto;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

/* 모달 헤더 */
.bdir-modal-header{
  padding:18px 20px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid #eee;
}
.bdir-modal-title{
  font-size:18px;
  font-weight:700;
}
.bdir-modal-close{
  border:none;
  background:transparent;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

/* 모달 바디 */
.bdir-modal-body{
  padding:18px 20px 20px;
  max-height:70vh;
  overflow-y:auto;
  font-size:13px;
}

.bdir-form-row{
  margin-bottom:12px;
}

.bdir-label{
  display:block;
  font-size:13px;
  font-weight:600;
  margin-bottom:6px;
}
.bdir-label .req{
  color:#e53935;
  margin-left:4px;
  font-size:11px;
}

.bdir-input{
  width:100%;
  box-sizing:border-box;
  padding:9px 10px;
  border-radius:6px;
  border:1px solid #ddd;
  font-size:14px;
}

/* 체크박스 영역 */
.bdir-check-wrap{
  margin:6px 0;
}
.bdir-check-item{
  display:flex;
  align-items:flex-start;
  gap:6px;
  margin-bottom:6px;
  font-size:12px;
}
.bdir-check-item input[type="checkbox"]{
  margin-top:2px;
}
.bdir-check-label strong{
  color:#333;
}

/* 상담센터 안내 박스 */
.bdir-info-box{
  margin-top:10px;
  padding:10px 12px;
  border-radius:8px;
  background:#f5f6ff;
  font-size:11px;
  line-height:1.5;
  color:#555;
}

/* 소상공인 맞춤 상담 */
.bdir-smallbiz-box{
  margin-top:14px;
  padding:10px 12px;
  border-radius:8px;
  border:1px dashed #a2a6ff;
  background:#fbfbff;
  font-size:11px;
}
.bdir-smallbiz-title{
  font-weight:600;
  margin-bottom:4px;
}

/* 모달 하단 버튼 */
.bdir-modal-footer{
  padding:12px 20px 18px;
  border-top:1px solid #eee;
}
.bdir-submit-btn{
  width:100%;
  border:none;
  border-radius:8px;
  padding:11px 0;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  background:#2413ff;
  color:#fff;
}

/* ========== 반응형 ========== */
@media (max-width:768px){
  .bdir-fixed-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:12px 14px 14px;
  }
  
  .bdir-fixed-title{ font-size:17px;}
  .bdir-fixed-desc{ font-size:16px;letter-spacing:-0.5px;}
  .bdir-fixed-right{
    width:100%;
    justify-content:space-between;
  }
  .bdir-tel-link{
    flex:1;
    align-items:center;
      padding:10px 20px;
  }
  .bdir-tel-label{font-size:13px;}
  .bdir-tel-num{font-size:18px;}
  .bdir-open-modal-btn{
    flex:1;
    text-align:center;
    padding:15px 15px;
    font-size:18px;
  }
  .bdir-modal-dialog{
    margin:40px 16px;
  }
}
/* ============================
   🔽 스크롤 안내 공통 스타일
============================ */
.scroll-guide{
  position:fixed;
  bottom:200px;
  left:50%;
  transform:translateX(-50%);
  background:rgba(0,0,0,0.6);
  color:#fff;
  padding:20px 40px;
  border-radius:40px;
  font-size:18px;
  z-index:9999;
  backdrop-filter:blur(4px);
  display:flex;
  align-items:center;
  gap:8px;
  opacity:1;
  transition:opacity .4s ease, transform .4s ease;
  cursor:pointer;
}

/* 아이콘 크기 */
.scroll-guide-icon{
  width:24px;
  height:24px;
  flex-shrink:0;
}

/* 사라질 때 */
.scroll-guide.hide{
  opacity:0;
  transform:translateX(-50%) translateY(20px);
  pointer-events:none;
}

/* 텍스트 기본값: PC 기준으로 PC문구만 보이게 */
.scroll-guide-text-mo{ display:none; }
.scroll-guide-text-pc{ display:inline; }

/* 모바일일 때: 모바일 문구만 보이게 */
@media(max-width:768px){
  .scroll-guide{
    font-size:13px;
    padding:15px 30px;
    bottom:90px;
  }
  .scroll-guide-text-pc{ display:none; }
  .scroll-guide-text-mo{ display:inline; }
}
  #ch-plugin, 
  #ch-plugin-launcher, 
  .ch-plugin-launcher, 
  #channel-talk {
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
  }