/**
 * Custom WooCommerce Cart
 */


/* =========================================
   MAIN CART
========================================= */

.custom-woo-cart-area {

    width: 100%;

    background: #0d4058;

    color: #ffffff;

    border-radius: 17px;

    overflow: hidden;

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}


/*
 * Empty cart
 */
.custom-woo-cart-area:empty {

    display: none;

}


/* =========================================
   CART ITEM
========================================= */

.custom-woo-cart-item {

    width: 100%;

    min-height: 145px;

    padding: 20px 40px 20px 22px;

    display: flex;

    align-items: center;

    gap: 22px;

    box-sizing: border-box;

}


/*
 * Divider between products
 */
.custom-woo-cart-item + .custom-woo-cart-item {

    border-top: 1px solid rgba(255, 255, 255, 0.10);

}


/* =========================================
   PRODUCT IMAGE
========================================= */

.custom-woo-cart-image {

    width: 102px;

    height: 102px;

    min-width: 102px;

    flex: 0 0 102px;

    background: #eeeeee;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    box-sizing: border-box;

}


.custom-woo-cart-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    margin: 0;

    padding: 0;

}


/* =========================================
   INFORMATION
========================================= */

.custom-woo-cart-info {

    flex: 1 1 auto;

    min-width: 0;

}


/* =========================================
   ADDED TO CART
========================================= */

.custom-woo-cart-added {

    color: #16e84c;

    font-size: 11px;

    line-height: 1.2;

    font-weight: 600;

    margin: 0 0 12px 0;

}


.custom-woo-cart-check {

    color: #16e84c;

    font-size: 15px;

    font-weight: 700;

    margin-right: 4px;

}


/* =========================================
   PRODUCT NAME
========================================= */

.custom-woo-cart-product-name {

    color: #ffffff;

    font-size: 13px;

    line-height: 1.3;

    font-weight: 700;

    margin: 0 0 8px 0;

}


/* =========================================
   QUANTITY
========================================= */

.custom-woo-cart-quantity {

    color: #ffffff;

    font-size: 11px;

    line-height: 1.5;

    font-weight: 400;

    margin: 0 0 1px 0;

}


/* =========================================
   STATUS
========================================= */

.custom-woo-cart-status {

    color: #ffffff;

    font-size: 11px;

    line-height: 1.5;

    font-weight: 400;

}


/* =========================================
   RIGHT SIDE
========================================= */

.custom-woo-cart-right {

    min-width: 135px;

    flex: 0 0 135px;

    align-self: flex-start;

    padding-top: 30px;

    text-align: right;

}


/* =========================================
   SUBTOTAL
========================================= */

.custom-woo-cart-subtotal {

    color: #ffffff;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 700;

    white-space: nowrap;

}


/* =========================================
   VIEW CART
========================================= */

.custom-woo-cart-view {

    display: inline-flex;

    align-items: center;

    margin-top: 19px;

    color: #ffffff !important;

    font-size: 10px;

    line-height: 1;

    font-weight: 500;

    text-decoration: underline !important;

    text-decoration-thickness: 1px;

    text-underline-offset: 2px;

}


.custom-woo-cart-view:hover {

    color: #ffffff !important;

}


.custom-woo-cart-arrow {

    display: inline-block;

    margin-left: 8px;

    text-decoration: none !important;

    font-size: 14px;

    line-height: 1;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .custom-woo-cart-item {

        min-height: auto;

        padding: 16px;

        gap: 14px;

        align-items: flex-start;

    }


    .custom-woo-cart-image {

        width: 78px;

        height: 78px;

        min-width: 78px;

        flex-basis: 78px;

    }


    .custom-woo-cart-added {

        margin-bottom: 8px;

        font-size: 10px;

    }


    .custom-woo-cart-check {

        font-size: 13px;

    }


    .custom-woo-cart-product-name {

        font-size: 12px;

        margin-bottom: 6px;

    }


    .custom-woo-cart-quantity,

    .custom-woo-cart-status {

        font-size: 10px;

    }


    .custom-woo-cart-right {

        min-width: auto;

        flex: 0 0 auto;

        padding-top: 2px;

    }


    .custom-woo-cart-subtotal {

        font-size: 10px;

    }


    .custom-woo-cart-view {

        margin-top: 13px;

        font-size: 9px;

    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .custom-woo-cart-item {

        padding: 14px;

        gap: 11px;

    }


    .custom-woo-cart-image {

        width: 65px;

        height: 65px;

        min-width: 65px;

        flex-basis: 65px;

    }


    .custom-woo-cart-product-name {

        font-size: 11px;

    }


    .custom-woo-cart-right {

        min-width: 75px;

    }


    .custom-woo-cart-subtotal {

        white-space: normal;

    }

}
