/** Вход **/

dialog::backdrop {
    background-color: black;
    opacity: 90%;
  }


.enter__window {
    border: 1px solid transparent;
    border-radius: 20px;
    background: linear-gradient(151.17deg, #F7D39E 0%, #FADAAB 50.83%, rgba(250, 218, 171, 0.2) 100%);
    background-clip: padding-box;
    width: 800px;
    z-index: 1;
    overflow: hidden;
    padding: 0px;
}

.enter__window-overlay {
    position: absolute;
    background-color: #161616;
    width: 99.5%;
    height: 99.4%;
    z-index: 2;
    border: 1px solid #161616;
    border-radius: 20px;
    bottom: 0.9px;
    left: 1px;
    overflow: hidden;
    object-fit: cover;
}

.enter__window-tilte {
    position: relative;
    z-index: 3;
    font-family: Cinematografica;
    font-size: 64px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-align: left;
    background: linear-gradient(91.21deg, #FFECCF 10.08%, #F4CF98 97.63%);
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: 40px;
}

.enter__window-container {
    flex-direction: column;
    display: flex;
    align-items: center;
}

/* ===== Скролл внутри модалки регистрации ===== */
#window__registration:not([open]) {
    display: none;
}

#window__registration[open] {
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

#window__registration .enter__window-container {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1 1 auto;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #FADAAB transparent;
}

#window__registration .enter__window-container::-webkit-scrollbar {
    width: 6px;
}
#window__registration .enter__window-container::-webkit-scrollbar-track {
    background: transparent;
}
#window__registration .enter__window-container::-webkit-scrollbar-thumb {
    background: #FADAAB;
    border-radius: 3px;
}

#window__registration .enter__window-tilte {
    flex: 0 0 auto;
}

#window__registration .input_field {
    flex: 0 0 auto;
    box-sizing: border-box;
    max-width: 100%;
}

#window__registration .enter__window-close {
    z-index: 10;
}

.enter__window-close {
    position: absolute;
    background-color: transparent;
    border: none;
}
.input_field {
    position: relative;
    z-index: 3;
    border: 1px solid #909090;
    border-radius: 109px;
    background: linear-gradient(91.39deg, rgba(94, 94, 94, 0.09) 7.92%, rgba(51, 51, 51, 0.09) 95.08%);
    height: 56px;
    width: 600px;
    margin-bottom: 16px;
    font-family: GothamPro;
    font-size: 16px;
    font-weight: 200;
    line-height: 15px;
    letter-spacing: 0em;
    text-align: left;
    padding-left: 32px;
    color: #FADAAB;
}

.input_field:focus {
    outline: transparent;
}
.input_field:focus-visible {
    border-color: #F4CF98;
}
.input_field::placeholder {
    font-family: GothamPro;
    font-size: 16px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0em;
    text-align: left;
    color:#FFFFFF66
}

.phone {
    margin-bottom: 16px;
} 

.password {
    margin-bottom: 40px;
}

.phone::placeholder {
    margin-left: 32px;
    font-family: GothamPro;
    font-size: 16px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0em;
    text-align: left;
    color: #FFFFFF66;
}

.enter__window-button {
    width: 600px;
    font-family: GothamPro;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
    color: #FADAAB;
    z-index: 3;
    border: 2px solid #FADAAB;
    border-radius: 109px;
    background-color: transparent;
    text-transform: uppercase;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 56px;
    cursor: pointer;
}

.enter__window-text {
    margin: 0px;
    font-family: Gotham;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
    color: #FFFFFFCC;
    z-index: 3;
}

.enter__window-registration {
    margin-top: 0px;
    font-family: Gotham;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
    color: #FADAAB;
    z-index: 3;
    border: none;
    background-color: transparent;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 40px;
}
.enter__window-registration:hover {
    color: #f7efe5;
}
.enter__registration-button {
    margin-bottom: 24px;
}

.enter__window-button:hover {
    background-color: #FADAAB;
    color: #161616;
    border-color: #FADAAB;
}

