/* 移动端导航样式 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #C9A063;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .nav-right.active {
        right: 0;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .main-nav ul {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }
    
    .main-nav li {
        margin: 10px 0 !important;
        width: 100%;
        text-align: left !important;
        justify-content: flex-start !important;
        display: flex !important;
        align-items: flex-start !important;
    }
    
    .main-nav a {
        font-size: 18px;
        padding: 10px 0;
        display: block !important;
        width: 100%;
        text-align: left !important;
        justify-self: flex-start !important;
    }
    
    .language-selector {
        margin-top: 20px;
        align-self: flex-start;
    }
    
    /* 汉堡菜单动画 */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}