/* --- Mobile Bottom Navigation (Preserved Functionality) --- */
.mobile-bottom-nav {
    background: #fff;
    border-top: 1px solid #eee;
    position: fixed;
    bottom: 0;
    /* Original bottom bar usually sits at valid bottom, or floating */
    bottom: 20px;
    /* Floating style as requested previously */
    width: 90%;
    max-width: 400px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

.mobile-bottom-nav__item {
    font-size: 1.5rem;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.mobile-bottom-nav__item span {
    font-size: 0.7rem;
    margin-top: 2px;
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item.active {
    color: #4634ff;
    /* Standard Template Color */
}

/* --- Offcanvas Menu --- */
.mobile-menu-drawer {
    border-radius: 20px 20px 0 0;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-list a:hover {
    background: #f9f9f9;
}