/* استایل پایه منوی شناور موبایل */
#mmf-mobile-footer {
    display: none;
}

@media (max-width: 768px) {
  .cz_overlay
    {
      z-index: 1100 !important;
    }
  #mmf-mobile-footer {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: none;
    pointer-events: none;
    opacity: 1;
    transform: none;
  }
  .mmf-footer-inner {
    border-radius: 24px 24px 0px 0px;
    /*box-shadow: 0 4px 24px 0 rgba(80, 200, 116, 0.1), 0 1.5px 8px 0 rgba(80, 80, 200, 0.10);*/
    margin: 0 auto 0 auto;
    max-width: 420px;
    min-width: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px 18px 10px 18px;
    position: relative;
    pointer-events: auto;
    overflow: visible;
    /* افزودن SVG به‌عنوان بک‌گراند */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='768' height='50' viewBox='0 0 768 50'%3E%3Cpath class='footer_path' d='M-15,0H345c12.855,0,16.965,20,39,20,22.238,0,25.921-20,39-20H828V95H-15V0Z' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    filter: drop-shadow(0 2px 8px rgba(80, 200, 106, 0.32));

}
  .mmf-menu-side {
    display: flex;
    gap: 18px;
    align-items: center;
  }
  .mmf-center-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-63%);
    z-index: 2;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mmf-center-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    background: linear-gradient(180deg, #6C63FF 0%, #5A54E8 100%);
    border-radius: 50%;
    box-shadow: 0 4px 16px 0 rgba(80,80,200,0.18), 0 2px 8px 0 rgba(80,80,200,0.22);
    border: none;
    transition: box-shadow 0.4s, transform 0.4s;
    animation: mmf-center-blink 1.8s infinite cubic-bezier(.4,1.4,.6,1);
    position: relative;
}
@keyframes mmf-center-blink {
    0% {
        box-shadow: 0 0 0 0 rgba(0,164,82,0.25), 0 4px 16px 0 rgba(80,80,200,0.18);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0,164,82,0.10), 0 4px 24px 0 rgba(80,80,200,0.22);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,164,82,0.25), 0 4px 16px 0 rgba(80,80,200,0.18);
    }
}
  .mmf-center-link:hover {
    box-shadow: 0 8px 24px 0 rgba(80, 80, 200, 0.25);
    transform: scale(1.08) rotate(-8deg);
  }
  .mmf-center-icon {
    /* width: 32px; */
    /* height: 32px; */
    display: block;
    font-size: 50px;
    color: #fff;
    text-align: center;
    line-height: 32px;
}
  .mmf-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #717171;
    font-size: 13px;
    font-weight: 500;
    min-width: 48px;
    transition: color 0.2s, transform 0.2s;
  }
  .mmf-menu-item:hover {
    color: #646464;
    transform: translateY(-4px) scale(1.08);
  }
  .mmf-menu-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
    display: block;
    border-radius: 50%;
    background: var(--mmf-icon-bg, #f3f3ff);
    padding: 4px;
    transition: background 0.2s;
    text-align: center;
    line-height: 28px;
  }
  .mmf-menu-icon i {
    font-size: 20px;
    color: #309635;
    vertical-align: middle;
    line-height: 1;
    display: inline-block;
  }
} 