.btn-profile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    background-color: #FFEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 0;
    border: none;
}

.btn-profile .profile-icon {
    width: 20px;
    height: 20px;
    fill: #930708;
    display: block;
    transform: translateY(-1px);
    /* slight lift to visually center */
}

.btn-profile:hover {
    background: #930708;
}

.btn-profile:hover .profile-1 {
    fill: #fff;
}

.hd-login-auth {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hd-login-auth a.hd-login-content {
    color: #222;
    display: none !important;
}

@media screen and (max-width: 1440px) {
    .btn-profile {
        width: 30px;
        height: 30px;
        padding: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .hd-login-auth a.hd-login-content {
        display: block;
        color: #222;
    }
}