/* ===== HEADER FIX FOR ALL SCREEN SIZES ===== */

#site-header,
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    z-index: 9999 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 80px !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

/* Desktop Navigation */
.nav-menu {
    display: none !important;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex !important;
        align-items: center !important;
        gap: 2rem !important;
    }
    
    .mobile-menu-controls {
        display: none !important;
    }
}

/* Mobile Menu Controls */
.mobile-menu-controls {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

@media (min-width: 1024px) {
    .mobile-menu-controls {
        display: none !important;
    }
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: 9999px !important;
    background-color: #25D366 !important;
    color: white !important;
}

/* ===== LOGO FIX ===== */
.site-logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.site-logo img,
.site-logo .custom-logo,
.custom-logo-link img {
    height: 50px !important;
    width: auto !important;
    max-height: 50px !important;
    object-fit: contain !important;
}

/* If logo is showing as text, hide the text version */
.site-logo .logo-text {
    display: none !important;
}

/* Content offset for fixed header */
main,
#content,
.site-content {
    padding-top: 100px !important;
}