

/* Start:/local/components/custom/order.ajax/templates/.default/style.css?17798843616179*/

.order-section {
    padding: 25px;
    position: relative; 
    background-color: #fff; 
    box-sizing: border-box;
    border: 2px solid rgb(122, 96, 87);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    font-family: PT Sans;
}

.order-section .section-title {
    color: #7A6057;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 35px;
}


.order-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.order-section .form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.order-section .form-label {
    display: inline-block;
    width: 120px;
    margin-right: 10px;
    color: #555;
}

.order-section .form-label.required::before {
    content: '*';
    color: red;
    margin-right: 5px;
}

.order-section .form-input {
    flex-grow: 1;
    padding: 8px 10px;
    font-size: 1em;
    box-sizing: border-box;
    border: 2px solid rgb(122, 96, 87);
    background: rgb(249, 248, 243);
    max-width: 540px;
    color: #918282;
}

.order-section .form-input::placeholder {
    color: #BABABA; 
}

.order-section .section-description {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #7A6057;
    margin-bottom: 25px;
}

.order-section .order-box {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}


.delivery-item, .payment-item {
    display: block;
    margin: 15px 0;
    cursor: pointer;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.payment-item input[type="radio"],
.delivery-item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    outline: none;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid rgb(134, 174, 85);
    background: rgba(243, 243, 243, 0);
}

.payment-item input[type="radio"]:checked,
.delivery-item input[type="radio"]:checked {
    border: 1px solid rgb(134, 174, 85);
    background: rgb(134, 174, 85);
}

.payment-item input[type="radio"]:checked::after,
.delivery-item input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.delivery-item input, .payment-item input {
    margin-right: 10px;
}

.payment-item span.payment-name,
.delivery-item span.delivery-name,
.delivery-item span.delivery-price {
    color: #555;
    font-family: PT Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}


.order-basket {
    color: #7A6057;
}

.basket-items-list {

}

.basket-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.basket-item-image {
    width: 80px;
    margin-right: 15px;
}

.basket-item-image img {
    max-width: 100%;
    height: auto;
}

.basket-item-info {
    flex-grow: 1;
}

.basket-item-info a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #7A6057;
}

.basket-item-actions {
    margin: 0 15px;
    display: flex;
    align-items: center;
}

.order-basket .quantity-control {
    display: flex;
    margin-right: 10px;
}

.order-basket .quantity-control button {
    width: 25px;
    height: 25px;
    background: #D0C1AC;
    color: #ffffff;
}

 .order-basket .quantity-input {
    width: 55px;
    height: 25px;
    text-align: center;
    border: none;
    padding-left: 12px;
    color: #7A6057;
}

.order-basket .remove-item {
    background: #FF4848;
    color: #ffffff;
    height: 25px;
}

 .order-basket .basket-item-sum {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #918282;
    min-width: 125px;
    text-align: right;
}

 .order-basket .basket-item-bonus {
    text-align: right;
    font-size: 12px;
 }
 

 .order-basket .basket-total {
    text-align: right;
    font-size: 1.2em;
    margin-top: 15px;
    padding-top: 10px;
}

 .order-basket .basket-total .total-base-price {
    text-decoration: line-through;
 }

 .order-basket .basket-total .total-price {
    font-weight: bold;
}

.box-order-submit {
    text-align: center;
}

.order-form-container button.btn-order {
    display: inline-block;
    padding: 8px 30px;
    background-color: #86AE55;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: auto;
    max-width: 185px;
}

.order-form-container button.btn-order:hover {
    opacity: 0.7;
}


/* Блок с Бонусами */

.bonuses-section {
    margin-top: 45px;
}

.bonus-section {

}

.bonus-title {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.bonus-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.bonus-available {
    font-size: 16px;
    margin-bottom: 8px;
}

.bonus-count {
    color: #28a745;
    font-weight: bold;
}

.bonus-limit {
    font-size: 14px;
    color: #6c757d;
}

.bonus-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bonus-input {
    width: 150px;
}

.bonus-buttons {
}

.order-section .bonus-controls .form-label {
    width: auto;
}

.btn-bonus-apply {
    background-color: #86AE55;
    color: white;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
}

.btn-bonus-cancel {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.bonus-applied {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    border: 1px solid #c3e6cb;
}


@media screen and (max-width: 768px) {

    .basket-item {
        flex-direction: column;
        gap: 25px;
    }

}


@media screen and (max-width: 480px) {

    .order-section .form-group {
        flex-direction: column;
    }

    .order-section .form-label {
        margin-bottom: 10px;
        text-align: center;
    }


}











/* End */
/* /local/components/custom/order.ajax/templates/.default/style.css?17798843616179 */
