.top-buttons {
    display: flex;
    align-items: center;  
    justify-content: flex-end;  
    gap: 15px;  
    height: 100%;  
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;  
}

.social-link, 
.dealer-login-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff !important;  
}

.social-link:hover, 
.dealer-login-link:hover {
    color: #9B6A00 !important;  
}

.top-separator {
    color: #ffffff;
    opacity: 0.4;  
    font-size: 1.1rem;
    margin: 0 5px;  
}

.dealer-login-link {
    gap: 8px;  
    font-size: 1.3rem;
    font-weight: 400;
}

.become-dealer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    background-color: #9B6A00;  
    color: #ffffff !important;  
    text-decoration: none;
    border-radius: 50px;  
    font-size: 1.3rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;  
}

.become-dealer-btn:hover {
    background-color: #9B6A00;
    color: #ffffff !important;
}

.social-icon,
.dealer-icon {
    display: block;
}

.logged-in-link {
    display: flex;
    align-items: center;
    gap: 8px;  
    color: #ffffff !important; 
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.logged-in-link:hover {
    color: #9B6A00 !important;  
}

.avatar-icon {
    width: 24px;  
    height: 24px;
    display: block;
    
}

 
@media (max-width: 768px) {
    .top-buttons {
        justify-content: center;  
        flex-wrap: wrap;  
        padding: 10px 0;
    }
    
    
    .top-separator {
        display: none;
    }

    .become-dealer-btn {
        width: 100%; 
    }
}