/* Mega Menu Overlay */
#mega-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    max-width: 90vw;
    height: 100vh;
    background: #f9f9f9;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

#mega-menu-overlay.open {
    transform: translateX(0);
}

/* Close Button */
#mega-menu-overlay .close-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
}

#mega-menu-overlay .close-btn:hover {
    color: #007bff;
}

/* Backdrop */
#mega-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

#mega-menu-backdrop.open {
    display: block;
}

/* Side Canvas Wrapper */
.side_canvas_wrapper {
    padding: 0 20px 30px;
}

.side_canvas_wrapper .row {
    margin-top: 0;
}

.side_canvas_wrapper .col-6 {
    padding: 0 10px;
}

/* Menu Items */
.d-flex.align-items-center {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

.d-flex.align-items-center:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Icon Wrapper */
.d-flex.align-items-center .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    background: #f0f0f0;
    border-radius: 50%;
}

.d-flex.align-items-center .icon-wrapper i,
.d-flex.align-items-center .icon-wrapper img {
    font-size: 1.2rem;
    color: #555;
}

/* Menu Item Text */
.d-flex.align-items-center p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.d-flex.align-items-center p span {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: #777;
}

/* Utility Classes */
.mt-15 {
    margin-top: 15px;
}

/* Help Section */
.proceed_booking_btn {
    background: #6f42c1;
    padding: 5px 20px;
    text-align: center;
    position: sticky;
    bottom: 0;
    border-top: 1px solid #e0e0e0;
}

.proceed_booking_btn h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px 0;
}

.proceed_booking_btn p {
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
}

.proceed_booking_btn a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.proceed_booking_btn a:hover {
    color: #e0e0e0;
}

/* Mega Menu Userbar Row (Top Section, Both States) */
.mega-userbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.mega-userbar-row .col-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}
.mega-userbar-row .text-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.mega-userbar-row img.size-65 {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}
.mega-userbar-row p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}
.mega-userbar-row .bg-purple-1 {
    min-width: 90px;
    max-width: 120px;
}

/* Mobile Responsive Adjustments */
/* @media (max-width: 768px) { */
    #mega-menu-overlay {
        width: 100%;
        max-width: 100%;
    }
    
    .side_canvas_wrapper .col-6 {
        padding: 0 5px;
    }
    
    .d-flex.align-items-center {
        padding: 8px;
    }
    
    .d-flex.align-items-center .icon-wrapper {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .mega-userbar-row {
    
        align-items: stretch;
    }
    .mega-userbar-row .col-4 {
        justify-content: center;
        margin-bottom: 10px;
    }
/* } */

.mega-userbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.mega-userbar-flex .userbar-item {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mega-userbar-flex .userbar-name {
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
	margin-left: 15px;
}
.mega-userbar-flex img.size-65 {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}
.btn.btn-purple {
    background: #8e44ec;
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    transition: background 0.2s;
}
.btn.btn-purple:hover {
    background: #6c2eb7;
    color: #fff;
}
.btn.btn-purple i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}
.mega-userbar-flex span {
    display: block;
    text-align: center;
}
