/* Force All 3 Hamburger Lines to Show */
.mobile-menu-toggle {
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 10px;
    width: 35px;
    height: 30px;
    position: relative;
    display: none;
}

/* Reset and force all spans visible */
.mobile-menu-toggle span {
    display: block !important;
    position: relative !important;
    width: 25px !important;
    height: 3px !important;
    background-color: #ffffff !important;
    margin: 5px 0 !important;
    transition: all 0.3s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Specifically target each span */
.mobile-menu-toggle span:nth-child(1) {
    top: 0px !important;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 0px !important;
    opacity: 1 !important;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 0px !important;
}

/* Animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) !important;
    top: 8px !important;
    position: relative !important;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) !important;
    top: -8px !important;
    position: relative !important;
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
    }
}
