.order-block {
    width: 65%;
    border-radius: 1em;
    margin: 0 auto;
    border: 1px solid var(--yelow-accent-color);
    padding: 30px;
    margin-bottom: 15px;
}

.order-block h2, .order-block p {
    font-size: 1.8em;
    color: var(--white-text-color);
    margin: 0;
}

.order-block p:nth-child(3){
    margin-bottom: 45px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--yelow-accent-color);
}

.order-block h2{
    margin-bottom: 30px;
    color: var(--yelow-accent-color);
}

.order-item {
    padding: 1em 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-price {
    text-align: right;
}

.modifiers {
    font-size: 0.9em;
    color: #555;
    margin-top: 4px;
}

.menu-cart {
    display: flex;
    gap: 15px;
    align-items: center;
}

.menu-cart-total {
  font-size: 1.4em;
}

@media(max-width: 768px){
    .menu-cart {
        margin-right: 30px;
    }

    .order-block{
        width: 75%;
    }

    .order-block p:nth-child(3) {
        margin-bottom: 0;
    }
}
