/* Responsive Design */

/* 768px 이하에서 모바일 하단 네비게이션 표시 */
@media (max-width: 768px) {
    /* 데스크탑 상단 메뉴 숨김 */
    .desktop-nav {
        display: none !important;
    }

    /* body 패딩 조정 - 상단 메뉴가 없으므로 */
    body {
        padding-top: 0;
        padding-bottom: 70px; /* 하단 메뉴 공간 확보 */
    }

    /* 모바일 메뉴 아이템 호버 */
    .mobile-bottom-nav-item:hover {
        color: #007bff;
        background-color: #f8f9fa;
    }


    /* 모바일 메뉴 아이템 활성화 */
    .mobile-bottom-nav-item.active {
        color: #007bff;
        color: var(--primary-dark-blue);
    }


    /* 모바일 메뉴 아이콘 */
    .mobile-bottom-nav-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 4px;
    }

    .mobile-bottom-nav-icon svg {
        width: 24px;
        height: 24px;
    }


    /* 모바일 메뉴 라벨 */
    .mobile-bottom-nav-label {
        font-size: 11px;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
}

/* 작은 모바일 화면 (480px 이하) */
@media (max-width: 480px) {
    .mobile-bottom-nav {
        height: 65px;
    }

    body {
        padding-bottom: 65px;
    }

    .mobile-bottom-nav-icon svg {
        width: 20px;
        height: 20px;
    }

    .mobile-bottom-nav-label {
        font-size: 10px;
    }
}