/* Mobile Menu Hamburger & Navigation Styles */

.lakum-header__mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.lakum-header__mobile-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 300ms;
    position: relative;
}

.lakum-header__mobile-icon::before,
.lakum-header__mobile-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 300ms;
}

.lakum-header__mobile-icon::before {
    top: -8px;
}

.lakum-header__mobile-icon::after {
    bottom: -8px;
}

.lakum-header__mobile-toggle--active .lakum-header__mobile-icon {
    background: transparent;
}

.lakum-header__mobile-toggle--active .lakum-header__mobile-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.lakum-header__mobile-toggle--active .lakum-header__mobile-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Show hamburger menu on mobile - ONLY below 768px */
@media (max-width: 768px) {
    .lakum-header__mobile-toggle {
        display: flex !important;
    }
}
[dir="rtl"] .lakum-header__mobile-toggle {
    flex-direction: row-reverse;
}
