
.menu-overlay {
    position: fixed;
    inset: 0;
    background: #FFFFFF;
    z-index: 100;
    display: none;           
    overflow-y: auto;          
}
.menu-overlay.is-open {
    display: flex;
    justify-content: center;  
}

.menu-inner {
    width: 100%;
    margin: 0 auto;
    padding: 20px 24px 40px;
    display: flex;
    flex-direction: column;
}

.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.menu-logo {
    height: 40px;
}

.menu-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #F58220;
    position: relative;
    box-shadow: 0 6px 18px rgba(245,130,32,0.45);
}
.menu-close::before,
.menu-close::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    left: 50%;
    top: 50%;
    transform-origin: center;
}
.menu-close::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.menu-close::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}

.menu-login {
    margin-top: 70px;
    width: 100%;
    border-radius: 28px;
    border: none;
    padding: 14px 18px;
    background: #F7F7F7;
    font-size: 16px;
    color: #F58220;
    text-align: center;
    margin-bottom: 32px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}
.menu-list .menu-item {
    color: #3C403B;
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid #F0F0F0;
}
.burger--mobile {
    z-index: 1000000;
}
.menu-footer {
    margin-top: 32px;
    text-align: center;
}
.menu-footer-phone {
    font-size: 20px;
    margin-bottom: 16px;
}
.menu-footer-phone .phone_numb{
    color: #3C403B;
}
.menu-footer-btn {
    width: 100%;
    border-radius: 28px;
    border: none;
    padding: 14px;
    background: #003A6E;
    color: #fff;
    font-size: 17px;
}

@media (max-width: 600px) {
    .menu-inner {
        max-width: 100%;
        padding: 20px 16px 32px;
    }
}
.burger--mobile {
  outline: none !important;
    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;
    background: #F58220;

    padding: 0;
    position: relative;

    display: none;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    font-size: 0; /* скрываем текст */

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.25),
        0 3px 8px rgba(0, 0, 0, 0.15);

    transition: 0.3s ease;
}
  .burger--mobile::before,
.burger--mobile::after,
.burger--mobile span {
    content: "";
    position: absolute;
    width: 15.62px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.25s ease;
}

  .burger--mobile::before {
    top: calc(50% - 11.88px / 2); 
}
  .burger--mobile span {
    top: 50%;
    transform: translate(-50%, -50%);
}
  .burger--mobile::after {
    top: calc(50% + 11.88px / 2 - 2px); 
}
  .burger--mobile.active::before {
    width: 13.13px;
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
}

.burger--mobile.active::after {
    width: 13.13px;
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
}

.burger--mobile.active span {
    opacity: 0;
}
@media (max-width: 1200px) {
  .burger--mobile{
    display: flex;
  }
}