/*
Theme Name: Divi Child
Theme URI: http://example.com/your-theme-child/
Description: Child theme for Divi
Author: Michael Likipe
Author URI: https://likipe.se
Template: Divi
Text Domain:  Divi-child
Version: 1.0.0
*/
.woocommerce ul.products li.product .price {
    color: #E09900 !important;
}

.tax-pwb-brand #main-content .container {
    padding-top: 0 !important;
    max-width: 100%;
}

.filter-area {
    margin: 2rem 0;
}

.banner-description .title {
    font-weight: 700;
}

.tax-pwb-brand .woocommerce-products-header {
    display: none;
}

.tax-pwb-brand .woocommerce-loop-product__title {
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    text-align: center;
}

.tax-pwb-brand .product .price {
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #E09900 !important;
    text-align: center;
}

.tax-pwb-brand .et_shop_image {
    display: block;
    box-shadow: 0 4px 10px #aaa;
}

.tax-pwb-brand .filters {
    margin: 0;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none !important;
}

.tax-pwb-brand .filter-item {
    margin: .5rem 0;
    padding: .5rem 0;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    min-width: 150px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: #000;
}

.tax-pwb-brand .filter-item.active {
    text-decoration: underline;
}

.tax-pwb-brand .filter-item a {
    color: #fff;
}

.tax-pwb-brand .woocommerce-result-count,
.tax-pwb-brand .woocommerce-ordering {
    display: none;
}

.wc-attr-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.wc-attr-button {
    padding: 8px 14px;
    border: 1px solid #ccc;
    background: #f7f7f7;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.wc-attr-button.active {
    background: #000;
    color: #fff;
    border-color: #000;
}


/* Overlay */
#divi-mini-cart-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
}

/* Drawer */
#divi-mini-cart-drawer {
    position: fixed;
    right: -380px; /* hidden */
    top: 0;
    width: 380px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: -3px 0 12px rgba(0,0,0,0.15);
    padding: 25px;
    transition: right 0.35s ease;
    overflow-y: auto;
}

#divi-mini-cart-drawer.active {
    right: 0;
}

#divi-mini-cart-overlay.active {
    display: block;
}

/* Close button */
#divi-mini-cart-drawer .close-mini-cart {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    cursor: pointer;
}

.woocommerce-thankyou-order-received {
    display: none;
}

.woocommerce-thankyou-order-details {
    padding: 0;
    display: flex;
    justify-content: center;
}

@media only screen and (min-width: 768px) {
    .filter-area {
        background-color: #000;
    }
    .tax-pwb-brand #main-content .container {
        padding-top: 58px !important;
        max-width: 90%;
    }

    .tax-pwb-brand .filter-item {
        border-left: 0;
        background: transparent;
        padding: 0;
    }

    .tax-pwb-brand .filter-item:first-child {
        border-left: 2px solid #fff;
    }
}