.modalOrder,
.modalPriceOrder {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modalOrder-content {
    max-width: 812px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    position: relative;
}

.modalOrder-left {
    width: 50%;
    display: flex;
}

.modalOrder-left img {
    width: 100%;
    height: auto;
    border-radius: 10px 0 0 10px;
}

.modalOrder-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 300px;
    width: 50%;
    margin: 0 auto;
    color: #484848;
}

.modalOrder-right h2 {
    margin-bottom: 45px;
    font-size: 20px;
    font-weight: 600;
    line-height: 147%;
    letter-spacing: 0.05em;
    text-align: center;
}

.modalOrder-right input {
    width: 100%;
    margin-bottom: 25px;
    padding: 10px;
    border-top: none;
    border-bottom: 1px solid #C2C2C2;
    border-left: none;
    border-right: 0;
    outline: none;
    font-size: 12px;
    font-family: 'Noto Sans Regular', sans-serif;
    line-height: 147%;
    letter-spacing: 0.05em;
}

.modalOrder-right input:last-of-type {
    margin-bottom: 45px;
}

.modalOrder-right button {
    background-color: #CC5732;
    color: white;
    padding: 15px 37px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    letter-spacing: 0.05em;
}

.modalOrder-right button:hover {
    background-color: #a3371c;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 35px;
    font-weight: 200;
    cursor: pointer;
    color: #484848;
}

.modalPriceOrder-selected {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 23px;
    color: #484848;
}

.modalPriceOrder-selected-name {
    font-weight: 600;
}

#modalProductMoreInfo #modalContent {
    font-size: 14px;
    line-height: 147%;
    letter-spacing: 0;
    font-family: 'Noto Sans Regular', sans-serif;
}

#modalProductMoreInfo #modalBottomText {
    display: block;
    margin-top: 35px;
    font-size: 16px;
    line-height: 147%;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: 'Noto Sans Regular', sans-serif;
}

@media screen and (max-width: 768px) {
    .modalOrder {
        padding: 0 5px;
    }
    .modalOrder-content {
        padding: 10px;
    }
    .modalOrder-right h2 {
        margin-bottom: 37px;
        padding-top: 40px;
        font-size: 16px;
    }
    .modalOrder-right input {
        font-size: 12px;
        font-family: 'Noto Sans Regular', sans-serif;
    }
    .modalOrder-left {
        max-width: 135px;
        width: 100%;
    }
    .modalOrder-left img {
        max-width: 135px;
        width: 100%;
        height: auto;
        border-radius: 10px 0 0 10px;
        object-fit: cover;
    }
    .modalOrder-right {
        max-width: 100%;
        width: 100%;
    }
    .modalOrder-right button {
        width: 100%;
        padding: 16px 23px;
        font-size: 16px;
    }
}