/*
Theme Name: Kood Al Khleeg Theme
Author: Abdalrahman Eslam
Version: 1.0
*/

.custom-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998; 
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -320px; 
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 99999; 
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.custom-mobile-menu-sidebar.active {
    right: 0; 
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
}

.sidebar-logo img {
    max-width: 140px;
    height: auto;
}

.close-sidebar-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.sidebar-content {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 0;
    border-bottom: 1px solid #f1f1f1;
}

.mobile-nav-list li a {
    text-decoration: none !important;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    transition: color 0.2s;
}

.mobile-nav-list li a:hover {
    color: #6868d8; 
    padding-right: 5px;
}

.-mobile-menu-button {
    cursor: pointer;
    z-index: 100;
}