/**
 * 모바일 메인 메뉴 위젯 스타일
 *
 * widgets/branch/mobile-main-menu.php 에서 사용하는 CSS 스타일입니다.
 * 지점 도메인에서 768px 미만 화면에 표시되는 모바일 헤더 스타일을 정의합니다.
 */

/* ============================================ */
/* 모바일 topbar 컨테이너                         */
/* ============================================ */

/* 모바일 topbar 스타일 */
.mobile-topbar {
    background: transparent;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 0;
}

/* ============================================ */
/* 사이트명 링크 (브랜드)                          */
/* ============================================ */

/* 사이트명 링크 */
.mobile-topbar-brand {
    display: inline-flex;
    align-items: center;
    color: #212529;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 0;
    min-height: 44px;
    transition: color 0.2s ease;
}

.mobile-topbar-brand:hover {
    color: #0d6efd;
}

/* ============================================ */
/* 채팅 아이콘                                    */
/* ============================================ */

/* 채팅 아이콘 */
.mobile-topbar-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
    -webkit-tap-highlight-color: rgba(13, 110, 253, 0.1);
}

.mobile-topbar-chat:hover {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.mobile-topbar-chat:active {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

/* ============================================ */
/* 메뉴 아이콘 (햄버거)                            */
/* ============================================ */

/* 메뉴 아이콘 */
.mobile-topbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    text-decoration: none;
    font-size: 1.75rem;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
    -webkit-tap-highlight-color: rgba(13, 110, 253, 0.1);
}

.mobile-topbar-menu:hover {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.mobile-topbar-menu:active {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

/* ============================================ */
/* 모바일 헤더 로고                               */
/* ============================================ */

/* 모바일 헤더 로고 아이콘 */
.mobile-header-logo {
    border-radius: 4px;
    flex-shrink: 0;
}

/* ============================================ */
/* 디자인 모드 설정 버튼                           */
/* ============================================ */

/* 디자인 모드 설정 버튼 */
#mobile-header-settings-app .dropdown-toggle::after {
    display: none;
}
