/* ===== ORDER FORM ===== */

.order_block {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-sizing: border-box;
}

.order__text {
    margin: 0 0 15px;
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #222;
}

.countdown-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.order_block__time {
    display: inline-block;
    margin: 0;
    padding: 8px 18px;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    color: #d40000;
}

.order_block__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Товар */
.prod_img_wrapper {
    position: relative;
    width: 45%;
    max-width: 350px;
    text-align: center;
}

.prod_img {
    display: block;
    width: 60%;
    max-width: 220px;
    height: auto;
    margin: 0 auto;
}

/* Ціна */
.pricec {
    margin-top: 10px;
}

.discountс {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 12px;
    background: #e60000;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
}

.price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.price-block s {
    color: #888;
    font-size: 20px;
}

.new_price {
    color: #e00000;
    font-size: 32px;
    font-weight: 800;
}

/* ===== FORM ===== */

.orderForm {
    width: 100%;
    max-width: 400px;
    padding: 25px;
    box-sizing: border-box;
    background: #f8f8f8;
    border-radius: 12px;
}

.order_block__quantity {
    margin: 0 0 15px;
    text-align: center;
    font-size: 17px;
    line-height: 1.4;
    color: #333;
}

.order_block__quantity-left {
    display: inline-block;
    min-width: 28px;
    color: #e00000;
    font-size: 20px;
    font-weight: 800;
}

.form__input {
    display: block;
    width: 100%;
    height: 54px;
    margin: 0 0 14px;
    padding: 0 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 7px;
    outline: none;
    background: #fff;
    color: #222;
    font-size: 17px;
    transition: .2s;
}

.form__input:focus {
    border-color: #e00000;
    box-shadow: 0 0 0 2px rgba(224, 0, 0, .1);
}

.form__input::placeholder {
    color: #999;
}

/* ===== BUTTON ===== */

.pulse-button-wrapper {
    display: block;
    width: 100%;
    padding: 0;
    margin: 5px 0 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.pulse-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 10px 15px;
    box-sizing: border-box;
    background: #e00000;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(224, 0, 0, .25);
    transition: .2s;
}

.pulse-button:hover {
    background: #c50000;
    transform: translateY(-1px);
}

.pulse-button:active {
    transform: translateY(1px);
}

/* ===== MOBILE ===== */

@media (max-width: 767px) {

    .row.scroll-to-class {
        padding: 10px !important;
    }

    .order_block {
        padding: 15px;
    }

    .order__text {
        font-size: 18px;
    }

    .order_block__wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .prod_img_wrapper {
        width: 60%;
        max-width: 220px;
    }

    .orderForm {
        max-width: 100%;
        padding: 18px;
    }

    .order_block__time {
        font-size: 28px;
    }

    .new_price {
        font-size: 28px;
    }

    .form__input {
        height: 52px;
        font-size: 16px;
    }

    .pulse-button {
        min-height: 56px;
        font-size: 17px;
    }
}