/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


/* =========================
   CUSTOM CHECKOUT
========================= */

.custom-checkout-wrapper{
    display:flex;
    min-height:100vh;
    background:#f5f5f5;
}

.checkout-left{
    width:50%;
    background:#f3f3f3;
    padding:40px 60px;
}

.checkout-right{
    width:50%;
    background:#fff;
    padding:40px 60px;
}

.checkout-logo img{
    max-width:80px;
}

.checkout-trust{
    margin:20px 0 40px;
}

.checkout-trust img{
    height:40px;
}

.checkout-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:40px;
}

.checkout-product .list-products{
    display:flex;
    gap:20px;
    margin-bottom:15px;
}

.product-image img{
    width:120px;
    border-radius:10px;
}

.product-info h3{
    font-size:28px;
    line-height:1.3;
    margin-bottom:15px;
}

.product-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.product-price{
    display:flex;
    align-items:center;
    gap:15px;
}

.product-price del{
    opacity:.5;
}

.product-price ins{
    text-decoration:none;
    font-size:30px;
    font-weight:700;
}

.checkout-totals{
    border-top:1px solid #ddd;
    padding-top:25px;
}

.checkout-totals .line{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
    font-size:22px;
}

.checkout-totals .total{
    font-size:34px;
    font-weight:700;
}

.limited-stock-box{
    display:flex;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:12px;
    margin-top:40px;
}

.stock-icon{
    font-size:40px;
}

.stock-content h4{
    margin-bottom:10px;
    font-size:28px;
}

.stock-content strong{
    color:#ff4b36;
}

.express-title{
    text-align:center;
    margin-bottom:20px;
    font-size:20px;
}

.express-buttons{
    border:1px solid #ddd;
    padding:25px;
    border-radius:10px;
    margin-bottom:40px;
}

.security-icons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:40px;
    font-weight:700;
}

.hidden-checkout-fields{
    display:none;
}

#payment{
    background:transparent !important;
    border:none !important;
}

#place_order{
    width:100%;
    height:60px;
    border-radius:10px;
    font-size:20px;
    font-weight:700;
    background:#111 !important;
}


.checkout-product .product-image{
    width:120px;
    flex:0 0 120px;
}

.checkout-product .product-image img{
    width:100% !important;
    height:auto !important;
    display:block !important;
    object-fit:cover;
}
.shop_table.woocommerce-checkout-review-order-table {
	display: none !important
}

@media(max-width:991px){

    .custom-checkout-wrapper{
        flex-direction:column;
    }

    .checkout-left,
    .checkout-right{
        width:100%;
        padding:25px;
    }

    .checkout-title{
        font-size:28px;
    }

    .product-info h3{
        font-size:20px;
    }

}