.menu-toggle {
    display: none;
}

/* .main-nav-bar ul {
    display: flex;
    align-items: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 54px;
} */

@media (max-width: 700px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        background: #22b573;
        color: #fff;
        font-size: 1.1rem;
        cursor: pointer;
        user-select: none;
        border: none;
        width: 100%;
    }

    .menu-toggle span {
        font-weight: 600;
    }

    .menu-toggle .icon-menu {
        font-size: 1.5rem;
    }

    .main-nav-bar {
        position: relative;
    }

    .main-nav-bar>ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #22b573;
        flex-direction: column;
        padding: 0;
        margin: 0;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .main-nav-bar>ul.show {
        display: flex;
    }

    .main-nav-bar ul li {
        width: 100%;
        margin: 0;
        background-color: #22b573;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav-bar ul li a {
        padding: 15px 20px;
        width: 100%;
        text-align: left;
    }

    .nav-category {
        margin: 0;
        border-radius: 0;
        background: #111;
        color: white;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .category-dropdown {
        position: absolute;
        top: 0;
        left: 100%;
        width: 200px;
        background: #fff;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        display: none;
        z-index: 1001;
    }

    .nav-category:hover .category-dropdown {
        display: block;
    }

    .category-dropdown ul {
        width: 100%;
        background: #fff;
        padding: 0;
    }

    .category-dropdown ul li a {
        padding: 12px 20px;
        color: #333;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .category-dropdown ul li a:hover {
        background: #f5f5f5;
        color: #22b573;
    }

    .nav-category .icon-menu,
    .nav-category .icon-down {
        transition: transform 0.3s;
    }

    /* Đặc biệt cho mobile */
    @media (max-width: 700px) {
        .nav-category {
            background: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .category-dropdown {
            position: static;
            width: 100%;
            display: none;
            box-shadow: none;
        }

        .nav-category.active .category-dropdown {
            display: block;
        }

        .category-dropdown ul {
            background: rgba(0, 0, 0, 0.1);
        }

        .category-dropdown ul li a {
            color: white;
            padding-left: 40px;
        }

        .category-dropdown ul li a:hover {
            background: rgba(0, 0, 0, 0.2);
            color: white;
        }

        .nav-category.active .icon-down {
            transform: rotate(180deg);
        }
    }
}