/* ======================================================= */
/* home page product hover wishlist & compare (icon) */
/* ======================================================= */
.uc_post_image_wrap {
    position: relative;
}

.sl-product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 99;
}

/* ---------------------------------- */
/* compare & wishlist */
/* ---------------------------------- */
.sl-product-actions .sl-action a,
.sl-product-actions .sl-action button {
    background-color: var(--global-palette9);
    color: var(--global-palette1);
    border-radius: 0px;
    padding: 10px;
    font-size: 14px;
}

.sl-product-actions .sl-action a:hover,
.sl-product-actions .sl-action button:hover {
    background-color: var(--global-palette2);
    color: var(--global-palette9);
}

/* ---------------------------------- */
/* Desktop */
/* ---------------------------------- */
@media (min-width: 1025px) {

    .sl-product-actions {
        opacity: 0;
        pointer-events: none;
        transform: translateX(15px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .ue-item:hover .sl-product-actions {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }
}

/* ---------------------------------- */
/* Tablet & Mobile */
/* ---------------------------------- */
@media (max-width: 1024px) {

    .sl-product-actions {
        opacity: 1 !important;
        pointer-events: auto;
        transform: none;
    }
}

/* .uc_post_grid_style_one_item .uc_post_grid_style_one_button{
    opacity: .0;
}

.uc_post_grid_style_one_item:hover .uc_post_grid_style_one_button{
    opacity: 1;
} */

/* ======================================================== */
/* product hover add to cart & quickview (button) */
/* ======================================================== */
.uc_post_grid_style_one_item {
    position: relative;
}

.uc_post_grid_style_one_item .uc_post_grid_style_one_button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8em;
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    z-index: 9;
    padding: 0 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
}

.sl-product-actions .uc_post_grid_style_one_button>* {
    flex: 1 1 0;
}

/* .uc_post_grid_style_one_item:hover .uc_post_grid_style_one_button {
    opacity: 1;
    transform: translateY(0);
} */

.sl-product-actions-button .uc_post_grid_style_one_button .sl-action a,
.sl-product-actions-button .uc_post_grid_style_one_button button,
.sl-product-actions-button .uc_post_grid_style_one_item .added_to_cart {
    display: inline;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 0;
    background-color: var(--global-palette9);
    border: none;
    color: var(--global-palette1);
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 7px;
    text-align: center;
}

.sl-product-actions-button .uc_post_grid_style_one_button .sl-action:hover a,
.sl-product-actions-button .uc_post_grid_style_one_button button:hover,
.sl-product-actions-button .uc_post_grid_style_one_item .added_to_cart:hover {
    background-color: var(--global-palette1);
    color: var(--global-palette9);
    border-color: var(--global-palette1);
}

.sl-product-actions-button .uc_post_grid_style_one_button button.uc-button-addcart,
.sl-product-actions-button .uc_post_grid_style_one_button .added_to_cart {
    margin-top: 0 !important;
}

.ue-variable-btn {
    display: inline-block;
}

.ue-inner-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    text-align: center;
    border: none;
}

.ue-inner-btn-wrapper span {
    display: flex;
    align-items: center;
}

.uc_post_grid_style_one_item .uc_post_grid_style_one_button {
    opacity: 0;
}

.uc_post_grid_style_one_item:hover .uc_post_grid_style_one_button {
    opacity: 1;
    transform: translateY(0);
}

.sl-product-actions .woosw-btn-text,
.sl-product-actions .woosc-btn-text {
    display: none;
}

/* body.products-list-view .content-style-boxed .content-bg.loop-entry .content-bg:not(.loop-entry){
    background: var(--global-palette7);
} */

