/*
Theme Name:     Zapyataya-new
Theme URI:      http: //example.com/
Description:    Дочерняя тема для темы Twenty Ten
Author:         Ваше имя
Author URI:     http: //example.com/about/
Template:       oceanwp
Version:        0.1.0
*/
:root {
    --trans: 0.135s ease-in-out;
}

/*@media (max-width: 767px) {*/
/*    .header__shortcode {*/
/*        width: 100px;*/
/*        justify-self: unset !important;*/
/*    }*/
/*}*/


.goog-te-gadget .goog-te-combo {
    padding: 5px;
    border-radius: 10px;
}

.form-row.privacy span.required {
    display: none;
}

#series {
    width: 10%;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd {
    display: none !important;
}

#google_language_translator {
    display: grid;
}

.footer__copyright a {
    text-decoration: underline;
    color: inherit;
}

.pagination .page-numbers {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 3px;
    justify-content: center;
}

.pagination li {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    min-height: 40px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    transition: background-color 0.17s ease-in-out;
}

.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout,
.return-to-shop{
    width: 100%;
    max-width: 1310px;
    margin: 0 auto;
    padding-right: 40px;
    padding-left: 40px;
}

@media (max-width: 767px) {
    .woocommerce-cart-form,
    .cart-collaterals,
    .woocommerce-checkout,
    .return-to-shop {
        min-width: 320px;
        max-width: 100%;
        margin: 0 auto;
        padding-right: 20px;
        padding-left: 20px;
    }

    .woocommerce div.product form.cart {
        flex-direction: column;
    }
}

.coupon {
    align-items: center;
    display: flex;
    gap: 10px;
}

.coupon .input-text {
    width: unset !important;
}

.input-text {
    font-family: "Raleway", "Arial", sans-serif;
}

.input-text::placeholder {
    font-family: "Raleway", "Arial", sans-serif;
}

.button {
    background-color: #eda440 !important;
    color: white !important;
}

.woocommerce a.remove {
    line-height: 0.85 !important;
    background: none !important;
    background-color: white !important;
    color: #eda440 !important;
    transition: color var(--trans), backgroud-color var(--trans);
}

.woocommerce a.remove:hover {
    line-height: 0.85 !important;
    background-color: #eda440 !important;
    color: white !important;
}

@media (max-width: 767px) {
    .woocommerce-cart-form .quantity {
        max-width: 110px;
        margin-left: auto;
    }

    .woocommerce-page table.cart td.actions .coupon {
        padding-bottom: 1.5rem;
    }
}

.form-row {
    font-family: 'Raleway', sans-serif;
    margin-bottom: 20px;
}

/* Стилизация меток */
.form-row label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
}

/* Стилизация обязательного поля аббревиатуры (*) */
.form-row label .required {
    color: #eda440;
    margin-left: 4px;
}

/* Стилизация обёртки ввода */
.woocommerce-input-wrapper {
    position: relative;
}

/* Стилизация текстовых полей */
.input-text {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #262e5c; /* Тёмно-синий бордер */
    border-radius: 4px;
    font-size: 16px;
    color: #262e5c;
    background-color: rgba(255, 255, 255, 0.5); /* Полупрозрачный белый фон */
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Стилизация фокуса на текстовом поле */
.input-text:focus {
    border-color: #eda440; /* Акцентный цвет при фокусе */
    outline: none;
    box-shadow: 0 0 5px rgba(237, 164, 64, 0.5); /* Теневой эффект при фокусе */
    background-color: rgba(255, 255, 255, 0.8); /* Увеличенная непрозрачность фона при фокусе */
}

/* Стилизация placeholder текста */
.input-text::placeholder {
    color: #262e5c;
    opacity: 0.5; /* Полупрозрачный текст */
    font-style: italic;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 767px) {
    .form-row {
        margin-bottom: 15px;
    }

    .form-row label {
        font-size: 14px;
    }

    .input-text {
        padding: 10px 14px;
        font-size: 14px;
    }
}

.country_select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #262e5c; /* Тёмно-синий бордер */
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    color: #262e5c;
    background-color: rgba(255, 255, 255, 0.5); /* Полупрозрачный белый фон */
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none; /* Убирает стандартный вид стрелки */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23262e5c" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); /* Кастомная стрелка */
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* Стилизация фокуса на select элементе */
.country_select:focus {
    border-color: #eda440; /* Акцентный цвет при фокусе */
    outline: none;
    box-shadow: 0 0 5px rgba(237, 164, 64, 0.5); /* Теневой эффект при фокусе */
    background-color: rgba(255, 255, 255, 0.8); /* Увеличенная непрозрачность фона при фокусе */
}

/* Стилизация placeholder для select */
.country_select option[value=""] {
    color: #262e5c;
    opacity: 0.5; /* Полупрозрачный текст */
    font-style: italic;
}

/* Стилизация для кнопки обновления в noscript */
noscript button {
    display: none;
}

.shipping_method {
    display: none;
}

.shipping_method + label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    color: #000000;
    cursor: pointer;
    user-select: none;
}

