/* Shared mobile menu styles */
.wia-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    position: relative;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 10px;
    margin: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: auto;
}

.wia-mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #222222;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.wia-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.wia-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.wia-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    border-top: 1px solid #F0F0F0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 1000;
}

.wia-mobile-menu.active {
    max-height: 70vh;
    padding: 8px 0 16px;
}

.wia-mobile-menu a {
    display: block;
    color: #222222;
    text-decoration: none;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: 1px solid #F5F5F5;
}

.wia-mobile-menu a:last-child {
    border-bottom: none;
}

@media (max-width: 992px) {
    .wia-menu {
        display: none;
    }
    .wia-mobile-toggle {
        display: flex;
    }
    .wia-mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .wia-mobile-menu a {
        font-size: 1rem;
    }
}
