.header-left .logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
    margin-right: 5px;
}

.header-left .logo img:hover {
    transform: scale(1.1);
}

.header-left .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-heading);
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile menu logo */
.popup-mobile-menu .menu-header .logo img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 5px;
}

/* Mobile view adjustments */
@media only screen and (max-width: 767px) {
    .header-left .logo img {
        width: 35px;
        height: 35px;
    }
    
    .header-left .logo a {
        font-size: 14px;
    }
}

/* Extra small devices */
@media only screen and (max-width: 575px) {
    .header-left .logo img {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }
    
    .header-left .logo a {
        font-size: 13px;
    }
}