/* Кастомная радиокнопка */
.shipping_method + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #262e5c;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s, background-color 0.3s;
}

/* Стилизация активного состояния радиокнопки */
.shipping_method:checked + label:before {
    border-color: #eda440;
    background-color: #eda440;
}

/* Стилизация для внутренней точки активной радиокнопки */
.shipping_method:checked + label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #262e5c;
    border-radius: 50%;
}

.button {
    font-weight: 400 !important;
}

/* Стилизация для цены */
.woocommerce-Price-amount {
    color: #eda440;
}

.woocommerce-cart-form .input-text {
    color: #eda440;
    font-weight: 400 !important;
}

/* Общие стили для чекбоксов */
.woocommerce form .form-row .input-checkbox {
    display: none;
}

.input-checkbox + span,
.woocommerce-form__label-for-checkbox .input-checkbox + span,
.form-row .woocommerce-form__input-checkbox + .woocommerce-terms-and-conditions-checkbox-text,
.woocommerce-form-login__rememberme {
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    color: #000000;
    cursor: pointer;
    user-select: none;
}

/*!* Кастомный чекбокс *!*/
.input-checkbox + span:before,
.woocommerce-form-login__rememberme span::before,
.woocommerce-form__label-for-checkbox .input-checkbox + span:before,
.form-row .woocommerce-form__input-checkbox + .woocommerce-terms-and-conditions-checkbox-text:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border: 2px solid #262e5c; /* Тёмно-синий бордер */
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.5); /* Полупрозрачный белый фон */
    transition: border-color 0.3s, background-color 0.3s;
}

/*!* Стилизация активного состояния чекбокса *!*/
/*.input-checkbox:checked + span:before,*/
/*.woocommerce-form-login__rememberme span::before,*/
/*.woocommerce-form__label-for-checkbox .input-checkbox:checked + span:before,*/
/*.form-row .woocommerce-form__input-checkbox:checked + .woocommerce-terms-and-conditions-checkbox-text:before {*/
/*    border-color: #eda440; !* Акцентный цвет *!*/
/*    !*background-color: #eda440; !* Акцентный цвет *!*!*/
/*}*/

.input-checkbox + span:after,
.woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox + span:after,
.form-row .woocommerce-form__input-checkbox + .woocommerce-terms-and-conditions-checkbox-text:after {
    content: '✔';
    position: absolute;
    font-size: 18px;
    background-color: #eda440;
    color: #262e5c;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    line-height: 1.25;
    text-align: center;
    opacity: 0;
    transition: opacity 0.13s ease-in-out;
}

/*!* Сxтилизация для галочки активного чекбокса *!*/
.input-checkbox:checked + span:after,
.woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox:checked + span:after,
.form-row .woocommerce-form__input-checkbox:checked + .woocommerce-terms-and-conditions-checkbox-text:after {
    opacity: 1;
}

/* Стилизация для ссылки в правилах и условиях */
.woocommerce-terms-and-conditions-link {
    color: #eda440; /* Акцентный цвет */
    text-decoration: underline;
}

