/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: var(--bs-dark);
}

.mobile-menu-toggle i {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: var(--bs-dark);
}

.mobile-menu-close i {
    width: 24px;
    height: 24px;
}

.mobile-menu-content {
    height: calc(100vh - 70px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
    margin: 0;
    flex-grow: 1;
}

.mobile-nav-menu .menu-item {
    margin-bottom: 15px;
}

.mobile-nav-menu .menu-item a {
    display: flex;
    align-items: center;
    padding: 10px;
    color: var(--bs-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-menu .menu-item a i {
    margin-right: 15px;
    width: 20px;
    height: 20px;
}

.mobile-nav-menu .menu-item.active a,
.mobile-nav-menu .menu-item a:hover {
    background: #f8f9fa;
    border-radius: 8px;
    color: #809D79;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--bs-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-action-btn i {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.mobile-action-btn:hover {
    background: var(--bs-primary);
    color: white;
}

.mobile-action-btn .cart-count {
    background: var(--bs-primary);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 5px;
}

/* Media Queries */
@media (max-width: 991px) {
    .premium-nav {
        padding: 10px 15px;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        margin: 0;
        background: none;
        border: none;
        color: var(--bs-dark);
    }

    .mobile-menu-toggle i {
        width: 28px;
        height: 28px;
    }

    .brand {
        margin: 0;
        text-align: center;
    }

    .brand-tagline {
        display: none;
    }

    .nav-center {
        display: none;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 5px;
        margin: 0;
    }

    .nav-actions .action-btn {
        padding: 8px;
    }

    .nav-actions .btn-text {
        display: none;
    }

    .nav-actions i {
        width: 28px;
        height: 28px;
    }

    .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #F48148;
        color: white;
        border-radius: 50%;
        padding: 2px 6px;
        font-size: 12px;
        min-width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .action-btn {
        position: relative;
    }
}
