/* Mobile Bottom Menu */
.mobile-bottom-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 10px 0;
    border-top: 1px solid #eaeaea;
}

.mobile-bottom-menu-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    padding: 5px 0;
    transition: color 0.3s;
}

.mobile-menu-item.active {
    color: #e74c3c;
}

.mobile-menu-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.mobile-menu-text {
    font-weight: 500;
}

/* Show bottom menu only on mobile */
@media (max-width: 991px) {
    .mobile-bottom-menu {
        display: block;
    }

    /* Add padding to body to prevent content from being hidden behind the menu */
    body {
        padding-bottom: 65px;
    }

    /* Hide the original canvas menu on mobile */
    .canvas-menu {
        display: none;
    }
}

/* Animation for menu items */
.mobile-menu-item:active {
    transform: scale(0.95);
}

/* Menu toggle for submenu */
.mobile-menu-toggle {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
    transform: translateY(-15px);
    transition: all 0.3s;
}

.mobile-menu-toggle:active {
    transform: translateY(-10px);
}


/* Mobile Bottom Menu */
.mobile-bottom-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 10px 0;
    border-top: 1px solid #eaeaea;
}

.mobile-bottom-menu-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    padding: 5px 0;
    transition: color 0.3s;
}

.mobile-menu-item.active {
    color: #e74c3c;
}

.mobile-menu-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.mobile-menu-text {
    font-weight: 500;
}

/* Show bottom menu only on mobile */
@media (max-width: 991px) {
    .mobile-bottom-menu {
        display: block;
    }

    /* Add padding to body to prevent content from being hidden behind the menu */
    body {
        padding-bottom: 65px;
    }

    /* Hide the original canvas menu on mobile */
    .canvas-menu {
        display: none;
    }
}

/* Animation for menu items */
.mobile-menu-item:active {
    transform: scale(0.95);
}

/* Menu toggle for submenu */
.mobile-menu-toggle {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
    transform: translateY(-15px);
    transition: all 0.3s;
}

.mobile-menu-toggle:active {
    transform: translateY(-10px);
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

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

.mobile-menu-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
    background-color: #f9f9f9;
}

.mobile-menu-drawer-title {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.mobile-menu-drawer-close {
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-drawer-content {
    padding: 15px;
}

.mobile-menu-drawer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.mobile-menu-drawer-link {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-drawer-link:active {
    background-color: #f5f5f5;
}

.mobile-menu-drawer-link.active {
    background-color: #e74c3c;
    color: #ffffff;
}


