body.single-product {
    background: #ffffff !important;
}

@media (min-width: 1024px) {
    .single-product:before {
        position: absolute;
        content: '';
        background: repeating-linear-gradient(45deg, var(--secondary-color), var(--primary-color), var(--secondary-color) 300px);
        width: 700px;
        height: 700px;
        border-radius: 50%;
        top: -200px;
        right: -200px;
        filter: blur(90px);
        z-index: -1;
        opacity: 50%;
    }
}

/*
* BREADCRUMBS
*/

.single-product .kadence-breadcrumbs {
    position: relative;
    padding: 10px 0;
    margin-top: -0;
    margin-bottom: 30px;
}

.single-product .kadence-breadcrumbs:before {
    position: absolute;
    content: '';
    width: 190%;
    bottom: 0;
    left: -50%;
    border-bottom: 1px solid #00000010;
}

.bc-delimiter {
    position: relative;
    width: 20px;
    font-size: 0;
    padding: 0 5px;
    margin-right: 5px;
}

.bc-delimiter:before {
    position: absolute;
    content: ' » ';
    color: #9a9a9a;
    font-size: 18px;
    line-height: 1.2;
}

/*
* PRODUCT INFORMATION
*/

.product_price_wrapper {
    position: relative;
    padding: 30px 0 10px;
}

.woocommerce .product .summary p {
    margin: 0 !important;
}

.woocommerce .product .summary .price {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 20px !important;
    display: flex !important;
    flex-direction: row;
    column-gap: 10px;
}

.woocommerce .product .summary {
    margin-top: 0;
}

/* status info */

.product_status_info {
    justify-content: space-between;
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 0 0 20px;
}

