/* Mobile Bottom Navigation Styles */
/* Mặc định ẩn trên Desktop */
.bottom-nav {
    display: none;
}

/* Chỉ hiển thị trên Mobile (màn hình < 768px) */
@media (max-width: 768px) {
    body {
        /* Thêm padding đáy để nội dung không bị che bởi menu */
        padding-bottom: calc(70px + env(safe-area-inset-bottom)) !important;
    }

    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -1px 10px rgba(0,0,0,0.05);
        z-index: 1000;
        
        /* Xử lý chiều cao và vùng an toàn cho iPhone đời mới */
        height: 60px;
        padding-bottom: env(safe-area-inset-bottom);
        height: calc(60px + env(safe-area-inset-bottom));
    }

    .nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #949494; /* Màu xám khi chưa chọn */
        height: 100%;
        transition: color 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-item i { font-size: 22px; margin-bottom: 4px; }
    .nav-item span { font-size: 11px; font-weight: 500; }

    /* Trạng thái Active */
    .nav-item.active { color: #0d6efd; }
    
    /* Đẩy nút Chat lên cao hơn để không bị che */
    .chat-widget-container {
        bottom: calc(80px + env(safe-area-inset-bottom)) !important;
    }
}