/* Container principal */
.account-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Agrupamento de conta e carrinho */
.account-cart-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* Botão do hamburguer */
.celular {
    display: none !important;
}




/* Estilos do carrinho permanecem */
#cart > .btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
}

#cart .fa {
    font-size: 20px;
    color: #FFF;
}

#cart .cart-count {
    background-color: #FFC107;
    color: #000;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    top: -5px;
    right: 10px;
}

/* Exibir apenas no celular */
@media (max-width: 768px) {
    .celular {
        display: flex !important;
        background: none;
        border: none;
        font-size: 20px;
        color: white;
        padding: 0px;
        align-items: center;
    }

    .account-cart {
        justify-content: space-between;
    }

    .account-cart-right {
        margin-left: auto;
    }

    .cart-bolinha {
        margin-left: 10px;
    }

    #cart > .btn {
    padding: 0px;
    }

    #cart > .btn img {
        display: flex;
    position: relative;
    left: 10px;
    }

    #cart .cart-count{
        right: 0px;
    }
}
