.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    transition: 0.3s;
    z-index: 10000;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
    line-height: 1;
}

.mobile-menu-toggle:hover {
    color: #f7d674;
    transform: scale(1.1);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(22, 27, 31, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu[style*="display: block"] {
    opacity: 1;
}

.mobile-menu-content {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 29.475rem;
    max-width: calc(100% - 2rem);
    padding: 4.5rem 1.5rem 1.5rem;
    background-color: #21292f;
    border-radius: 1rem;
    color: #ccc;
    font-size: 1.13rem;
    font-family: Poppins, sans-serif;
    line-height: 1.5rem;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.mobile-menu[style*="display: block"] .mobile-menu-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    height: 4rem;
    margin: 0rem 0rem 0.25rem;
    padding: 0rem 0.75rem;
    border-radius: 0.875rem;
    background-color: #1b2127;
    color: #ccc;
    font-size: 1.13rem;
    font-family: Poppins, sans-serif;
    line-height: 1.5rem;
    text-decoration: none;
    transition: 0.2s;
    gap: 0.75rem;
}

.mobile-nav-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    background-color: #252e35;
}

.mobile-nav-link.active {
    background-color: #1b2127;
    color: #f7d674;
}

.mobile-nav-link.active:hover {
    background-color: #1f272e;
}

.mobile-nav-link i {
    font-size: 1.5rem;
    width: 1.5rem;
    text-align: center;
}

.mobile-shop-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    height: 4rem;
    margin-top: 1rem;
    padding: 0rem 0.75rem;
    border-radius: 0.875rem;
    background-color: #f7d674;
    color: #fff;
    font-size: 1.13rem;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
    border-bottom: 0.25rem solid #efb736;
}

.mobile-shop-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.mobile-shop-button i {
    font-size: 1.5rem;
}