.header {
    display: none !important;

}


.categories {
    position: relative;
    display: inline-block;
    width: 220px;
}




/* Estilo base do botão */
.btn_cat {
    display: none;
    width: 100%;
    text-align: left;
    border-radius: 0;
    border: 1px solid #ccc;
    background-color: white;
    color: #333;
    padding: 8px 12px;
    cursor: pointer;
}

/* Mostra só o botão ativo por padrão */
.btn_cat.active {
    display: block;
    border-radius: 20px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='gray' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

/* Quando aberto, mostra todos */
.categories.open .btn_cat {
    display: block;
}

/* Primeira e última com cantos arredondados */
.categories.open .btn_cat:first-child {
    border-radius: 20px 20px 0 0;
}
.categories.open .btn_cat:last-child {
    border-radius: 0 0 20px 20px;
}

/* Hover */
.categories.open .btn_cat:hover {
    background-color: #f1f1f1;
    color: #EBA70C;
}


