
.msm-mobile-menu {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px;
    height: 60px;
    border-radius: 30px;
    z-index: 9999;
    overflow: visible;
    background: transparent;
}
.msm-left, .msm-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
    border-radius: 30px;
    color: #fff;
}
.msm-left i, .msm-right i { margin: 0 2px; }
.msm-center-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    overflow: hidden;
    animation: msmContour 2s infinite;
}
.msm-center-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
@keyframes msmContour {
  0% { box-shadow: 0 0 0 2px #ccc; }
  50% { box-shadow: 0 0 0 6px #ccc; }
  100% { box-shadow: 0 0 0 2px #ccc; }
}