.enter__window-close {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 40px;
    top: 40px;
    background-color: transparent;
    z-index: 3;
    background-color: transparent;
    transform: rotate(45deg);
    cursor: pointer;
  }
  
  .enter__window-close::before,
  .enter__window-close::after {
    content: '';
    position: absolute;
    background-color: black;
  }
  
  .enter__window-close::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #FADAAB;
  }
  
  .enter__window-close::after {
    height: 100%;
    width: 1px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #FADAAB;
  }
  
  .enter__window-registration {
    transition: all 0.3s ease-in; 
  }

.enter__window-order {
    width: 1520px;
    background-color: #161616;
    border: 2px solid #FADAAB;
    border-radius: 20px;

}

/* -- Окно заказа -- */
.enter__window-tilte-order {
    margin-top: 40px;
    margin-bottom: 40px;
}

.window__order-container-order {
    position: relative;
    width: 629px;
    height: 538px;
    z-index: 3;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

.window__order-container-order::-webkit-scrollbar { /* chrome based */
    width: 0px;  /* ширина scrollbar'a */
    background: transparent;  /* опционально */
}

.window__order-container {
    display: flex;
    gap: 80px;
    flex-direction: row;
    margin-bottom: 80px;
}

.enter__window-button-order {
    padding-top: 35px;
    padding-bottom: 35px;
    width: 1361px;
}

.order-option {
    position: relative;
    font-family: Cinematografica;
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-align: left;
    background: linear-gradient(91.21deg, #FFECCF 10.08%, #F4CF98 97.63%);
    -webkit-background-clip: text;
    color: transparent;
    z-index: 3;
    text-transform: uppercase;
}

.pay-option {
    margin-bottom: 16px;
    margin-top: 0px;
}

.delivery-option {
    margin-bottom: 16px;
    margin-top: 40px;
}

.radio__container-pay {
    position: relative;
    z-index: 3;
}

.radio__container-pay label {
    font-family: Gotham;
    font-size: 24px;
    font-weight: 400;
    line-height: 43px;
    letter-spacing: 0em;
    text-align: left;
    color: #FFFFFF;
}

.paycard_stylize {
    color: #FFFFFF99;
}

.radio__container-pay input {
    appearance: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid #FFFFFF;
    margin-right: 5px;
    position: relative;
    top: 4px;
  }
  
.radio__container-pay input:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 21px; 
    height: 21px;
    background-color: #FFFFFF; 
    border-radius: 50%;
}

.enter__window-button-order {
    margin-bottom: 40px;
}

.input_container {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
}

.input_container .input_field {
    width: 565px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 109px;
    border: 1px solid #909090;
    margin-right: 0px;
}

.input_container .input_field:focus-visible {
    border-color: #F4CF98;
}


.input_decription {
    margin-top: -8px;
    font-family: GothamPro;
    font-size: 12px;
    font-weight: 400;
    line-height: 11px;
    letter-spacing: 0em;
    text-align: left;
    color: #FFFFFF66
}

.promo__container {
    margin-top: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.promo__accept {
    position: absolute;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    background-color: #FADAAB;
    right: -60px;
    top: 6px;
    cursor: pointer;
    z-index: 1;
}

.promo__accept:hover {
    transform: scale(1.3);

}
.promo__accept::before {
    content: "\2713"; 
    font-size: 40px; 
    color: black; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
}

.promo-option {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 21px;
}

.promo-option .input_field:focus-visible {
    border-color: #F4CF98;
}

.promo__container .input_field {
    width: 430px;
    border-radius: 109px;
    padding-top: 12px;
    padding-bottom: 12px;
    border: 1px solid #909090;
}

.order__line {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* -- Элементы заказа -- */
.window__order-container-order {
    padding: 0px;
    margin-bottom: 95px;
}

.product__card {
    display: flex;
    flex-direction: row;
    gap: 64px;
    margin-bottom: 44px;
}

.product__image-container {
    width: 300px;
    height: 120px;
    outline: 1px solid white;
    border-radius: 15px;
}

.product__info-container {
    display: flex;
    flex-direction: column;
}

.product__name {
    font-family: Gotham;
    font-size: 24px;
    font-weight: 400;
    line-height: 43px;
    letter-spacing: 0em;
    text-align: left;
    color: white;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 300px;
}

.product__price {
    font-family: Gotham;
    font-size: 24px;
    font-weight: 400;
    line-height: 43px;
    letter-spacing: 0em;
    text-align: left;
    color: white;
    text-transform: uppercase;
    margin-top: 10px;
}

.product__name-and-weight {
    margin-top: -10px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 10px;
}

.product__weight {
    margin-top: 0px;
    font-family: Gotham;
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: left;
    color: #FFFFFF99;
    margin-bottom: 0px;
}

.product__buttons-container {
    display: flex;
    flex-direction: row;
    gap: 18.5px;
    align-items: center;
}

.product__button-minus {
    border: 1px solid #FFFFFF4D;
    width: 22px;
    height: 22px;
    background-color: transparent;
    border-radius: 50%;
    color: #FFFFFF4D;
    cursor: pointer;
}

.product__button-plus {
    border: 1px solid #FFFFFF4D;
    width: 22px;
    height: 22px;
    background-color: transparent;
    border-radius: 50%;
    color: #FFFFFF4D;  
    cursor: pointer;
}

.product__counter {
    font-family: Gotham;
    font-size: 24px;
    font-weight: 400;
    line-height: 43px;
    letter-spacing: 0em;
    color: #FFFFFF99;
    margin: 0px;
}

.product__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.final__cost-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.final__cost-text {
    margin: 0px;
    z-index: 3;
    font-family: Cinematografica;
    font-size: 64px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-align: left;
    background: linear-gradient(91.21deg, #FFECCF 10.08%, #F4CF98 97.63%);
    -webkit-background-clip: text;
    color: transparent;
}

.final__cost {
    margin: 0px;
    z-index: 3;
    font-family: BebasNeue;
    font-size: 64px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0.02em;
    background: linear-gradient(91.21deg, #FFECCF 10.08%, #F4CF98 97.63%);
    -webkit-background-clip: text;
    color: transparent;
}

/* -- окно клика по блюду в меню --*/
.menu__order {
    position: relative;
    border: 1px solid transparent;
    border-radius: 20px;
    background: linear-gradient(151.17deg, #F7D39E 0%, #FADAAB 50.83%, rgba(250, 218, 171, 0.2) 100%);
    background-clip: padding-box;
    width: 1081px;
    z-index: 1;
    overflow: hidden;
    padding: 0px;
}

.menu__order-overlay {
    position: absolute;
    background-color: #161616;
    width: 99.5%;
    height: 99.4%;
    z-index: 2;
    border-radius: 20px;
    bottom: 0.9px;
    left: 1px;
    overflow: hidden;
    object-fit: cover;
}

.menu__order-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu__order-photo-container {
    width: 433px;
    height: 336px;
    border-radius: 20px;
    border: 1px solid #FFFFFF
}

.menu__order-name {
    margin-top: 0px;
    margin-bottom: 18px;
    background: linear-gradient(91.21deg, #FFECCF 10.08%, #F4CF98 97.63%);
    -webkit-background-clip: text;
    color: transparent;
    font-family: BebasNeue;
    font-size: 64px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-align: left;
    text-transform: uppercase;
}

.menu__order-weight {
    margin-top: 0px;
    margin-bottom: 10px;
    font-family: Gotham;
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: left;
    color: #FFFFFF99
}

.menu__order-compose {
    margin-top: 0px;
    margin-bottom: 24px;
    font-family: Gotham;
    font-size: 24px;
    font-weight: 400;
    line-height: 43px;
    letter-spacing: 0em;
    text-align: left;
    color: #FFFFFF99;
    overflow-wrap: break-word;
}

.menu__order-lighter {
    color: #FFFFFFCC
}

.menu__order-price {
    font-family: BebasNeue;
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-align: left;
    background: linear-gradient(91.21deg, #FFECCF 10.08%, #F4CF98 97.63%);
    -webkit-background-clip: text;
    color: transparent; 
    margin-top: 0px;
    margin-bottom: 24px;
}

.menu__order-button {
    width: 447px;
    font-family: GothamPro;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
    color: #FADAAB;
    z-index: 3;
    border: 2px solid #FADAAB;
    border-radius: 109px;
    background-color: transparent;
    text-transform: uppercase;
    padding-top: 18px;
    padding-bottom: 18px;
    margin-bottom: 56px;
    cursor: pointer;
}

.menu__order-button:hover {
    background-color: #FADAAB;
    color: #161616;
    border-color: #FADAAB;
}

.menu__order-recommend {
    display: none;
    margin-top: 64px;
    align-self: flex-start;
    margin-left: 80px;
    background: linear-gradient(91.21deg, #FFECCF 10.08%, #F4CF98 97.63%);
    -webkit-background-clip: text;
    color: transparent;
    font-family: Cinematografica;
    font-size: 64px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-align: left;
}

.menu__order-recommend-container {
    display: none;
    flex-direction: row;
    gap: 16px;
    list-style: none;
    align-self: stretch;
    margin: 24px 80px 0 80px;
    padding: 0;
    overflow-x: auto;
}

.menu__recommend-item {
    flex: 0 0 auto;
    width: 140px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(151.17deg, #F7D39E 0%, #FADAAB 50.83%, rgba(250, 218, 171, 0.2) 100%);
    border: 1px solid rgba(22, 22, 22, 0.05);
    transition: transform 0.15s ease;
}

.menu__recommend-item:hover {
    transform: translateY(-3px);
}

.menu__recommend-image {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
}

.menu__recommend-info {
    padding: 8px 10px 10px;
}

.menu__recommend-name {
    font-family: Gotham, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    margin: 0 0 4px;
    color: #161616;
}

.menu__recommend-price {
    font-family: Gotham, Arial, sans-serif;
    font-size: 15px;
    margin: 0;
    color: #6b4a2b;
}

.menu__order-top {
    margin-top: 40px;
    margin-left: 80px;
    margin-right: 80px;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.menu__order-info {
    width: 447px;
}

.menu__order-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav__mobile {
    position: relative; /* Позиционируем диалоговое окно на экране */
    top: 0px; /* Отступ от верхнего края экрана */
    left: 50%; /* Выравниваем по горизонтали по центру экрана */
    transform: translateX(-50%); /* Центрируем окно по горизонтали */
    width: 400px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: linear-gradient(151.17deg, #F7D39E 0%, #FADAAB 50.83%, rgba(250, 218, 171, 0.2) 100%);
    background-clip: padding-box;
    overflow: hidden;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-bottom: 80px;
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 50px;
}

.nav__mobile-overlay {
    position: absolute;
    background-color: #161616;
    width: 99%;
    height: 99%;
    z-index: 2;
    border: 1px solid #161616;
    border-radius: 20px;
    bottom: 0.9px;
    left: 1px;
    overflow: hidden;
    object-fit: cover;
}

.nav__mobile-container {
    margin-top: 24px;
    position: relative;
    z-index: 3;
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__mobile-container .header__icon {
    display: block;
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
}

.nav__mobile-container .nav__enter {
    display: flex;
    flex-direction: column;
    width: 300px;
    align-items: center;
}

.nav__mobile-container .nav__enter .enter__text{
    display: block;
    width: 61px;

}


.nav__mobile-container .nav__telephone-container {
    display: block;
    margin-bottom: 40px;
    width: 300px;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav__mobile-container .telephone__number {
    display: block;
}

.haha {
    margin-top: 0px;
    margin-bottom: 0px;
}
.haha:hover {
    transform: scale(1.2);
}
.haha_last {
    margin-bottom: 120px;
}

.nav__mobile-close {
    top: 0px;
    right: 20px;
}

.input_error {
    border: 1px solid red;
  }

/* ===== Универсальная модалка ошибок ===== */
.window__error {
    width: 600px;
    max-width: 90vw;
}

.window__error-title {
    margin-bottom: 32px;
    font-size: 48px;
    text-align: center;
}

.window__error-list {
    position: relative;
    z-index: 3;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    width: 600px;
    max-width: 90%;
    max-height: 50vh;
    overflow-y: auto;
}

.window__error-list::-webkit-scrollbar {
    width: 6px;
}
.window__error-list::-webkit-scrollbar-thumb {
    background: #FADAAB;
    border-radius: 3px;
}

.window__error-list li {
    font-family: GothamPro;
    font-size: 16px;
    line-height: 22px;
    color: #FADAAB;
    text-align: center;
    margin-bottom: 12px;
    word-break: break-word;
}

.window__error-list li:last-child {
    margin-bottom: 0;
}

.window__error-button {
    margin-bottom: 40px;
    width: 600px;
    max-width: 90%;
}

  .promo__container .input_field:focus-visible{
    border-color: #F4CF98;
}
@media (max-width: 376px) {
    #window__enter {
        width: 325px;
    }
    #window__enter .enter__window-overlay {
        width: 99%;

    }
    .enter__window-tilte {
        margin-top: 24px;
        font-size: 64px;
        line-height: 60px;
        letter-spacing: 0.02em;
        text-align: center;
    }
    .input_field {
        width: 253px;
        height: 56px;
        padding-left: 24px;
    }
    .password {
        margin-bottom: 64px;
    }
    .enter__window-button {
        width: 277px;
        height: 64px;
        font-size: 16px;
        line-height: 17.7px;
        margin-bottom: 64px;

    }
    .enter__window-text {
        font-size: 14px;
        line-height: 21px;
        width: 300px;
    }
    .enter__window-registration {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 24px;
    }
    #window__enter .enter__window-close {
        top: 24px;
        right: 24px;

    }
    #window__registration {
        position: relative;
    }
    #window__registration .enter__window-overlay {
        border: none;
        padding-bottom: 62px;
        margin-bottom: -62px;
    }
    #window__registration .enter__window-button {
        margin-bottom: 16px;
    }
    #window__registration .password {
        margin-bottom: 40px;
    }
    #window__registration .enter__window-close {
        top: 24px;
        right: 24px;

    }
    #menu__order {
        width: 325px;
        position: relative;
        overflow: scroll;
    }
    .menu__order-top {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
        gap: 16px;

    }
    .menu__order-photo-container {
        width: 277px;
        height: 218px;
    }
    .menu__order-info {
        width: 277px;
        flex-direction: column;
        display: flex;
        align-items: flex-start;
    }
    .menu__order-button {
        width: 277px;
        font-family: Gotham Pro;
        font-size: 16px;
        line-height: 17.7px;
        text-align: center;
        margin-bottom: 36px;
    }
    .menu__order-photo {
        width: 276px;
        height: 217px;
        border-radius: 20px;
    }
    .menu__order-weight {
        font-size: 14px;
        line-height: 25.2px;
    }
    .menu__order-name {
        font-size: 64px;
        line-height: 60px;
        letter-spacing: 0.02em;
    }
    .menu__order-compose {
        font-size: 16px;
        line-height: 19.2px;
    }
    .menu__order-price {
        font-size: 48px;
        line-height: 60px;
        letter-spacing: 0.02em;
    }
    .menu__order-recommend {
        margin-top: 0px;
    }
    #menu__order .enter__window-close {
        top: 24px;
        right: 24px;

    }
    .menu__order-recommend {
        font-family: Cinematografica;
        font-size: 40px;
        font-weight: 400;
        line-height: 60px;
        letter-spacing: 0.02em;
        margin-left: 25px;
    }
    .menu__order-overlay {
        padding-bottom: 232px;
        margin-bottom: -232px;
    }
    .enter__window-order {
        border-radius: 20px;
        background-color: #161616;
        border: 1px solid #FADAAB;
        width: 400px;
        padding: 0px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        top: 0px;
        margin: 0px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 40px;
    }
    .order__line {
        display: none;
    }
    .window__order-container {
        flex-direction: column;
        align-items: center;
        overflow-y: scroll;
        gap: 0px;
        margin-bottom: 40px;
    }
    .product__card {
        gap: 24px;
    }
    .product__image-container {
        width: 160px;
        height: 100px;
    }
    .window__order-container-order {
        width: 316px;
        height: auto;
        margin-bottom: 0px;
    }
    .enter__window-order .product__weight {
        display: none;
    }
    .enter__window-order .product__name {
        font-size: 20px;
        line-height: 36px;
    }
    .enter__window-order .product__price {
        font-size: 20px;;
        line-height: 36px;
    }
    .enter__window-order .input_field {
        padding: 0;
        width: 325px;
        height: 56px;
    }
    .promo__container {
        flex-direction: column;
    }
    .radio__container-pay label {
        font-size: 16px;
        line-height: 28.8px;
        vertical-align: bottom;
    }
    .radio__container-pay {
        overflow: hidden;
    }
    .order-option {
        text-align: center;
        margin-right: 0px;
    }
    .paycard_stylize {
        font-size: 16px;
        line-height: 28.8px;
    }
    .final__cost-text {
        font-size: 56px;
        line-height: 60px;
        letter-spacing: 0.02em; 

    }
    .final__cost {
        font-size: 56px;
        line-height: 60px;
        letter-spacing: 0.02em;

    }
    .enter__window-overlay {
    }
    .enter__window-overlay-container {
        position: absolute;
    }
    .enter__window-order .enter__window-close {
        top: 24px;
        right: 24px;
    }
    .enter__window-tilte-order {
        font-size: 64px;
        line-height: 60px;
        letter-spacing: 0.02em;
        margin-top: 72px;
    }
    .radios {
        margin-bottom: 16px;
    }
    .promo-option {
        margin-bottom: 20px;
    }
    .promo {
        margin-bottom: 64px;
    }
    .enter__window-button-order {
        width: 325px;
        height: 64px;
        padding: 0;
        margin-bottom: 0px;
    }
    .input_field::placeholder {
        text-align: center;
    }
}

@media (376px < width < 769px) {
    #window__enter {
        width: 325px;
    }
    #window__enter .enter__window-overlay {
        width: 99%;

    }
    .enter__window-tilte {
        margin-top: 24px;
        font-size: 64px;
        line-height: 60px;
        letter-spacing: 0.02em;
        text-align: center;
    }
    .input_field {
        width: 253px;
        height: 56px;
        padding-left: 24px;
    }
    .password {
        margin-bottom: 64px;
    }
    .enter__window-button {
        width: 277px;
        height: 64px;
        font-size: 16px;
        line-height: 17.7px;
        margin-bottom: 64px;

    }
    .enter__window-text {
        font-size: 14px;
        line-height: 21px;
        width: 300px;
    }
    .enter__window-registration {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 24px;
    }
    #window__enter .enter__window-close {
        top: 24px;
        right: 24px;

    }
    #window__registration {
        position: relative;
        width: 400px;
    }
    #window__registration .enter__window-overlay {
        border: none;
        padding-bottom: 62px;
        margin-bottom: -62px;
    }
    #window__registration .enter__window-button {
        margin-bottom: 16px;
    }
    #window__registration .password {
        margin-bottom: 40px;
    }
    #window__registration .enter__window-close {
        top: 24px;
        right: 24px;

    }
    #menu__order {
        width: 325px;
        position: relative;
        overflow: scroll;
    }
    .menu__order-top {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
        gap: 16px;
    }
    .menu__order-photo-container {
        width: 277px;
        height: 218px;
    }
    .menu__order-info {
        width: 277px;
        flex-direction: column;
        display: flex;
        align-items: flex-start;
    }
    .menu__order-button {
        width: 277px;
        font-family: Gotham Pro;
        font-size: 16px;
        line-height: 17.7px;
        text-align: center;
        margin-bottom: 36px;
    }
    .menu__order-photo {
        width: 276px;
        height: 217px;
        border-radius: 20px;
    }
    .menu__order-weight {
        font-size: 14px;
        line-height: 25.2px;
    }
    .menu__order-name {
        font-size: 64px;
        line-height: 60px;
        letter-spacing: 0.02em;
    }
    .menu__order-compose {
        font-size: 16px;
        line-height: 19.2px;
    }
    .menu__order-price {
        font-size: 48px;
        line-height: 60px;
        letter-spacing: 0.02em;
    }
    .menu__order-recommend {
        margin-top: 0px;
    }
    #menu__order .enter__window-close {
        top: 24px;
        right: 24px;

    }
    .menu__order-recommend {
        font-family: Cinematografica;
        font-size: 40px;
        font-weight: 400;
        line-height: 60px;
        letter-spacing: 0.02em;
        margin-left: 25px;
    }
    .menu__order-overlay {
        padding-bottom: 179px;
        margin-bottom: -179px;
    }
    .enter__window-order {
        border-radius: 20px;
        background-color: #161616;
        border: 1px solid #FADAAB;
        width: 400px;
        padding: 0px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        top: 0px;
        margin: 0px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 40px;
    }
    .order__line {
        display: none;
    }
    .window__order-container {
        flex-direction: column;
        align-items: center;
        overflow-y: scroll;
        gap: 0px;
        margin-bottom: 40px;
    }
    .product__card {
        gap: 24px;
    }
    .product__image-container {
        width: 160px;
        height: 100px;
    }
    .window__order-container-order {
        width: 316px;
        height: auto;
        margin-bottom: 0px;
    }
    .enter__window-order .product__weight {
        display: none;
    }
    .enter__window-order .product__name {
        font-size: 20px;
        line-height: 36px;
        width: 100px;
    }
    .enter__window-order .product__price {
        font-size: 20px;;
        line-height: 36px;
    }
    .enter__window-order .input_field {
        padding: 0;
        width: 325px;
        height: 56px;
    }
    .promo__container {
        flex-direction: column;
    }
    .radio__container-pay label {
        font-size: 16px;
        line-height: 28.8px;
        vertical-align: bottom;
    }
    .radio__container-pay {
        overflow: hidden;
    }
    .order-option {
        text-align: center;
        margin-right: 0px;
    }
    .paycard_stylize {
        font-size: 16px;
        line-height: 28.8px;
    }
    .final__cost-text {
        font-size: 56px;
        line-height: 60px;
        letter-spacing: 0.02em; 

    }
    .final__cost {
        font-size: 56px;
        line-height: 60px;
        letter-spacing: 0.02em;

    }
    .enter__window-overlay {
    }
    .enter__window-overlay-container {
        position: absolute;
    }
    .enter__window-order .enter__window-close {
        top: 24px;
        right: 24px;
    }
    .enter__window-tilte-order {
        font-size: 64px;
        line-height: 60px;
        letter-spacing: 0.02em;
        margin-top: 72px;
    }
    .radios {
        margin-bottom: 16px;
    }
    .promo-option {
        margin-bottom: 20px;
    }
    .promo {
        margin-bottom: 64px;
    }
    .enter__window-button-order {
        width: 325px;
        height: 64px;
        padding: 0;
        margin-bottom: 0px;
    }
    .input_field::placeholder {
        text-align: center;
    }
    
}