/* Стилизация обязательного поля аббревиатуры (*) */
.form-row .required {
    color: #eda440; /* Акцентный цвет */
    margin-left: 4px;
}

.woocommerce-form-coupon-toggle {
    display: none;
}

.product.add_to_cart_inline {
    padding: unset;
    background: unset;
}

.woocommerce-form__label-for-checkbox input {
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.woocommerce table.shop_table tfoot td {
    font-weight: 400 !important;
}

.woocommerce ul#shipping_method .amount {
    font-weight: 400 !important;
}

.woocommerce-checkout-review-order {
    width: 70%;
    margin-bottom: 35px;
}

.dgwt-wcas-stock.out-of-stock + .dgwt-wcas-pd-addtc {
    display: none;
}

.dgwt-wcas-pd-addtc-form .quantity {
    display: none !important;
}

.yith-wcwl-add-to-wishlist {
    position: absolute;
    /*top: 10px;*/
    right: 0;
    z-index: 2;
    margin: 0;
}

.yith-wcwl-add-to-wishlist.exists {
    color: #eda440;
}

.yith-wcwl-add-to-wishlist a {
    background: transparent !important;
}

.yith-wcwl-add-to-wishlist.exists a {
    color: #eda440;
}

.yith-wcwl-add-to-wishlist.exists .yith-wcwl-icon {
    color: #eda440 !important;
}

#yith-wcwl-popup-message {
    display: none !important;
}

.woocommerce a.add_to_wishlist.button.alt {
    padding: 0;
}

.woocs_auto_switcher {
    display: none;
}

.wishlist_table {
    margin: 0;
    padding: 0;
}

.wishlist-title .button {
    display: none !important;
}

.yith_wcwl_wishlist_footer {
    display: none !important;
}

.wishlist_table.mobile li .item-details h3 {
    margin: 0;
    margin-bottom: 5px;
}

.dgwt-wcas-sp del {
    opacity: 1;
    font-size: 12px;
    color: #000000;
}

@media(max-width: 767px) {
    .price-block__btn-wrap .cart {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-column: span 2;
    }

    .price-block__btn-wrap .btn {
        width: 100%;

    }
}

.yith-wcwl-add-button .separator,
.yith-wcwl-add-button .view-wishlist{
    display: none;
}

.add_to_wishlist {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yith-wcwl-add-button .delete_item {
    padding: 0 !important;
}

.card-item .yith-wcwl-add-button_delete,
.card-item .yith-wcwl-add-button_add,
.good .yith-wcwl-add-button_delete,
.good .yith-wcwl-add-button_add {
    display: none;
}

@media(max-width: 767px) {
    .product__favorite-btn {
        position: absolute;
        top: -42px;
        right: 0;
        min-width: 180px;
    }
}

.added_to_cart.wc-forward { display: none; }

@media(max-width: 767px) {
    .showroom-schedule {
        display: flex;
        flex-direction: column-reverse;
    }
}

.yith-wcwl-add-to-wishlist svg.yith-wcwl-icon-svg {
    color: #fff !important;
}


.pagination a.next::before, .pagination a.prev::before  {
    display: none;
}

body {
    font-family: 'Raleway', sans-serif;
}

.wps_wgm_added_wrapper form.cart {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.125s ease-in-out;
}

.wps_wgm_added_wrapper .wps_wgc_label {
    font-weight: bold;
    color: #262e5c;
    margin-bottom: 5px;
    display: block;
}

.wps_wgm_added_wrapper input[type="text"],
.wps_wgm_added_wrapper input[type="number"],
.wps_wgm_added_wrapper textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: border-color 0.125s ease-in-out;
}

.wps_wgm_added_wrapper input[type="text"]:focus,
.wps_wgm_added_wrapper input[type="number"]:focus,
.wps_wgm_added_wrapper textarea:focus {
    border-color: #eda440;
}

.wps_wgm_added_wrapper .wps_wgm_method,
.wps_wgm_added_wrapper .wps_wgm_msg_info,
.wps_wgm_added_wrapper .wps_wgm_min_user_price,
.wps_wgm_added_wrapper .wps_wgm_message_length {
    font-size: 14px;
    color: rgba(38, 46, 92, 0.7);
    margin-top: 5px;
    display: block;
}

