.cm-menu-container {
    position: relative;
    margin-bottom: 20px;
    z-index: 999;
}

#cm-toggle-btn {
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

#cm-toggle-btn:hover {
    background-color: #000;
}

#cm-toggle-btn:focus {
    outline: 2px solid #333;
    outline-offset: 2px;
}

#cm-category-list {
    display: none;
    list-style: none;
    background: white;
    padding: 8px;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1000;
}

#cm-category-list li {
    padding: 2px 0;
    margin: 0;
}

#cm-category-list a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 6px 10px;
    transition: all 0.2s ease;
    border-radius: 2px;
    font-size: 14px;
}

#cm-category-list a:hover {
    background-color: #f5f5f5;
    color: #000;
}

.cm-all-products {
    font-weight: 600;
    color: #333 !important;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
}

@media screen and (max-width: 480px) {
    .cm-menu-container {
        width: auto;
        margin-right: 10px;
    }
    
    #cm-category-list {
        width: 200px;
        right: 0;
        left: auto;
    }
}