/* ---------------------------------- */
/* Tablet & Mobile */
/* ---------------------------------- */
@media (max-width: 1024px) {
    .sl-product-actions-button .uc_post_grid_style_one_button {
        opacity: 1;
        transform: translateY(0);
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================= */
/* shop page product onsale */
/* ============================= */
body.woocommerce ul.products li.product .onsale {
    top: 8px;
    right: auto;
    left: 8px;
    margin: 0;
    border-radius: 0;
    background-color: var(--global-palette9);
    color: var(--global-palette2);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

/* ============================= */
/* shop page product gap */
/* ============================= */
.wc-block-grid ul.wc-block-grid__products,
.woocommerce ul.products.grid-cols {
    -webkit-column-gap: 1.5em;
    -moz-column-gap: 1.5em;
    column-gap: 1.5em;
    row-gap: 1.5em;
}

/* ===================================================== */
/* shop page product details defalt hover none */
/* =====================================================*/
body .woocommerce ul.products.woo-archive-action-on-hover li.product:hover .entry-content-wrap,
body .woocommerce ul.products.woo-archive-action-on-hover li.product:focus-within .entry-content-wrap,
body.woocommerce ul.products.woo-archive-action-on-hover li.product:hover .entry-content-wrap,
body.woocommerce ul.products.woo-archive-action-on-hover li.product:focus-within .entry-content-wrap {
    -webkit-transform: none;
    transform: none;
}

body .woocommerce ul.products.woo-archive-action-on-hover li.product:hover .product-action-wrap,
body .woocommerce ul.products.woo-archive-action-on-hover li.product:focus-within .product-action-wrap,
body.woocommerce ul.products.woo-archive-action-on-hover li.product:hover .product-action-wrap,
body.woocommerce ul.products.woo-archive-action-on-hover li.product:focus-within .product-action-wrap {
    bottom: 144px;
    text-align: center;
}

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

    body .woocommerce ul.products.woo-archive-action-on-hover li.product:hover .product-action-wrap,
    body .woocommerce ul.products.woo-archive-action-on-hover li.product:focus-within .product-action-wrap,
    body.woocommerce ul.products.woo-archive-action-on-hover li.product:hover .product-action-wrap,
    body.woocommerce ul.products.woo-archive-action-on-hover li.product:focus-within .product-action-wrap {
        bottom: 0px;
    }
}

/* body.woocommerce ul.products li.product .woocommerce-loop-product__link {
    position: relative;
    display: block;
} */

/* body.woocommerce ul.products li.product .product-action-wrap button.woosc-btn,
body.woocommerce ul.products li.product .product-action-wrap button.woosw-btn, */
body.woocommerce ul.products li.product .product-action-wrap button.woosq-btn {
    display: none;
}

/* ===================================================== */
/* product center shop page*/
/* =====================================================*/

/* body.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    text-align: center;
} */

/* ===================================================== */
/* shop page drop down */
/* =====================================================*/

.woocommerce-ordering select.orderby {
    color: var(--global-palette1);
}


/* ===================================================== */
/* shop page product background*/
/* =====================================================*/

body.content-style-unboxed .content-bg.loop-entry .content-bg:not(.loop-entry) {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

@media (max-width: 767px) {
    body.content-style-unboxed .content-bg.loop-entry .content-bg:not(.loop-entry) {
        height: 170px;
    }
}

/* ===================================================== */
/* shop page product */
/* compare & wishlist (grid view) */
/* ===================================================== */
body.woocommerce ul.products li.product .archive-product-thumb {
    position: relative;
}

.woocommerce ul.products li.product .archive-product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 99;
}

.woocommerce ul.products li.product .archive-product-actions a.woosw-btn,
.woocommerce ul.products li.product .archive-product-actions a.woosc-btn,
.woocommerce ul.products li.product .archive-product-actions button.woosq-btn {
    background-color: var(--global-palette7);
    color: var(--global-palette2);
    border-radius: 7px;
    padding: 10px;
    font-size: 15px;
}

.woocommerce ul.products li.product .archive-product-actions a.woosw-btn:hover,
.woocommerce ul.products li.product .archive-product-actions a.woosc-btn:hover,
.woocommerce ul.products li.product .archive-product-actions button.woosq-btn:hover {
    background-color: var(--global-palette2);
    color: var(--global-palette9);
}

.archive-product-actions .woosw-btn-text,
.archive-product-actions .woosc-btn-text {
    display: none;
}

body.woocommerce ul.products li.product .product-action-wrap button.woosc-btn,
body.woocommerce ul.products li.product .product-action-wrap button.woosw-btn {
    display: none;
}

.product-action-wrap .woosc-btn,
.product-action-wrap .woosw-btn {
    display: none;
}


body.woocommerce ul.products.woo-archive-action-on-hover li.product .product-action-wrap {
    bottom: 144px;
    text-align: center;
}

@media (max-width: 767px) {
    body.woocommerce ul.products.woo-archive-action-on-hover li.product .product-action-wrap {
        bottom: 0;
    }
}

/* ======================================================= */
/* /* single-product-page wishlist-area*/
/* hide add to cart btn and show view cart btn */
/* ======================================================= */
.product.woocommerce.add_to_cart_inline a.added_to_cart {
	padding: 15px 46px;
	font-size: 15px;
	font-weight: 600;
	color: var(--global-palette9);
	background-color: var(--global-palette2);
	text-decoration: none;
	border-radius: 0;
	letter-spacing: 0.32px;
}

.product.woocommerce.add_to_cart_inline a.add_to_cart_button.added {
    display: none;
}

.product.woocommerce.add_to_cart_inline a.add_to_cart_button.added a.added_to_cart {
    display: inline-block;
}

/* ---------------------------------- */
/* desktop */
/* ---------------------------------- */

.woocommerce ul.products li.product .archive-product-actions {
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateX(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.woocommerce ul.products li.product:hover .archive-product-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* ---------------------------------- */
/* tablet & mobile */
/* ---------------------------------- */
@media (max-width: 1024px) {
    body.woocommerce ul.products li.product .archive-product-actions {
        opacity: 0;
        pointer-events: auto;
        transform: none;
    }
}

/* ========================================================================= */
/* shop page product 
/* shop page title */
/* ========================================================================= */

/* .woocommerce-loop-product__title {
    font-size: 30px !important;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	max-width: 600px;
} */

/* ========================================================================= */
/* shop page product 
/* add to cart & quickview (button)(grid view & list view) */
/* ========================================================================= */
body.woocommerce ul.products-grid-view li.product .product-details .product-action-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 144px;
    display: flex;
    gap: 15px;
    padding: 15px 10px;
    z-index: 9;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.woocommerce ul.products li.product .product-action-wrap a.button {
    font-size: 100%;
    font-weight: 600;
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 45px;
    background-color: var(--global-palette2);
    border: none;
    color: var(--global-palette9);
    white-space: nowrap;
    border-radius: 0;
    transition: all 0.3s ease;
}

.woocommerce ul.products-grid-view li.product:hover .product-action-wrap {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ---------------------------------- */
/* Tablet & Mobile */
/* ---------------------------------- */
@media (max-width: 767px) {
    body.woocommerce ul.products-grid-view li.product .product-details .product-action-wrap {
        opacity: 1;
        bottom: 0;
        transform: translateY(0);
        flex-direction: column;
        pointer-events: auto;
        padding: 0;
    }
}

/* ===================================================== */
/* shop page product */
/* add to cart & quick view (list view) */
/* ===================================================== */
.woocommerce ul.products-list-view li.product .product-action-wrap {
    display: flex;
    gap: 15px;
    padding: 15px;
    z-index: 9;
}

/* ---------------------------------- */
/* Tablet & Mobile */
/* ---------------------------------- */
@media screen and (min-width: 576px) {
    body.woocommerce ul.products.products-list-view li.product {
        align-items: center;
    }
}

@media screen and (max-width: 575px) {
    body.woocommerce ul.products-list-view li.product .product-details .product-action-wrap {
        opacity: 1;
        transform: translateY(0);
        flex-direction: column;
        pointer-events: auto;
        bottom: 0;
        padding: 0;
    }
}

/* ========================================================================= */
/* shop page product 
/* add to cart & view cart (button style)(grid view) */
/* ========================================================================= */

.woocommerce ul.products li.product .product-action-wrap .slaceso-svg-iconset {
    display: none;
}

/* shop page grid column view */
.slaceso-product-toggle-container .slaceso-toggle-shop-layout.toggle-active,
.slaceso-product-toggle-container .slaceso-toggle-shop-layout:hover {
    color: var(--global-palette2) !important;
    border-color: var(--global-palette2) !important;
}

/* ---------------------------------- */
/* Tablet & Mobile */
/* ---------------------------------- */
@media screen and (max-width: 1690px) {
    body ul.products-list-view li.product .product-details.content-bg.entry-content-wrap {
        padding: 0 15em !important;
    }
}

@media screen and (max-width: 1450px) {
    body ul.products-list-view li.product .product-details.content-bg.entry-content-wrap {
        padding: 0 10em !important;
    }
}

@media screen and (max-width: 1210px) {
    body ul.products-list-view li.product .product-details.content-bg.entry-content-wrap {
        padding: 0 5em !important;
    }
}

@media screen and (max-width: 890px) {
    body ul.products-list-view li.product .product-details.content-bg.entry-content-wrap {
        padding: 0 2em !important;
    }
}

@media screen and (max-width: 768px) {
    body.woocommerce ul.products.products-list-view li.product {
        display: flex;
        flex-wrap: wrap;
    }

    body ul.products-list-view li.product .product-details.content-bg.entry-content-wrap {
        width: 100%;
        margin-top: 30px;
        padding: 0em !important;
        height: 270px;
    }
}

@media screen and (max-width: 575px) {
    body ul.products-list-view li.product .product-details.content-bg.entry-content-wrap {
        height: 160px;
    }
}

/* ---------------------------------- */
/* View cart
/* ---------------------------------- */

.woocommerce ul.products li.product .product-action-wrap a.added_to_cart.wc-forward,
.woocommerce ul.products-list-view li.product .product-action-wrap a.added_to_cart.wc-forward {
    position: static;
    flex: 1;
    align-items: center;
    padding: 15px 45px;
    justify-content: center;
    background-color: var(--global-palette2);
    border: none;
    border-radius: 0;
    color: var(--global-palette9);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
    font-size: 100%;
    font-weight: 600;
}

/* ---------------------------- */
/* view-cart displlay-none */
/* ----------------------------- */

.product:hover .wpcbn-btn-archive,
.wpcbn-btn-archive {
    display: none !important;
}

/* ---------------------------------- */
/* Tablet & Mobile */
/* ---------------------------------- */
@media (max-width: 1024px) {
    .woocommerce ul.products-list-view li.product .product-action-wrap a.added_to_cart.wc-forward {
        opacity: 1;
        transform: translateY(0);
        flex-direction: column;
        pointer-events: auto;
    }
}

.woocommerce ul.products li.product .product-action-wrap a.add_to_cart_button.added {
    opacity: 0;
    display: none;
}

.woocommerce ul.products li.product .product-action-wrap a.added_to_cart.wc-forward {
    opacity: 1;
    pointer-events: auto;
}

/* =========================================== */
/* shop page product add to cart icon */
/* =========================================== */
body.woocommerce ul.products li.product .product-details .product-action-wrap a.add_to_cart_button::before {
    content: "";
    width: 16px;
    height: 16px;
    display: none;
    background-color: var(--global-palette1);
    -webkit-mask: url("../image/cart.svg") no-repeat center / contain;
    mask: url("../image/cart.svg") no-repeat center / contain;
    margin-right: 8px;
    transition: background-color 0.3s ease;
}

body.woocommerce ul.products li.product .product-details .product-action-wrap a.add_to_cart_button:hover::before {
    background-color: var(--global-palette9);
}

/* =========================================== */
/* header cart css */
/* =========================================== */

.header-cart-wrap .header-cart-button .header-cart-total {
    position: absolute;
    right: 52px;
    top: 20px;
}

/* =========================================== */
/* shop page rating */
/* =========================================== */

body.woocommerce .star-rating span::before {
    color: var(--global-palette2);
}

body.woocommerce ul.products li.product .star-rating,
body.woocommerce .products .star-rating,
body.woocommerce .star-rating {
    float: none;
    margin: .25em 0 .25em;
    color: var(--global-palette2);
}

body.woocommerce ul.products li.product .star-rating~.price {
    padding: 10px 0 30px 0;
}

.product-action-wrap .woosq-btn-has-icon {
    margin-top: 15px;
}

body.woocommerce ul.products.products-list-view li.product .star-rating~.price {
    margin-top: 20px;
}

@media screen and (max-width: 575px) {
    body.woocommerce ul.products.products-list-view li.product .star-rating~.price {
        margin-top: 0px;
    }
}

/* =================================================== */
/* wishlist-popup-nitification */
/* ==================================================== */

.woosw-item--actions .woocommerce a.add_to_cart_button {
    padding: 15px 40px;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-popup-content-bot-inner a:hover {
    color: var(--global-palette1);
    border-color: var(--global-palette1);
}

body .woosw-popup .woosw-popup-inner .woosw-popup-content {
    max-width: 550px;
}

/* =================================================== */
/* wishlist-page */
/* =================================================== */
.woosw-items {
    width: 100%;
    border-collapse: collapse;
}

.woosw-items tr {
    border-bottom: 1px solid var(--global-palette6);
}

.woosw-items td {
    padding: 16px;
    vertical-align: middle;
}

.woosw-list table.woosw-items tr td {
    padding: 20px 0px 20px 5px;
}

.woosw-list .woosw-copy .woosw-copy-url input[type="url"] {
    padding: 1.13rem .5em;
}

.woosw-item .woosw-item--atc .add_to_cart_inline {
    text-align: right;
}

.woosw-copy-btn {
    margin-left: 10px;
}

#woosw_copy_btn {
    padding: 20px 25px;
}

@media (max-width: 870px) {
    body.woocommerce-account .account-navigation-wrap {
        float: center;
        width: 100%;
    }

    body.woocommerce-account .woocommerce-MyAccount-content {
        float: center;
        width: 100%;
        padding-right: 0;
    }
}

@media (max-width:568px) {
    .woosw-items tr {
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        width: 100%;
    }

    .woosw-items .woosw-item .woosw-item--remove,
    .woosw-items .woosw-item .woosw-item--atc .add_to_cart_inline a {
        width: 100%;
        text-align: center;
    }

    .woosw-list table.woosw-items td.woosw-item--image {
        width: 100% !important;
    }

    .woosw-list table.woosw-items td.woosw-item--image a {
        display: block;
        width: 100%;
    }

    .woosw-list table.woosw-items td.woosw-item--image a img {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
    }

    .woosw-list .woosw-copy {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    body .woosw-list .woosw-copy .woosw-copy-url {
        width: 100% !important;
        border: 1px solid var(--global-palette6);
    }

    #woosw_copy_url {
        border: none;
    }

    .woosw-list table.woosw-items tr td {
        padding: 20px 0px 20px 0px;
    }

    .woosw-item-inner {
        flex-wrap: wrap;
        padding: 25px 0 !important;
    }

    .woosw-item--actions {
        margin-top: 20px;
    }
}

/* ======================================================= */
/* /* single-product-page wishlist-area*/
/* hide add to cart btn and show view cart btn */
/* ======================================================= */

/* Hide View Cart by default */
/* ======================================================= */
/* whishlist add to cart hide and show view */
/* ======================================================= */
body .woosw-item--actions .woocommerce a.added_to_cart {
    color: var(--global-palette9);
    background-color: var(--global-palette2);
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
    font-weight: 600;
    font-size: 100%;
    padding: 15px 44px;
}

/* @media (max-width: 870px) {
    body .woosw-item--actions .woocommerce a.added_to_cart {
        padding: 10px 9px;
    }
} */

/* Toggle on click */
/* Both buttons */
body .woosw-item--actions .woocommerce a.add_to_cart_button,
body .woosw-item--actions .woocommerce a.added_to_cart {
    transition: opacity 0.3s ease;
}

/* After click */
body .woosw-item--actions .woocommerce a.added {
    display: none;
    visibility: hidden;
}

body .woosw-item--actions .woocommerce a.added+a.added_to_cart {
    opacity: 1;
    visibility: visible;
    justify-content: center;
}

/* * =========================================== */
/* shop-page-fullwidth */
/* =========================================== */

body.woocommerce-shop .site-main,
body.tax-product_cat .site-main,
body.tax-product_tag .site-main {
    padding: 60px 60px;
    box-sizing: border-box;
}

@media (max-width: 1380px) {

    body.woocommerce-shop .site-main,
    body.tax-product_cat .site-main,
    body.tax-product_tag .site-main {
        padding: 40px 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 1270px) {

    body.woocommerce-shop .site-main,
    body.tax-product_cat .site-main,
    body.tax-product_tag .site-main {
        padding: 10px 0;
        box-sizing: border-box;
    }
}

/* ===================================================== */
/* shop page product responsive */
/* column */
/* ===================================================== */

@media (max-width: 1201px) {
    .grid-lg-col-5 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 881px) {
    .grid-lg-col-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .grid-lg-col-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 360px) {
    .grid-lg-col-5 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* =========================================== */
/* single-shop-page*/
/* Quick-Compare-area */
/* =========================================== */

.woosc-quick-table .woosc-quick-table-products {
    margin: 30px 0 40px 0;
}

.woosc-quick-table table {
    border-collapse: collapse;
    border-color: inherit;
    text-indent: 0;
}

.woosc-quick-table .woosc-quick-table-products thead th {
    padding: 16px;
}

.woosc-quick-table .woosc-quick-table-products tbody tr td.td-label {
    font-weight: 500;
    min-width: 230px;
    text-transform: capitalize;
}

.woosc-quick-table .woosc-quick-table-products tbody tr td {
    max-width: 310px;
    padding: 16px;
    position: relative;
    z-index: 1;
}

.woosc-quick-table .tr-description td.col {
    white-space: normal;
    text-overflow: unset;
}

.woosc-quick-table .tr-description td.col {
    line-clamp: 3 !important;
    overflow: hidden;
    line-height: 1.6;
}

/* .woosc-quick-table .tr-additional .woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
}

.woosc-quick-table .tr-additional .woocommerce-product-attributes-item {
    border-bottom: 1px solid var(--global-palette6);
}

.woosc-quick-table .tr-additional .woocommerce-product-attributes-item__label {
    width: 70px;
    font-weight: 600;
    color: var(--global-palette2);
    text-align: left;
    padding: 6px 6px 6px 0;
    vertical-align: top;
    white-space: nowrap;
}

.woosc-quick-table .tr-additional .woocommerce-product-attributes-item__label::after {
    content: ":";
    margin-left: 4px;
}

.woosc-quick-table .tr-additional .woocommerce-product-attributes-item__value {
    padding: 6px 0;
    color: #444;
    vertical-align: top;
}

.woosc-quick-table .tr-additional .woocommerce-product-attributes-item__value p {
    margin: 0;
}*/

/* .woosc-quick-table .woosc-quick-table-products td.col .star-rating {
    float: left;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
} */

body.woocommerce a.added_to_cart {
    font-size: 100%;
    padding: 15px 35px;
    background-color: var(--global-palette2);
    color: var(--global-palette9);
    border-radius: 0;
}

/* .button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    padding: 15px 28px;
} */

/* ---------------------------------- */
/* quantity */
/* ---------------------------------- */

.slaceso-cart-button-large.woocommerce div.product form.cart div.quantity.spinners-added .qty,
.slaceso-cart-button-large.woocommerce div.product form.cart div.quantity.spinners-added {
    background-color: var(--global-palette6);
    padding: 3px;
    border-radius: 0;
    color: var(--global-palette1);
}

body .quantity.spinners-added input.minus,
body .quantity.spinners-added input.plus {
    background-color: var(--global-palette6);
    color: var(--global-palette1);
    box-shadow: none;
    padding: 0 .8em;
    line-height: 38px;
    border: 0;
    border-radius: 7px;
    font-size: 20px;
}

body .quantity.spinners-added input.minus:hover,
body .quantity.spinners-added input.plus:hover {
    background-color: var(--global-palette6);
    color: var(--global-palette1);
}

body .quantity.spinners-added,
body .quantity.spinners-added:hover {
    border-color: var(--global-palette6);
    border-radius: 0;
}

/* ---------------------------------- */
/* add to cart button */
/* ---------------------------------- */

body.woocommerce div.product button.single_add_to_cart_button:not(.wpcbn-btn) {
    height: 60px;
    line-height: 60px;
    font-size: 16px !important;
    background: var(--global-palette6);
    color: var(--global-palette1);
    border: none;
    box-shadow: none;
    border-radius: 0;
}

body.woocommerce div.product button.wpcbn-btn {
    height: 60px;
    line-height: 60px;
    font-size: 16px !important;
    background: var(--global-palette2);
    color: var(--global-palette9);
    box-shadow: none;
    margin-top: 20px;
    width: 100% !important;
    border-radius: 0;
}

/* body.woocommerce div.product button.wpcbn-btn span {
    font-size: 15px;
    line-height: 60px;
    --kb-btn-font-size: 15px;
} */

body.woocommerce div.product form.cart {
    margin-bottom: 1em;
}

/* ---------------------------------- */
/* single-product-page*/
/* search button */
/* ---------------------------------- */

body.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    top: 15px;
    right: 30px;
}

/* ---------------------------------- */
/* cart-compare-icon */
/* single-product-page*/
/* ---------------------------------- */

body.slaceso-cart-button-large.woocommerce div.product .button.single_add_to_cart_button:hover {
    background-color: var(--global-palette2);
    color: var(--global-palette9);
}

@media (max-width: 768px) {
    .woocommerce-variation-add-to-cart {
        flex-direction: column;
    }
}

body .summary.entry-summary .woosc-btn-has-icon,
body .summary.entry-summary .woosw-btn-has-icon {
    /* display: inline-flex;
    align-items: center; */
    margin: 10px 40px 0 0;
    /* font-size: 26px; */
    text-decoration: none;
    font-size: 18px;
}

/* ---------------------------------- */
/* single-product-page*/
/* product-meta */
/* ---------------------------------- */

body.woocommerce div.product .product_meta>span {
    display: block;
    font-size: 100%;
    font-weight: 400;
    color: var(--global-palette1);
}


/* ---------------------------------- */
/* single-product-page*/
/* tumbnail-image */
/* ---------------------------------- */

body.woocommerce div.product div.images {
    margin-bottom: 8em;
}

body.woocommerce div.product div.images .flex-control-thumbs {
    margin: 0;
    padding: 50px 0 0 0;
}

body.woocommerce div.product div.images .flex-control-thumbs li {
    width: 100px;
    height: auto;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

body.woocommerce div.product div.images .flex-control-thumbs li:first-child {
    width: 100px;
    padding-left: 0;
}

/* ---------------------------------- */
/* single-product-page*/
/*tab*/
/* ---------------------------------- */

body.woocommerce div.product .woocommerce-tabs {
    background-color: var(--global-palette9);
    padding: 50px 50px 20px 50px;
    margin-bottom: 50px;
}

@media (max-width:1100px) {
    body.woocommerce div.product .woocommerce-tabs {
        padding: 10px;
    }

    body.woocommerce div.product .woocommerce-tabs h2 {
        font-size: 40px;
    }
}

body.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 35px;
    padding: 0;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: var(--global-palette1);
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background-color: transparent;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background-color: transparent;
    color: var(--global-palette1);
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    border-bottom-color: var(--global-palette1);
}

/* ---------------------------------- */
/* single-product-page*/
/* tab review */
/* ---------------------------------- */

.comment-form-comment #comment:focus {
    color: var(--global-palette1);
    box-shadow: none;
}

/* ---------------------------------- */
/* single-product-page*/
/* product-extras */
/* ---------------------------------- */

.woocommerce .single-product-extras {
    padding-top: 20px;
    border-top: 1px solid var(--global-palette6);
    margin-top: 20px;
}

/* ---------------------------------- */
/* single-product-page*/
/* payment-area */
/* ---------------------------------- */

body.woocommerce .single-product-payments:has(> legend) {
    padding-top: 25px;
}

body.woocommerce .single-product-payments {
    border: none;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0px 0 38px 0;
    background-color: var(--global-palette6);
    border-radius: 0;
}

body.woocommerce .single-product-payments legend {
    color: var(--global-palette1);
    margin: auto;
}

body.woocommerce .single-product-payments ul {
    gap: 2em;
}

/*-------------------------------------- */
/* single-product-page*/
/* notice-bg */
/*-------------------------------------- */

body.woocommerce .woocommerce-message {
    background-color: var(--global-palette6);
}

/* =========================================== */
/* single-product-page*/
/* cart-popup-Notification
/* =========================================== */

/* .wooac-popup {
    padding: 20px;
}

.wooac-popup-vertical .wooac-text {
    margin: 30px 0 15px 0;
}

.wooac-popup-vertical .wooac-cart-content {
    margin-bottom: 15px;
}

.wooac-popup .wooac-action a {
    text-decoration: none;
    text-transform: uppercase;
    font-family: 15px !important;
} */

/* ============================================================================ */
/* header-cart-dropdwon-design */
/* ============================================================================ */

#cart-drawer.popup-drawer .drawer-header {
    padding: 50px 30px 30px 30px;
}

#cart-drawer h2.side-cart-header,
body.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
    font-size: revert !important;
}

body.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
    width: 60px;
}

body .woocommerce.widget_shopping_cart .cart_list li .quantity {
    color: var(--global-palette1);
    font-size: revert !important;
}

body .woocommerce.widget_shopping_cart .buttons a:not(.checkout) {
    border: 1px solid var(--global-palette6);
    margin-bottom: 15px;
}

body .woocommerce.widget_shopping_cart .buttons a:not(.checkout):hover {
    background-color: var(--global-palette2);
    color: var(--global-palette9);
    border: 1px solid var(--global-palette2);
}

body .woocommerce.widget_shopping_cart .cart_list li {
    margin-bottom: 10px;
}

body .woocommerce.widget_shopping_cart .total {
    margin-top: 40px;
}

/* ========================================= */
/* cart-page */
/* ========================================== */

/* .wc-block-components-totals-coupon__form .wc-block-components-text-input label {
    top: 28px;
}

.wc-block-components-totals-coupon__form .wc-block-components-text-input input[type="text"],
.wc-block-components-totals-coupon__form .wc-block-components-text-input input[type="text"]:focus {
    padding: 28px 12px;
    border-radius: 0;
}

.wp-block-woocommerce-cart-totals-block .wc-block-cart__submit {
    margin: 15px 0 0 0;
    padding: 0;
}

.wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button,
.wp-block-woocommerce-cart-totals-block .wc-block-components-totals-coupon__button {
    border-radius: 0;
}

.wc-block-components-product-name {
    font-size: revert !important;
}*/

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    border-radius: 0;
    outline: none;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):hover,
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus {
    box-shadow: none !important;
    border-radius: 0;
    outline: none;
}

/* =============================================== */
/* checkout-page */
/* =============================================== */

.wp-block-woocommerce-checkout-order-summary-block {
    background-color: var(--global-palette9);
    border-radius: 0 !important;
}

body .wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-address-form-wrapper .wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-address-form-wrapper #billing-address_1,
.wc-block-components-address-form-wrapper #billing-first_name,
.wc-block-components-address-form-wrapper #billing-last_name,
.wc-block-components-address-form-wrapper #billing-postcode,
.wc-block-components-address-form-wrapper #billing-phone,
.wc-block-components-address-form-wrapper #billing-city {
    border-radius: 0;
    border-color: var(--global-palette6);
}

