/* Mobile Menu Styles */
.mobile-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-container.open {
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.close-mobile-nav {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-mobile-nav:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Menu Items */
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav > ul {
    padding-top: 60px;
}

.mobile-nav li {
    position: relative;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.mobile-nav a:hover {
    background: #f5f5f5;
}

.mobile-nav a.full {
    font-weight: 500;
}

.mobile-nav .dropdown {
    position: relative;
    padding-right: 40px;
}

.mobile-nav .dropdown .arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.mobile-nav .dropdown.open .arrow {
    transform: translateY(-50%) rotate(90deg);
}

/* Submenu Styles */
.mobile-nav .submenu {
    background: #f8f8f8;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
    height: 0;
}

.mobile-nav .submenu.active {
    opacity: 1;
}

.mobile-nav .submenu a {
    padding-left: 40px;
    font-size: 14px;
}

.mobile-nav .submenu .submenu a {
    padding-left: 60px;
}

.mobile-nav .submenu .submenu .submenu a {
    padding-left: 80px;
}

.mobile-nav .submenu .submenu .submenu .submenu a {
    padding-left: 100px;
}

.mobile-nav .submenu .submenu .submenu .submenu .submenu a {
    padding-left: 120px;
}

/* Badges */
.mobile-nav .badge-new {
    background: #ff6b6b;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
}

/* Scrollbar */
.mobile-nav::-webkit-scrollbar {
    width: 5px;
}

.mobile-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.mobile-nav::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .open-mobile-nav {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
}

/* Body scroll lock */
body.no-scroll {
    overflow: hidden;
} 