.mobile-category-wrapper {
    display: none;
}

@media (max-width: 768px) {
    .mobile-category-wrapper {
        display: block;
        margin: 10px 15px;
    }

    .mobile-category-toggle {
        background-color: #F36A30;
        color: white;
        padding: 12px;
        text-align: center;
        font-weight: bold;
        cursor: pointer;
        border-radius: 4px;
    }

    .mobile-category-menu {
        display: none;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-top: 5px;
        z-index: 999;
    }

    .mobile-category-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-category-menu ul li a {
        display: block;
        padding: 12px;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        color: #333;
    }

    .mobile-category-menu ul li a:hover {
        background-color: #f2f2f2;
    }
}