@charset "UTF-8";
/* mobile-bar.css — 계산기 계열 고정버튼을 지역 랜딩(.mfix)과 통일
   2026-07-24. btv·btvcable·btvpop 공용. components.css 뒤에 로드해 이 페이지들만 덮어씀.
   상담 동작은 각 페이지 기존 모달(openMobileInquiry) 유지. */

.mobile-fixed-buttons {
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-top: 1px solid #d8e0f0;
  border-radius: 0;                 /* 랜딩은 각진 상단 */
  box-shadow: none;
  max-width: none;
  left: 0;
  transform: none;
  overflow: visible;
}
/* 순서: 상담(옐로우) 먼저, 전화(블루) 뒤 — 랜딩과 동일 */
.mobile-fixed-buttons .mobile-inquiry-btn { order: 1; }
.mobile-fixed-buttons .mobile-call-btn    { order: 2; }

.mobile-fixed-buttons .mobile-call-btn,
.mobile-fixed-buttons .mobile-inquiry-btn {
  flex-direction: row;              /* 아이콘·글자 가로 */
  gap: 7px;
  flex: 1;
  width: auto;
  float: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
}
.mobile-fixed-buttons .mobile-inquiry-btn {   /* 상담 = 옐로우 바탕 + 네이비 글씨 */
  background: #F2A81E !important;
  color: #0b1c4d !important;
}
.mobile-fixed-buttons .mobile-inquiry-btn i { color: #0b1c4d !important; }
.mobile-fixed-buttons .mobile-call-btn {      /* 전화 = 블루 바탕 + 흰 글씨, 살짝 좁게 */
  background: #1E40AF !important;
  color: #fff !important;
  flex: 0.7;
}
.mobile-fixed-buttons .mobile-call-btn i { color: #fff !important; }
.mobile-fixed-buttons i {
  font-size: 1rem;
  margin-bottom: 0;                 /* 세로 배치용 여백 제거 */
}
