/* Bottom Menu Bar */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #ffffff;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 6px 0;
            border-top: 1px solid #dcdcdc;
            z-index: 1000;
        }

        /* Menu Item */
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: #000;
            text-decoration: none;
            flex: 1;
        }

        /* Icons */
        .nav-item img {
            width: 18px;
            height: 18px;
            margin-bottom: 4px;
        }

        /* Active Item */
        .nav-item.active {
            font-weight: bold;
            color: #000;
        }
        .nav-item.active span {
            padding-bottom: 2px;
        }

        /* Responsive for tablets & PC */
        @media (min-width: 768px) {
            .bottom-nav {
                position: static;
                flex-direction: row;
                justify-content: center;
                border-top: none;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
            .nav-item {
                flex: unset;
                margin: 0 20px;
            }
        }