.wps_wgm_added_wrapper .quantity {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.wps_wgm_added_wrapper .quantity a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #eda440;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.125s ease-in-out;
}

.wps_wgm_added_wrapper .quantity a:hover {
    background-color: #d49430;
}

.wps_wgm_added_wrapper .quantity input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

@media (max-width: 767px) {
    .wps_wgm_added_wrapper form.cart {
        padding: 15px;
    }

    .wps_wgm_added_wrapper .wps_wgm_msg_info {
        font-size: 12px;
    }
}

.cart .wps_wgm_error {
    border-color: red !important;
}

.wps_wgm_section input, .wps_wgm_section textarea, .wps_wgm_price {
    border-width: 2px !important;
}

.wps_wgm_added_wrapper .wps_wgm_method {
    display: inline-block;
}

.single_add_to_wishlist,
.yith-wcwl-add-to-wishlist--single .delete_item {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.card-item .yith-wcwl-add-button_delete,
.card-item .yith-wcwl-add-button_add {
    display: none;
}

.woocommerce div.product form.cart {
    margin-top: 15px;
}


@media(max-width: 767px) {
    .product__favorite-btn {
        /*display: none !important;*/
        position: absolute;
        top: unset;
        bottom: -15px;
        transform: translateX(-50%);
        font: inherit;
    }

    .yith-wcwl-add-button_add {
        font-size: 14px;
        font-weight: 500;
    }

    .woocommerce div.product form.cart {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .main__section.product {
        margin-bottom: 0 !important;
    }


    .main__card-slider .card-item__img {
        height: 202px !important;
    }
}

.woocommerce div.product form.cart .button {
    font-weight: 500 !important;
}

.input-text:focus {
    border-color: #eda440; /* Акцентный цвет при фокусе */
    outline: none;
    box-shadow: 0 0 5px rgba(237, 164, 64, 0.5); /* Теневой эффект при фокусе */
    background-color: rgba(255, 255, 255, 0.8); /* Увеличенная непрозрачность фона при фокусе */
}

/* Стилизация placeholder текста */
.input-text::placeholder {
    color: #262e5c;
    opacity: 0.5; /* Полупрозрачный текст */
    font-style: italic;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 767px) {
    .form-row {
        margin-bottom: 15px;
    }

    .form-row label {
        font-size: 14px;
    }

    .input-text {
        padding: 10px 14px;
        font-size: 14px;
    }
}

.country_select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #262e5c; /* Тёмно-синий бордер */
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    color: #262e5c;
    background-color: rgba(255, 255, 255, 0.5); /* Полупрозрачный белый фон */
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none; /* Убирает стандартный вид стрелки */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23262e5c" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); /* Кастомная стрелка */
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* Стилизация фокуса на select элементе */
.country_select:focus {
    border-color: #eda440; /* Акцентный цвет при фокусе */
    outline: none;
    box-shadow: 0 0 5px rgba(237, 164, 64, 0.5); /* Теневой эффект при фокусе */
    background-color: rgba(255, 255, 255, 0.8); /* Увеличенная непрозрачность фона при фокусе */
}

/* Стилизация placeholder для select */
.country_select option[value=""] {
    color: #262e5c;
    opacity: 0.5; /* Полупрозрачный текст */
    font-style: italic;
}

/* Стилизация для кнопки обновления в noscript */
noscript button {
    display: none;
}

.shipping_method {
    display: none;
}

.shipping_method + label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    color: #000000;
    cursor: pointer;
    user-select: none;
}

/* Кастомная радиокнопка */
.shipping_method + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #262e5c;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s, background-color 0.3s;
}

/* Стилизация активного состояния радиокнопки */
.shipping_method:checked + label:before {
    border-color: #eda440;
    background-color: #eda440;
}

/* Стилизация для внутренней точки активной радиокнопки */
.shipping_method:checked + label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #262e5c;
    border-radius: 50%;
}

.button {
    font-weight: 400 !important;
}

/* Стилизация для цены */
.woocommerce-Price-amount {
    color: #eda440;
}

