/* Increase Logo Size for Salla */
.header-wrapper .header-logo img {
    max-height: 200px !important; /* Adjust height as needed */
    width: auto !important;       /* Keeps the proportions correct */
    transition: transform 0.3s ease;
}

/* Optional: Make it slightly larger on desktop specifically */
@media (min-width: 1000px) {
    .header-wrapper .header-logo img {
        max-height: 150px !important;
    }
}