@media screen and (min-width: 768px) {
    .mobile-bottom-menu {
        display: none !important;
    }
}

.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f9f9f9;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    border-radius: 12px 12px 0 0;
}

.menu-items {
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-items li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #f1f1f1;
    border-radius: 12px;
}

.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.menu-link img {
    width: 56px;
    height: auto;
    transition: transform 0.2s ease-in-out;
}

.menu-link:hover img {
    transform: scale(1.1);
}
