.wls-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wls-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wls-logo img {
    display: block;
}

.wls-desktop-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .wls-desktop-nav {
        display: flex;
    }
}

.wls-nav-link {
    text-decoration: none;
    transition: color 0.3s;
}

.wls-nav-link:hover {
    color: #db2777 !important;
}

.wls-contact-info {
    display: none;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .wls-contact-info {
        display: flex;
    }
}

.wls-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.wls-icon {
    width: 20px;
    height: 20px;
}

.wls-mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .wls-mobile-menu-btn {
        display: none;
    }
}

.wls-mobile-nav {
    padding: 1rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.wls-mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: inherit;
}

.wls-mobile-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wls-mobile-contact a {
    text-decoration: none;
    color: inherit;
}

/* Sticky header spacing */
body.elementor-page {
    padding-top: 80px;
}