.woocommerce-cart-form .input-text {
    color: #eda440;
    font-weight: 400 !important;
}

/* Общие стили для чекбоксов */
.woocommerce form .form-row .input-checkbox {
    display: none;
}

.input-checkbox + span,
.woocommerce-form__label-for-checkbox .input-checkbox + span,
.form-row .woocommerce-form__input-checkbox + .woocommerce-terms-and-conditions-checkbox-text {
    position: relative;
    padding-left: 35px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    color: #000000;
    cursor: pointer;
    user-select: none;
}



/* Стилизация активного состояния чекбокса */
.input-checkbox:checked + span::before,
.woocommerce-form__label-for-checkbox .input-checkbox:checked + span:before,
.form-row .woocommerce-form__input-checkbox:checked + .woocommerce-terms-and-conditions-checkbox-text:before {
    border-color: #eda440; /* Акцентный цвет */
    background-color: #eda440; /* Акцентный цвет */
}


/* Стилизация для ссылки в правилах и условиях */
.woocommerce-terms-and-conditions-link {
    color: #eda440; /* Акцентный цвет */
    text-decoration: underline;
}

/* Стилизация обязательного поля аббревиатуры (*) */
.form-row .required {
    color: #eda440; /* Акцентный цвет */
    margin-left: 4px;
}

.woocommerce-form-coupon-toggle {
    display: none;
}

.product.add_to_cart_inline {
    padding: unset;
    background: unset;
}

.woocommerce-form__label-for-checkbox input {
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.woocommerce table.shop_table tfoot td {
    font-weight: 400 !important;
}

.woocommerce ul#shipping_method .amount {
    font-weight: 400 !important;
}

.woocommerce-checkout-review-order {
    width: 70%;
    margin-bottom: 35px;
}

@media(max-width: 767px) {
    .woocommerce-checkout-review-order {
        width: 100%;
    }
}

.dgwt-wcas-stock.out-of-stock + .dgwt-wcas-pd-addtc {
    display: none;
}

.dgwt-wcas-pd-addtc-form .quantity {
    display: none !important;
}

.yith-wcwl-add-to-wishlist {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    margin: 0;
}

.yith-wcwl-add-to-wishlist.exists {
    color: #eda440;
}

.yith-wcwl-add-to-wishlist a {
    background: transparent !important;
}

.yith-wcwl-add-to-wishlist.exists a {
    color: #eda440;
}

.yith-wcwl-add-to-wishlist.exists .yith-wcwl-icon {
    color: #eda440 !important;
}

#yith-wcwl-popup-message {
    display: none !important;
}

.woocommerce a.add_to_wishlist.button.alt {
    padding: 0;
}

.woocs_auto_switcher {
    display: none;
}

.wishlist_table {
    margin: 0;
    padding: 0;
}

.wishlist-title .button {
    display: none !important;
}

.yith_wcwl_wishlist_footer {
    display: none !important;
}

.wishlist_table.mobile li .item-details h3 {
    margin: 0;
    margin-bottom: 5px;
}

.dgwt-wcas-sp del {
    opacity: 1;
    font-size: 12px;
    color: #000000;
}

@media(max-width: 767px) {
    .price-block__btn-wrap .cart {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-column: span 2;
    }

    .price-block__btn-wrap .btn {
        width: 65%;
    }

    .woocommerce-checkout {
        padding: 0;
    }

    /*.woocommerce {*/
    /*    padding: 0 15px;*/
    /*}*/
}

.header__menu-btn span {
    color: #111;
}

.header__menu-btn:hover span {
    color: #fff;
}

.product__pictures .yith-wcwl-add-to-wishlist {
    position: static;
    cursor: default;
}

.product__favorite-btn {
    cursor: default !important;
}

.product__pictures .card-item__favorite {
    top: -5px;
    cursor: pointer;
}

.yith-wcwl-add-button>a i {
    margin: 0;
}

@media (max-width: 767px) {
    .card-item__favorite.favorite-btn {
        top: 0;
        right: 0;
    }


    .product__favorite-btn.favorite-btn--round {
        background: none;
        box-shadow: none;
    }

    .product__pictures .card-item__favorite {
        top: 6px;
        right: 20px;

    }
}