@media (769px < width < 1500px) {
    .enter__window {
        overflow: scroll;
    }
    #window__enter {
        width: 325px;
    }
    #window__enter .enter__window-overlay {
        width: 99%;

    }
    .enter__window-tilte {
        margin-top: 24px;
        font-size: 64px;
        line-height: 60px;
        letter-spacing: 0.02em;
        text-align: center;
    }
    .input_field {
        width: 253px;
        height: 56px;
        padding-left: 24px;
    }
    .password {
        margin-bottom: 64px;
    }
    .enter__window-button {
        width: 277px;
        height: 64px;
        font-size: 16px;
        line-height: 17.7px;
        margin-bottom: 64px;

    }
    .enter__window-text {
        font-size: 14px;
        line-height: 21px;
        width: 300px;
    }
    .enter__window-registration {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 24px;
    }
    #window__enter .enter__window-close {
        top: 24px;
        right: 24px;

    }
    #window__registration {
        position: relative;
        width: 400px;
    }
    #window__registration .enter__window-overlay {
        border: none;
        padding-bottom: 62px;
        margin-bottom: -62px;
    }
    #window__registration .enter__window-button {
        margin-bottom: 16px;
    }
    #window__registration .password {
        margin-bottom: 40px;
    }
    #window__registration .enter__window-close {
        top: 24px;
        right: 24px;

    }
    #menu__order {
        width: 325px;
        position: relative;
        overflow: scroll;
    }
    .menu__order-top {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .menu__order-photo-container {
        width: 277px;
        height: 218px;
    }
    .menu__order-info {
        width: 277px;
        flex-direction: column;
        display: flex;
        align-items: flex-start;
    }
    .menu__order-button {
        width: 277px;
        font-family: Gotham Pro;
        font-size: 16px;
        line-height: 17.7px;
        text-align: center;
        margin-bottom: 36px;
    }
    .menu__order-photo {
        width: 276px;
        height: 217px;
        border-radius: 20px;
    }
    .menu__order-weight {
        font-size: 14px;
        line-height: 25.2px;
    }
    .menu__order-name {
        font-size: 64px;
        line-height: 60px;
        letter-spacing: 0.02em;
  
    }
    .menu__order-compose {
        font-size: 16px;
        line-height: 19.2px;
    }
    .menu__order-price {
        font-size: 48px;
        line-height: 60px;
        letter-spacing: 0.02em;
    }
    .menu__order-recommend {
        margin-top: 0px;
    }
    #menu__order .enter__window-close {
        top: 24px;
        right: 24px;

    }
    .menu__order-recommend {
        font-family: Cinematografica;
        font-size: 40px;
        font-weight: 400;
        line-height: 60px;
        letter-spacing: 0.02em;
        margin-left: 25px;
    }
    .menu__order-overlay {
        padding-bottom: 179px;
        margin-bottom: -179px;
    }
    .enter__window-order {
        border-radius: 20px;
        background-color: #161616;
        border: 1px solid #FADAAB;
        width: 400px;
        padding: 0px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        top: 0px;
        margin: 0px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 40px;
    }
    .order__line {
        display: none;
    }
    .window__order-container {
        flex-direction: column;
        align-items: center;
        gap: 0px;
        margin-bottom: 40px;
    }
    .product__card {
        gap: 24px;
    }
    .product__image-container {
        width: 160px;
        height: 100px;
    }
    .window__order-container-order {
        width: 316px;
        height: auto;
        margin-bottom: 0px;
    }
    .enter__window-order .product__weight {
        display: none;
    }
    .enter__window-order .product__name {
        font-size: 20px;
        line-height: 36px;
        width: 100px;
    }
    .enter__window-order .product__price {
        font-size: 20px;;
        line-height: 36px;
    }
    .enter__window-order .input_field {
        padding: 0;
        width: 325px;
        height: 56px;
    }
    .promo__container {
        flex-direction: column;
    }
    .radio__container-pay label {
        font-size: 16px;
        line-height: 28.8px;
        vertical-align: bottom;
    }
    .radio__container-pay {
        overflow: hidden;
    }
    .order-option {
        text-align: center;
        margin-right: 0px;
    }
    .paycard_stylize {
        font-size: 16px;
        line-height: 28.8px;
    }
    .final__cost-text {
        font-size: 56px;
        line-height: 60px;
        letter-spacing: 0.02em; 

    }
    .final__cost {
        font-size: 56px;
        line-height: 60px;
        letter-spacing: 0.02em;

    }
    .enter__window-overlay {
    }
    .enter__window-overlay-container {
        position: absolute;
    }
    .enter__window-order .enter__window-close {
        top: 24px;
        right: 24px;
    }
    .enter__window-tilte-order {
        font-size: 64px;
        line-height: 60px;
        letter-spacing: 0.02em;
        margin-top: 72px;
    }
    .radios {
        margin-bottom: 16px;
    }
    .promo-option {
        margin-bottom: 20px;
    }
    .promo {
        margin-bottom: 64px;
    }
    .enter__window-button-order {
        width: 325px;
        height: 64px;
        padding: 0;
        margin-bottom: 0px;
    }
    .input_field::placeholder {
        text-align: center;
    }
}

@keyframes shake {
    0% { transform: translate(0); }
    10%, 90% { transform: translate(-5px, 0); }
    20%, 80% { transform: translate(5px, 0); }
    30%, 50%, 70% { transform: translate(-5px, 0); }
    40%, 60% { transform: translate(5px, 0); }
    100% { transform: translate(0); }
  }
  
  .shake {
    animation: shake 0.5s ease-in-out;
  }

@media (max-width: 1500px) {
    .menu__order-photo-container {
        margin-top: 24px;
    }
}