.wc-block-checkout__actions_row a {
    text-transform: uppercase;
    background-color: var(--global-palette1);
    color: var(--global-palette9);
    min-height: 4em;
    width: 30%;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

.wc-block-components-checkout-return-to-cart-button svg {
    left: 21px !important;
}

@media (max-width:1100px) {

    body .wc-block-components-sidebar-layout .wc-block-components-main,
    body .wc-block-components-sidebar {
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

@media (max-width:795px) {
    .wc-block-checkout__actions_row {
        margin-top: 30px;
    }
}

@media (max-width:700px) {
    .wc-block-components-checkout-return-to-cart-button svg {
        display: none;
    }

    body .wc-block-components-checkout-return-to-cart-button {
        padding-left: 0;
    }
}

@media (max-width:520px) {

    .wc-block-checkout__actions_row {
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .wc-block-checkout__actions_row a,
    .wc-block-components-checkout-place-order-button {
        width: 100%;
    }
}

/* ============================================ */
/* my Account */
/* address */
/* ============================================ */

body .woocommerce-Address-title h2 {
    font-size: 30px !important;
}

body.woocommerce-account .addresses .title .edit {
    float: left;
    padding: .3em 0 2rem 0;
}

/* ============================================ */
/* my Account */
/* account details */
/* ============================================ */

#account_first_name,
#account_last_name,
#account_display_name {
    color: var(--global-palette1);
}


/* ============================================ */
/* my Account */
/* log out */
/* ============================================ */

body .woocommerce form .form-row label {
    margin-top: 20px;
    font-weight: 500;
    color: var(--global-palette1);
    font-size: 100%;
}

body .woocommerce-MyAccount-content form .form-row {
    padding: 0;
    margin: 0 0 2em;
}

body .woocommerce-MyAccount-content fieldset {
    border-color: var(--global-palette6);
    border-radius: 0;
}

body .woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
    right: .4em;
    background-color: var(--global-palette1);
    border-color: var(--global-palette6);
    padding: 7px;
}

body .woocommerce form .show-password-input,
.woocommerce form .form-row input.input-text,
.woocommerce-page form .form-row input.input-text {
    padding: 15px;
    border: 1px solid var(--global-palette6);
    border-radius: 0;
    background-color: transparent;
    color: var(--global-palette1);
    box-shadow: none;
}

body .woocommerce form .show-password-input {
    color: var(--global-palette1);
    background-color: var(--global-palette1);
}

.woocommerce-form.woocommerce-form-register.register {
    border: 1px solid var(--global-palette6);
    border-radius: 7px;
}

body .single-content p {
    margin-bottom: 22px;
}

.woocommerce form .form-row .button {
    margin-top: 20px;
}


body .woocommerce form.login {
    border: 1px solid var(--global-palette6);
    border-radius: 0;
}

/* ======================================================================== */
/* my Account */
/* compare-page */
/* ========================================================================== */

.woosc-list table {
    border-collapse: collapse;
    border-color: inherit;
    width: 100%;
}

.woosc-list tbody td.td-label {
    font-weight: 600;
    min-width: 230px;
    text-transform: capitalize;
}

.woosc-list tbody td:first-child {
    z-index: 2;
}

.woosc-list .woosc_table tbody tr td {
    border-bottom: 1px solid var(--global-palette6);
}

.woosc-list tbody td {
    max-width: 310px;
    padding: 16px;
    position: relative;
    z-index: 1;
}

.woosc-list td.col a.button,
.woosc-list tbody td .added_to_cart.wc-forward {
    padding: 12px 9px !important;
}

@media (max-width: 1100px) {
    .woosc-list tbody td.td-label {
        min-width: 120px;
    }
}

/* Star rating */
.woosc-list td.col .star-rating {
    float: left;
}

/* ============================================ */
/* quickview popup button */
/* ============================================ */

body.heaven-cart-button-large.woocommerce div.product form.cart div.quantity {
    width: 25%;
}

body.heaven-cart-button-large.woocommerce div.product .button.single_add_to_cart_button,
body .woocommerce div.product .button.single_add_to_cart_button {
    width: 75%;
    height: 60px;
}

body .woocommerce div.product button.wpcbn-btn {
    display: none;
}

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

body .woocommerce .quantity .qty {
    width: 6em;
    height: 60px;
    color: var(--global-palette1);
    border-radius: 0px;
}

body .woocommerce div.product .product_meta>span {
    font-size: 100%;
    color: var(--global-palette1);
}