.menu_category {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

/* Style normal desktop */
.menu_category a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2196F3;
    color: white;
    border-radius: 20px 5px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.menu_category a:hover {
    background-color: #1976D2;
}


/* PC : rien ne change */
.menu_more,
.menu_hidden {
    display: none;
}

/* 📱 Mode tablette/mobile */
@media (max-width: 900px) {

    .menu_category {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .menu_category a {
        width: 55px;
        height: 55px;
        padding: 0;
        border-radius: 50%;
        background: #2196F3;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        text-decoration: none;
    }

    .menu_category a span {
        display: none;
    }
}