.js-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    display: flex;
    justify-content: space-around;
    padding: 6px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    z-index: 9999;
}

.js-menu-item {
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.js-menu-item span {
    display: block;
    font-size: 20px;
    margin-bottom: 2px;
}

.js-menu-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Hide on Desktop */
@media(min-width:768px){
    .js-bottom-menu {
        display: none;
    }
}