/* ===== Fixed Bottom Menu ===== */
/* ===== Fixed Bottom Menu (ly_spMenu Style) ===== */
.ly_spMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    display: flex;
    z-index: 99999;
    background: #00af32; /* Toyota Green */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.ly_spMenu_list {
    display: flex;
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ly_spMenu_item {
    flex: 1;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ly_spMenu_item:last-child {
    border-right: none;
}

.ly_spMenu_item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.2s;
}

.ly_spMenu_item a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ly_spMenu_item .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.ly_spMenu_item .menu-icon i {
    font-size: 2.2rem;
}

/* Hide on larger screens — only show on mobile */
@media screen and (min-width: 769px) {
    .ly_spMenu {
        display: none;
    }
}