.product_status_info-stock .stock {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.product_status_info-stock .stock img {
    margin-right: 5px;
}

.sku {
    color: #9a9a9a;
}

/* buttons */

.woocommerce div.product form.cart {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    row-gap: 20px;
    flex-wrap: wrap;
}

.woocommerce div.product form.cart div.quantity {
    border-radius: 0;
    margin-right: 20px;
}

.woocommerce .product form.cart .button {
    border-radius: 0;
    min-width: 180px;
    margin-right: 20px;
}

.secondary_button.buy-one-click {
    border: 2px solid #000000;
    width: fit-content;
    display: inline-block;
    padding: 5px;
    min-width: 220px;
    text-align: center;
    cursor: pointer;
}

@media(min-width: 742px) and (max-width: 1200px) {
    .secondary_button.buy-one-click {
        margin-top: 30px;
        width: 100%;
    }
}

@media(min-width: 590px) and (max-width: 741px) {
    .secondary_button.buy-one-click {
        margin-top: 0;
        width: fit-content;
    }
}

@media(max-width: 590px) {
    .secondary_button.buy-one-click {
        margin-top: 30px;
        width: 100%;
    }
}

/* extra fields */

.extra_fields-inner {
    padding: 10px 0;
    border-top: 1px solid #00000010;
    border-bottom: 1px solid #00000010;
}

.extra_fields-inner-content-item {
    display: flex;
    align-items: center;
    column-gap: 20px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    margin: 15px 0;
}

/* RADIO BUTTONS */

.woocommerce div.product form.cart .variations {
    position: relative;
}

.woocommerce div.product form.cart .variations tr {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.woocommerce div.product form.cart .variations tr .value {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.woocommerce div.product form.cart .reset_variations {
    position: absolute;
    top: 5px;
    right: 0;
}

.woocommerce div.product form.cart .variations tr .value div label {
    position: relative;
    min-width: 70px;
    text-align: center;
    /* border: 1px solid var(--global-gray-400); */
    line-height: 1;
    padding: 8px 15px;
    margin-bottom: 0;
    cursor: pointer;
}

.woocommerce div.product form.cart .variations tr .value div label input {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent !important;
    border: 0 !important;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
}

.woocommerce div.product form.cart .variations tr .value div label:hover span {
    border-color: var(--primary-color);
}

.woocommerce div.product form.cart .variations tr .value div label input + span {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid var(--global-gray-400);
    z-index: -1;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
}

.woocommerce div.product form.cart .variations tr .value div label input:checked + span {
    border: 1px solid var(--primary-color);
    background: #f2f5f750;
}

/*
* TABS SECTION
*/

.woocommerce-tabs {
    padding: 50px 0;
    border: 0 !important;
    border-top: 1px solid #00000010 !important;
}

.wc-tabs {
    border-right: 1px solid #00000010;
    margin-bottom: 20px;
}

.wc-tabs li {
    position: relative;
    list-style: none;
    padding: 5px 0;
}

.wc-tabs li.active:before {
    position: absolute;
    content: '';
    border-right: 2px solid #000000;
    top: 2px;
    right: -16px;
    width: 2px;
    height: 100%;
}

.wc-tabs li a {
    color: #000000;
    font-size: 20px;
    line-height: 1;
}

.wc-tabs-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.tab-title {
    font-size: 24px;
    text-align: center;
    margin: 0 0 20px;
}

.woocommerce table.shop_attributes {
    border-top: 1px solid #00000010;
}

.woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td {
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
}

.woocommerce table.shop_attributes th {
    border-right: 1px solid #00000010;
}

.woocommerce table.shop_attributes td {
    padding: 0 20px;
}

.woocommerce table.shop_attributes tr:nth-child(even) td, .woocommerce table.shop_attributes tr:nth-child(even) th {
    background: transparent;
}

.woocommerce table.shop_attributes tr:last-child th, .woocommerce table.shop_attributes tr:last-child td {
    border-bottom: 0;
}

.woocommerce #reviews #comments, .woocommerce #reviews #review_form_wrapper {
    width: 100%;
    float: none;
    padding-right: 0px;
}

.woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td {
    border-bottom: 1px solid #00000010;
}

.woocommerce table.shop_attributes td p {
    margin-bottom: 0 !important;
}

/*
* RELATED PRODUCTS
*/

.woocommerce .related.products {
    position: relative;
    padding: 0 0 50px;
}

.woocommerce .related.products h2 {
    margin-bottom: 40px;
}

.woocommerce .related.products:before {
    position: absolute;
    content: '';
    width: 100%;
    border-top: 1px solid #00000010;
    top: -30px;
    left: 0;
}

.woocommerce .products.align-buttons-bottom li.product .product-action-wrap {
    padding-top: 0;
}

.woocommerce ul.products.woo-archive-btn-button .button {
    width: fit-content;
}

.woocommerce a.added_to_cart {
    display: none;
}

.woocommerce ul.products.woo-archive-btn-button li.product .button.added {
    width: fit-content;
    height: 40px;
    line-height: 50px;
}

/*
* PRODUCTS CARDS
*/

.woocommerce ul.products li.product .entry-content-wrap {
    margin: 0;
    padding: 15px;
}

.woocommerce .products.align-buttons-bottom li.product .product-action-wrap {
    padding-top: 0;
}

.product_loop_title a {
    margin-bottom: 10px;
}

.woocommerce ul.products.woo-archive-btn-button .button {
    width: fit-content;
}

.woocommerce a.added_to_cart {
    font-size: 0 !important;
    width: 40px;
    height: 40px;
    background-color: transparent !important;
    background-image: url(../icons/check-circle.svg) !important;
    background-repeat: no-repeat !important;
    background-size: 35px !important;
    background-position: center center !important;
}

.entry.loop-entry {
    border: 1px solid #00000010;
    box-shadow: 0 0 20px #f2f4f1;
}

/*
* MEDIA STYLES
*/

@media (max-width: 1024px) {
    .content-area {
        margin-top: 0;
        margin-bottom: 2rem;
    }
}

/*
* WC NOTICES
*/

.woocommerce-notices-wrapper {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 9999;
}

.woocommerce .woocommerce-message {
    background: #bdd8be;
    border: 0;
    margin: 0;
}

.pswp--animated-in .pswp__bg {
    background: #36363690;
}

/*
*
*/

.product_set__content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.product_set__content_image {
    max-width: 120px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 14px rgb(0 0 0 / 5%);
}

.product_set__wrapper {
    position: relative;
    padding: 15px 15px 0;
    border: 1px solid rgba(0 0 0 / 10%);
    margin-top: 30px;
}

.content_data__wrap_title {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 500;
}

.content_data__wrap_price {
    font-weight: 400;
    font-size: 18px;
    margin-top: 5px;
}

.product_set__title {
    position: relative;
    top: -35px;
    background: #ffffff;
    width: fit-content;
    padding: 10px 20px 0;
    font-size: 1.2rem;
    line-height: 1;
}

.content_data__link {
    position: relative;
    background: var(--primary-color);
    min-width: 220px;
    color: #ffffff;
    text-align: center;
    padding: 6px 10px;
    margin: 15px 0 0;
    font-size: 17px;
}

@media(max-width: 479px) {
    .content_data__wrap_title {
        font-size: 18px;
    }

    .content_data__link {
        font-size: 14px;
        min-width: 170px;
    }
}

.thwdpf-bulk-table-scroll,
.woocommerce div.product form.cart h4 {
    display: none;
}

.woocommerce .product .summary .price del {
    font-size: 16px;
    line-height: 2;
}

.related .woo-archive-btn-button .button {
    max-width: 140px;
}

.product_hashtags {
    clear: both;
    margin: 20px 0px 40px;
    padding: 40px 0px 0px;
    border-top: 1px solid #00000010 !important;
}

.product_hashtags h3 {
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1px;
}

.product_hashtags__items {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

@media(max-width: 520px) {
    .product_hashtags {
        margin: 10px 0px 20px;
        padding: 20px 0px 0px;
    }
    
    .product_hashtags__items {
        gap: 6px;
        margin-top: 18px;
    }
}

/*
** UPD Styles
*/

.woocommerce .quantity.spinners-added .qty {
    width: 2em;
}

.woocommerce div.product form.cart div.quantity {
    border-radius: 8px;
    margin-right: 12px;
}

.quantity.spinners-added input.minus, .quantity.spinners-added input.plus {
    padding: 0 .5em;
    line-height: 45px;
}

.woocommerce div.product form.cart .button {
    height: 45px;
    border-radius: 8px;
    min-width: 120px;
    margin-right: 12px;
}

.secondary_button.buy-one-click {
    min-width: 220px;
    border-radius: 8px;
    border: 1px solid #d1d2cf;
    background: #d1d2cf;
    padding: 10px;
    transition: all .3s ease-in;
}

.secondary_button.buy-one-click:hover {
    border: 1px solid #c89a9b;
    background: #c89a9b;
    color: #ffffff;
}

@media (max-width: 590px) {
    .secondary_button.buy-one-click {
        margin-top: 0px;
        width: fit-content;
        min-width: 120px;
    }

    .woocommerce div.product .product_title {
        font-size: 28px;
    }
}

.woocommerce div.product .stock {
    background: #d1d2cf;
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 12px;
}

.woocommerce div.product .stock img {
    max-width: 14px;
}

.extra_fields-inner-content {
    display: flex;
    align-items: flex-start;
    column-gap: 8px;
}

.extra_fields-inner-content-item {
    flex: 1 auto;
    background: #f6f6f5;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    gap: 12px;
    font-size: 14px;
    line-height: 1.2;
}

.product_set__wrapper {
    background: #f6f6f5;
    border: 0px;
    border-radius: 8px;
    padding: 24px;
}

.product_set__title {
    position: relative;
    top: 0px;
    padding: 0px 0px 12px;
    background: transparent;
    font-weight: 600;
    margin-bottom: 24px;
}

.product_set__content {
    position: relative;
    gap: 18px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.product_set__content_image {
    max-width: 70px;
    background: #ffffff;
    box-shadow: none;
}

.product_set__content_data {
    position: relative;
    flex: 1;
}

.content_data__link {
    position: absolute;
    bottom: 0px;
    right: 0px;
    margin: 0px;
    border-radius: 8px;
    min-width: 0px;
}

@media (max-width: 479px) {
    .content_data__wrap_title {
        font-size: 17px;
        line-height: 1.2;
    }
}

.custom-product-attributes .custom-product-attributes_item {
    display: flex;
    align-items: center;
    flex-direction: row;
    font-size: 14px;
    margin-bottom: 2px;
}

.custom-product-attributes_item_name {
    flex: 1 100px;
}

.custom-product-attributes_item_value {
    flex: 1 calc(100% - 170px);
    font-weight: 600;
}

.woocommerce div.product form.cart .variations tr .value div label {
    min-width: 40px;
}

.woocommerce div.product form.cart .variations tr .value div label input + span {
    border-radius: 8px;
    border: 1px solid #c6d4c8;
}

.woocommerce div.product form.cart .variations tr .value div label input:checked + span {
    border-color: #4e6a54;
    background: #4e6a54;
    color: #ffffff !important;
}

.woocommerce div.product form.cart .variations tr .value div label:has(input:checked) {
    color: #fff;
}

.woocommerce div.product form.cart .variations tr .value {
    gap: 8px;
}

.woocommerce div.product form.cart .variations {
    margin-bottom: 12px;
}

.gift_section {
    margin-bottom: 24px;
}

.gift_section__title {
    color: #68bd45;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 8px;
    cursor: pointer;
}

.gift_section__desc {
    font-size: 16px;
    line-height: 1.2;
    color: #828282;
}

.wpcf7-form label {
    width: 100%;
}

.woocommerce div.product form.cart {
    margin-bottom: 12px;
}

.single-product .kadence-breadcrumbs {
    position: relative;
    padding: 10px 0;
    margin-top: -0;
    margin-bottom: 30px;
    overflow-y: auto;
    white-space: nowrap;
}

#kadence-breadcrumbs {
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;     /* IE та Edge */
  scrollbar-width: none;        /* Firefox */
}

#kadence-breadcrumbs::-webkit-scrollbar {
  display: none;                /* Chrome, Safari, Opera */
}

.bc-delimiter:before {
    line-height: 1;
}

.mobile_nav {
    padding: 0 10px 5px;
}

.mobile_nav-inner-items-content a, .mobile_nav-inner-items-content {
    font-size: 15px;
}

.header-cart-button .header-cart-total {
    background: #c89a9b;
    color: #ffffff;
}

.discount-badge {
    display: flex;
    background: #F44336;
    color: #ffffff;
    border-radius: 8px;
    font-size: 16px;
    padding: 5px;
    flex-direction: column;
    gap: 5px;
}

.discount-badge span:first-child {
    font-size: 12px;
    text-transform: uppercase;
    padding: 0px 5px;
}

.discount-badge span:last-child {
    font-size: 28px;
    text-align: center;
    font-weight: 900;
}

.woocommerce .product .summary .price {
    align-items: center;
}

.reviews_gallery {
    display: flex;
    align-items: center;
    margin: 0px 0px 24px;
}

.reviews_gallery__photos {
    display: flex;
    align-items: center;
    flex: 1 200px;
}

.reviews_gallery__photos .gallery-item {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid #010101;
    padding: 0px;
    overflow: hidden;
}

.reviews_gallery__photos .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reviews_gallery__copy {
    flex: 1 calc(100% - 100px);
    line-height: 1.2;
    font-weight: 600;
}

.reviews_gallery__photos .gallery-item:nth-child(2) {
    left: -20px;
}

.reviews_gallery__photos .gallery-item:nth-child(3) {
    left: -40px;
}

.reviews_gallery__photos .gallery-item:nth-child(4) {
    left: -60px;
}

.reviews_gallery__copy {
    flex: 1 calc(100% - 200px);
    font-weight: 600;
    left: -50px;
    position: relative;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    line-height: 1;
}

.reviews_gallery__copy span:nth-child(1) {
    display: flex;
    flex-direction: row;
    font-size: 42px;
}

.woocommerce-page .content-bg .product.entry.loop-entry .discount-badge {
    display: none;
}

@media(max-width: 480px) {
	.woocommerce div.product form.cart .button {
		min-width: 80px;
		margin-right: 6px;
	}
	
	.woocommerce div.product form.cart div.quantity {
		margin-right: 6px;
	}
}

.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit.alt {
    background-color: #F4A9C6 !important;
    color: #010101 !important;
}