/* 하단 네브바 반응형 디자인 */
/* ========== 모바일 하단 네비게이션 ========== */
.bottom-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.bottom-mobile-nav .bottom-mobile-nav-inner  {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-mobile-nav .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #999;
    font-size: 12px;
    transition: color 0.3s;
    padding: 8px 0;
    
    line-height: 1.5 !important;  /* 추가! */
}

.bottom-mobile-nav .bottom-nav-item.active {
    color: #5BB6E2;
    font-weight: 600;
}

.bottom-mobile-nav .bottom-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.bottom-mobile-nav .bottom-nav-item:hover {
    color: #5BB6E2;
}

/* 모바일에서만 표시 + 하단 여백 추가 */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px; /* 네비 바 높이 + 여유 공간 */
    }
    
    .bottom-mobile-nav {
        display: block;
    }
    
    .precaution_wrap:last-of-type {
        margin-bottom: 20px; /* 마지막 요소에 추가 여백 */
    }
}

/*  nav 아이콘/텍스트 크기 강제 통일 */
/* .bottom-mobile-nav {
    font-size: 12px !important;
}

.bottom-mobile-nav .bottom-nav-item i {
    font-size: 20px !important;
    line-height: 1 !important;
} */