/* Mobile Menu Styles */
/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 4px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -4px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #ff8c42, #ffa726);
    color: white;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
}

.mobile-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
    padding: 4px;
    transition: transform 0.3s;
    border-radius: 6px;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    padding: 1rem 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-item:hover {
    background: rgba(255, 140, 66, 0.05);
    border-left-color: #ff8c42;
    color: #ff8c42;
}

.mobile-menu-item.active {
    background: rgba(255, 140, 66, 0.1);
    border-left-color: #ff8c42;
    color: #ff8c42;
    font-weight: 600;
}

.mobile-menu-item svg {
    flex-shrink: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        left: -100%;
    }
    
    .mobile-logo-img {
        height: 28px;
    }
}

/* Utility class to prevent body scroll when menu is open */
.body-no-scroll {
    overflow: hidden;
}