/*BASE*/

:root .theme-woodmart .cart-widget-side{
    --btn-height: 55px;
    --wd-form-height: 55px;
}

.cart-widget-side.wd-side-hidden{
    width: 450px;
    max-width: 100%;
    z-index: 9999;
}

.theme-woodmart .cart-widget-side .woocommerce-mini-cart .mini_cart_item:hover{
    background-color: transparent;
}

.theme-woodmart .woocommerce-mini-cart__buttons .btn-cart{
    background-color: var(--bg-secondary);
    color: #333;
}

.theme-woodmart .woocommerce-mini-cart__buttons .btn-cart:hover{
    background-color: #efefef;
    color: #333;
}

.cart-widget-side a.cart-item-image:before{
    content: '';
    background: rgb(137 155 172 / 10%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cart-widget-side .product_list_widget>li img{
    min-width: 100px;
    max-width: 100px;
    aspect-ratio: 1;
    object-fit: cover;
}

.cart-widget-side .product_list_widget>li>a{
    margin-right: 15px;
    margin-bottom: 0;
}

.cart-widget-side .amount{
    font-family: var(--wd-widget-title-font);
}

.cart-widget-side .wd-action-btn.wd-style-text>a:before{
    font-size: 20px;
    margin-inline-end: 0.75em;
}

.cart-widget-side .wd-heading .wd-action-btn.wd-style-text>a{
    font-size: 0;
}

.cart-widget-side .wd-heading{
    padding: 25px 20px;
    border-bottom: 1px solid #f2f2f2;
}

.theme-woodmart .cart-widget-side .shopping-cart-widget-footer>*{
    padding-left: 20px;
    padding-right: 20px;
}

.theme-woodmart .cart-widget-side .shopping-cart-widget-footer{
    padding-bottom: 20px;
}

.cart-widget-side .wd-heading .title{
    position: relative;
}

.cart-widget-side .product_list_widget>li .wd-entities-title{
    max-width: 85%;
}

.cart-widget-side .woocommerce-mini-cart .remove:after{
    content: '\f1f8';
    font-family: 'Font Awesome 6 Pro';
    font-size: 16px;
    font-weight: 500;
    color: var(--wd-text-color);
}

.theme-woodmart .cart-widget-side .woocommerce-mini-cart .remove{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    box-shadow: none;
    border-radius: 0;
    inset-inline-end: 12px;
}

.theme-woodmart .cart-widget-side .wd-empty-mini-cart{
    margin: 0;
    padding: 0;
    height: calc(100% - 75px);
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-woodmart .wd-empty-mini-cart .btn{
    min-width: 200px;
    padding: 0 30px;
    min-height: 50px;
    margin: 0 auto;
}

.theme-woodmart .wd-empty-mini-cart:before{
    font-size: 100px;
}

.cart-widget-side div.quantity input[type="button"]:hover{
    background-color: #efefef;
    color: #333;
}

.cart-widget-side div.quantity :is(input[type="number"]){
    border-right: 1px solid #ebebeb;
    border-left: 1px solid #ebebeb;
}

.cart-widget-side .shopping-cart-widget-footer .woocommerce-mini-cart__total{
    display: none;
}

.woocommerce-mini-cart__discounts.total{
    display: flex;
    font-size: 125%;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f2f2f2;
    border-top: 1px solid #f2f2f2;
}

.subtotal-text{
    display: flex;
    align-items: center;
}

.cart-widget-side .subtotal-text .amount{
    color: #fff;
}

span.subtotal-text:before{
    content: '';
    height: 4px;
    width: 4px;
    border-radius: 4px;
    margin: 0 8px;
    display: block;
    background-color: #fff;
    position: relative;
}

a.button.checkout.wc-forward:before{
    content: '\f30d';
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    left: 20px;
}

.cart-widget-side .shopping-cart-widget-footer>*{
    margin-bottom: 20px;
}

.cart-widget-side .woocommerce-mini-cart__buttons .checkout{
    line-height: 1;
}

.cart-widget-side .cart-info span.quantity ins{
    margin-left: 5px;
}

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

    .theme-woodmart .cart-widget-side .woocommerce-mini-cart .remove{
        width: 30px;
        height: 30px;
    }
    
}