.dgwt-wcas-sp del {
    text-decoration-color: rgba(0, 0, 0, 0.5) !important;
}
.dgwt-wcas-sp ins {
    text-decoration: none;
}

.dgwt-wcas-suggestion  .woocs_price_code del span {
    color: rgba(0, 0, 0, 0.5) !important;
}

.wishlist-items-wrapper .woocs_price_code,
.wishlist_table .woocs_price_code {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}

.wishlist-items-wrapper .woocs_price_code del span,
.wishlist_table .woocs_price_code del span {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}


.wishlist-items-wrapper .woocs_price_code  ins,
.wishlist_table .woocs_price_code  ins {
    text-decoration: none;
}

.product.woocommerce add_to_cart_inline {
    background: transparent;
}

.yith-wcwl-add-button .separator,
.yith-wcwl-add-button .view-wishlist{
    display: none;
}

.add_to_wishlist {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*.yith-wcwl-add-button .delete_item {*/
/*    padding: 0 !important;*/
/*}*/

.card-item .yith-wcwl-add-button_delete,
.card-item .yith-wcwl-add-button_add {
    display: none;
}

@media(max-width: 767px) {
    .product__favorite-btn {
        position: absolute;
        bottom: -19px;
        left: 50%;
        transform: translateX(-50%);
        font: inherit;
    }

    .yith-wcwl-add-button_add {
        font-size: 14px;
        font-weight: 500;
    }
}

.added_to_cart.wc-forward { display: none !important; }

@media(max-width: 767px) {
    .showroom-schedule {
        display: flex;
        flex-direction: column-reverse;
    }

    form.checkout {
        padding: 0 15px;
    }

    .header__nav {
        max-width: calc(100% + 30px);
    }
}

.yith-wcwl-add-to-wishlist svg.yith-wcwl-icon-svg {
    color: #fff !important;
}

.yith-wcwl-add-to-wishlist.exists svg.yith-wcwl-icon-svg {
    color: #eda440 !important;
}

.woocommerce-checkout form.checkout {
    overflow: hidden;
}

body {
    overflow-x: hidden;
}

.variation {
    display: grid;
    gap: 5px;
    grid-template-columns: auto auto;
}

.variation .variation- {
    display: grid !important;
    align-items: center;
    font-size: 15px;
    line-height: 1.25;
}

dd.variation- {
    justify-content: flex-start;
}

.variation- p {
    margin: 0;
}

.wp-block-post-excerpt__excerpt {
    font-size: 20px;
    line-height: 1.5;
}

.article {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.wp-block-post-excerpt {
    margin-bottom: 45px;
}

.article .wp-container-core-columns-is-layout-1 {
    display: grid;
    grid-template-columns: 1fr min-content;
}

@media(max-width: 767px) {
    .wp-block-post-excerpt__excerpt {
        line-height: 1.35;
    }

    .wp-block-post-excerpt {
        margin-bottom: 20px;
    }

    .article .wp-container-core-columns-is-layout-1 {
        display: grid;
        grid-template-columns: unset;
    }

    .article .wp-block-column .main__catalog-list {
        grid-template-columns: unset;
        justify-items: center;
    }
}


.load-more-container {
    text-align: center;
    margin-top: 20px;
}

.main__catalog-load:hover, .main__catalog-load:focus-visible {
    background-color: #eda440 !important;
    color: #F4F7FA !important;
}

.main__catalog-load.loading {
    color: transparent !important;
}

.main__catalog-load.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff0db;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

body.page-id-12 {
    max-width: unset !important;
    padding: unset !important;
}

.actions .button,
.place-order .button {
    border: 0;
    height: 35px;
    cursor: pointer;
    transition: opacity 0.125s ease-in-out;
}

.actions .button:hover,
.place-order .button:hover {
    opacity: 0.8;
}

.banner {
    display: block;
    overflow: hidden;
}

.banner__img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.main__section.banner {
    margin-bottom: 50px !important;
}

