/* =========================================
   TbT Cart - Base
   ========================================= */

.woocommerce-cart {
    background: #f5f5f5;
}


/* =========================================
   Remove coupon section
   ========================================= */

.woocommerce-cart .coupon {
    display: none !important;
}


/* =========================================
   Hide Cart Totals + Update Cart
   ========================================= */

.woocommerce-cart .cart_totals,
.woocommerce-cart .wc-proceed-to-checkout {
    display: none !important;
}

/* Hide Update Cart button */
.woocommerce-cart button[name="update_cart"] {
    display: none !important;
}


/* =========================================
   TbT Cart - Back to Shop
   ========================================= */

.tbt-back-to-shop {
    display: inline-flex;
    align-items: center;

    margin: 0 0 14px 0;
    padding: 9px 14px;

    background: #ffffff;
    color: #333333 !important;

    border: 1px solid #dddddd;
    border-radius: 7px;

    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;

    text-decoration: none !important;

    box-sizing: border-box;
}

.tbt-back-to-shop:hover {
    background: #f8f8f8;
    color: #111111 !important;
}


/* =========================================
   Tighten cart spacing
   ========================================= */

@media (max-width: 767px) {

    .woocommerce-cart .hero-section {
        margin-bottom: 12px !important;
    }

    .woocommerce-cart .woocommerce-cart-form {
        margin-bottom: 0 !important;
    }

    .woocommerce-cart table.shop_table {
        margin-bottom: 0 !important;
    }

    .tbt-back-to-shop {
        margin-bottom: 12px;
        padding: 8px 12px;

        font-size: 13px;
    }

}


/* =========================================
   TbT Cart - Sticky Checkout Bar
   ========================================= */

.tbt-cart-sticky {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 99990;

    display: flex;
    align-items: stretch;

    width: 100%;
    min-height: 72px;

    background: #ffffff;

    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.07);

    box-sizing: border-box;
}


/* Total */

.tbt-cart-sticky-total {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;

    padding: 10px 16px;

    min-width: 0;

    gap: 3px;
}

.tbt-cart-sticky-label {
    margin: 0;

    color: #666666;

    font-size: 12px;
    line-height: 1.2;
}

.tbt-cart-sticky-amount {
    color: #e3262e;

    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;

    white-space: nowrap;
}


/* =========================================
   Shipping + Total
   ========================================= */

.tbt-cart-sticky-shipping,
.tbt-cart-total-row {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tbt-cart-sticky-shipping {
    font-size: 10px;
    line-height: 1.2;
    color: #777777;
}

.tbt-cart-shipping-amount {
    margin-left: 6px;
    text-align: right;
}

.tbt-cart-total-row {
    margin-top: 2px;
}


/* =========================================
   Checkout Button
   ========================================= */

.tbt-cart-sticky-button {
    flex: 0 0 52%;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 165px;

    padding: 0 18px;

    background: #ee4d2d;
    color: #ffffff !important;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none !important;

    box-sizing: border-box;
}


/* =========================================
   Desktop
   ========================================= */

@media (min-width: 768px) {

    .tbt-cart-sticky {
        display: none !important;
    }

}