/* Стили для формы с фото (order-photo-form) */
.order-photo-form {
    max-width          : 650px;
    margin             : 0 auto;
    background         : #fff;
    border-radius      : 12px;
    border             : 3px solid #cce0ee;
    box-shadow         : 0 0 20px rgba(0, 0, 0, 0.07);
    padding            : 30px 20px 20px 20px;
    font-family        : Arial, Helvetica, sans-serif;
    text-align         : center;
    background-image   : url("../fon-form.webp");
    background-position: center;
    background-size    : 200px;
}

.order-photo-form img {
    display   : block;
    margin    : 0 auto 20px auto;
    max-width : 350px;
    max-height: 300px;
    object-fit: contain;
}

.order-photo-form h2 {
    color      : #4a5a8a;
    font-size  : 1.7em;
    margin     : 20px 0 10px 0;
    font-weight: bold;
}

.order-photo-form .order-form__red {
    color    : #e60000;
    font-size: 1.1em;
    display  : block;
    margin   : 10px 0 5px 0;
}

.order-photo-form .order-form__time {
    font-size     : 1.8em;
    color         : #e60000;
    font-weight   : bold;
    background    : #ffffff;
    border-radius : 8px;
    padding       : 8px 0;
    margin        : 10px auto 15px auto;
    width         : 220px;
    letter-spacing: 2px;
    border        : 1px solid #e60000;
}

.order-photo-form .order-form__block {
    margin   : 10px 0 15px 0;
    color    : #333;
    font-size: 0.8em;
}

.order-photo-form .order-form__price {
    font-size: 1.1em;
    margin   : 5px 0;
}

.order-photo-form .price--old {
    color          : #888;
    text-decoration: line-through;
    font-size      : 1.1em;
}

.order-photo-form .price--new {
    color      : #e60000;
    font-size  : 1.4em;
    font-weight: bold;
}

.order-photo-form .order-form__input input {
    width        : 100%;
    padding      : 12px;
    margin       : 8px 0;
    border       : 1px solid #ccc;
    border-radius: 6px;
    font-size    : 1em;
    box-sizing   : border-box;
}

.order-photo-form .order-form__btn button {
    width        : 100%;
    background   : #e60000;
    color        : #fff;
    border       : none;
    border-radius: 8px;
    padding      : 15px 0;
    font-size    : 1.2em;
    font-weight  : bold;
    margin       : 15px 0 10px 0;
    cursor       : pointer;
    transition   : background 0.2s;
}

.order-photo-form .order-form__input,
.order-photo-form .order-form__btn {
    width    : 450px;
    max-width: 100%;
    margin   : 0 auto;
}

.order-photo-form .order-form__btn button:hover {
    background: #b80000;
}

.order-photo-form .order-form__text {
    color    : #333;
    font-size: 0.98em;
    margin   : 10px 0 0 0;
}

.order-photo-form .lnh {
    margin     : 5px 0;
    line-height: 1.3;
    font-size  : 70%;
}

.order-photo-form .order-form__badges {
    display        : flex;
    justify-content: center;
    gap            : 50px;
    margin-top     : 18px;
    font-size      : 12px;
}

.order-photo-form .order-form__badges img {
    max-width: 100px;
    height   : auto;
}

@media (max-width: 600px) {
    .order-photo-form {
        padding  : 10px 2vw 15px 2vw;
        max-width: 98vw;
    }

    .order-photo-form .order-form__time {
        max-width: 100%;
        font-size: 1.5em;
    }

    .order-photo-form img {
        max-width: 120px;
    }

    .order-photo-form .order-form__badges {
        gap: 20px;
    }
}

@media (max-width: 600px) {

    .order-photo-form .order-form__badges {
        gap: 10px;
    }

    .order-photo-form .order-form__badges img {
        max-width: 70px;
        margin   : 0 auto 10px auto;
    }

    .order-form__badges div {
        font-size: 80%;
    }
}