/* ===================================
   MOBILE MENU BUTTON STYLES
   Hamburger button for mobile navigation
   =================================== */

/* Mobile Menu Button - Simple and Clean */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #159611;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 99999 !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #1aad13;
    transform: translateY(-50%) scale(1.05);
}

.mobile-menu-btn.active {
    background: #d32f2f;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Show on mobile */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Adjust position based on header height */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .mobile-menu-btn {
        top: 65px;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        width: 45px;
        height: 45px;
        right: 15px;
        top: 60px;
    }
    
    .mobile-menu-btn span {
        width: 22px;
        height: 2.5px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        right: 12px;
        top: 55px;
    }
    
    .mobile-menu-btn span {
        width: 20px;
        height: 2.5px;
    }
}
