/* 모바일 화면 (부트스트랩 lg 브레이크포인트 기준) */
@media (max-width: 991.98px) {
    /* 기존 PC 네비게이터 숨김 */
    .main-layout .navigator {
        display: none;
    }

    .mobile-bottom-nav {
        display: flex !important; /* d-lg-none 오버라이드를 위해 !important 사용 */
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4.5rem; /* 60px -> 4.5rem 으로 변경 */
        background-color: #24243e;
        border-top: 1px solid #444;
        z-index: 1000;
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: none;
        border: none;
        font-size: 0.875rem; /* 12px -> 14px */
        padding: 0.5rem 0; /* padding 조정 */
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 1.5rem; /* 20px -> 24px */
        margin-bottom: 0.25rem; /* margin 조정 */
    }
}

/* 전체 메뉴 */
.mobile-full-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a2e;
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-full-menu.active {
    transform: translateY(0);
}

.mobile-full-menu .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #24243e;
    color: #fff;
    flex-shrink: 0;
}

.mobile-full-menu .menu-header h2 {
    margin: 0;
    font-size: 1.2rem;
}

.mobile-full-menu .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-full-menu .menu-content {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-full-menu .navigator-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-full-menu .navigator-list li {
    margin-bottom: 15px;
}

.mobile-full-menu .navigator-list .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.mobile-full-menu .navigator-list .nav-link:hover {
    background-color: #2a2a4a;
}
