/*
* BREADCRUMBS
*/

.shop_title {
    padding: 10px 0;
    border-bottom: 1px solid #00000010;
    margin-bottom: 50px;
}

.breadcrumbs nav {
    margin: 0 !important;
}

.page-title {
    margin: 0;
}

.woocommerce-products-header {
    display: none;
}

/*
* SHOP PAGE GENERAL
*/

.site-container {
    padding: 0;
}

.has-sidebar .content-container {
    grid-gap: 20px;
}

.grid-cols {
    grid-gap: 10px;
}

#inner-wrap {
    padding-bottom: 50px;
}

.subcategories-title {
    font-size: 21px;
    font-family: 'Nivea';
    margin: 0 0 30px;
}

.subcategories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 20px;
}

.subcategories-list li {
    flex: 1 auto;
}

.subcategories-list li a {
    display: block;
    text-align: center;
    background: #dec8bf;
    border: 1px solid #dec8bf;
    padding: 10px 25px;
    font-size: 16px;
    min-width: 90px;
    color: #000000;
    font-family: 'Nivea';
    border-radius: 16px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
    transition: .3s ease-in;
    -webkit-transition: .3s ease-in;
    -moz-transition: .3s ease-in;
    -ms-transition: .3s ease-in;
    -o-transition: .3s ease-in;
}

.subcategories-list li a:hover {
	border: 1px solid #c89a9b;
    background: #c89a9b;
}

.archive-title-block .page-title {
    margin-top: 10px;
}

.category_full_desc-outer {
    position: relative;
    margin: 80px 0 50px;
}

.category_full_desc {
    margin: 50px 0 30px;
    max-height: 400px;
    overflow-y: scroll;
    padding: 0 20px 0 0;
}

.category_full_desc-bg {
    position: absolute;
    content: '';
    width: 100%;
    height: 100px;
    background: linear-gradient(360deg, #ffffff, transparent);
    bottom: 0;
}

.category_full_desc::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.category_full_desc::-webkit-scrollbar-button {
    height: 0;
}

.category_full_desc::-webkit-scrollbar-track {
    background-color: #999;
}

.category_full_desc::-webkit-scrollbar-track-piece {
    background-color: #f2f5f7;
}

.category_full_desc::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 0px;
    padding-left: 20px;
}

/*
* CATEGORIES WIDGET
*/

.woocommerce.widget_product_categories>ul {
    background: #ffffff;
    padding: 20px;
}

.woocommerce.widget_product_categories>ul li {
    padding: 5px 0;
    margin-bottom: 5px;
}

.woocommerce.widget_product_categories>ul li:last-child a {
    border-bottom: 0;
}

.cat-item .children {
    list-style: circle;
    color: #9a9a9a;
    padding: 0;
    font-size: 16px;
}

.cat-item .children li {
    margin-bottom: 0 !important;
}

.cat-item .children li a {
    color: #9a9a9a;
}

.woocommerce.widget_product_categories>ul .current-cat a {
    border-bottom: 0;
}

.woocommerce.widget_product_categories>ul li.cat-parent.sub-toggle-active>.kadence-cat-toggle-sub {
    background: transparent;
    border: 0;
}

.woocommerce.widget_product_categories>ul li.cat-parent.sub-toggle-active>.kadence-cat-toggle-sub:before {
    transform: rotate(0);
    border: 0;
    border-top: 2px solid var(--primary-color);
    width: 20px;
    margin-top: 3px;
}

/*
* 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 !important;
}

.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;
}

/*
* FILTER STYLES
*/

.bapf_loader_page {
    backdrop-filter: blur(8px);
    background: hsla(0, 0%, 100%, .8);
}

.bapf_body ul {
    padding: 0;
    margin: 0;
}

.bapf_body ul li {
    display: block;
    margin: 10px 0 !important;
}

.bapf_body ul li label {
    margin: 0;
}

/* PAGINATION */

.woocommerce nav.woocommerce-pagination ul {
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers {
    border-radius: 50%;
}

.outofstock .button.product_type_simple {
    display: none !important;
}

@media(min-width: 500px) {
    .outofstock .product-action-wrap {
        position: relative;
    }
    
    .outofstock .product-action-wrap:after {
        position: absolute;
        content: 'Немає в наявності';
        font-size: 16px;
        top: 50%;
        transform: translate(0%, -50%);
        right: 0;
        font-weight: 600;
        color: #9a9a9a;
    }
}


.woocommerce ul.products.woo-archive-btn-button .button {
    width: 30px !important;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}