/*
 Theme Name:     Hoka Child
 Theme URI:      http://example.com/hoka-child
 Description:    A child theme for the Hoka theme
 Author:         Jamshaid
 Author URI:     http://example.com
 Template:       hoka
 Version:        1.0
 Text Domain:    hoka-child
*/

/* Add your custom styles below */
h1.header-title{
	color:#FFF;
}
.breadcrumbs{
	color:#FFF;
}
.order-item-detail-wrapper{
    display: flex;
    justify-content: space-between;
}
.order-item-detail-wrapper img{
    width:62px;
}
.order-item-detail-wrapper h6{
    padding:0;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}
.order-item-detail-wrapper dl{
    margin-top:10px;
}
.order-item-detail-wrapper .product-option *{
    font-weight:normal;
}
.woocommerce-cart .product-name a {
    font-weight: bold; /* Make the product name bold */
}
.product-name-wrap a{font-weight:bold; font-size:1.2rem;}
.woocommerce-cart .product-option, .woocommerce-checkout .product-option{
    font-size:0.9rem;
}
.woocommerce-cart dl.variation dt{
    font-weight:normal;
}
.cart-item__price-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.woocommerce-cart .product-name-wrap{
    clear:both;
    text-align:left;
    
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
    float:none;
    width:100%;
}
.woocommerce-cart .cart-item{
    /*border: 2px solid #000000;*/
    border-radius: 32px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(9, 31, 67, 0.05);
}
.cart-item-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 0 0;
   /* border-bottom: 2px solid #000; */
}
.cart-item-total {
    padding: 30px;
    display: flex;
    justify-content: flex-end;
    
}
.cart-item_media {
        width: 6rem;
}
.woocommerce-cart-wrapper .product-option * {
    display: inline;
    margin: 0;
}
.cart-item_quantity{
    padding-left:6rem;
}
.cart-item-total span{
    font-weight:bold;
}
.cart-item-total span.woocommerce-Price-amount{
    margin-left:20px;
}
.woocommerce-cart-wrapper {
    display: flex;
    justify-content: space-between;
}

.woocommerce-cart-left {
    width: 60%; /* Adjust as needed */
    margin-right: 20px;
}

.woocommerce-cart-right {
    width: 35%; /* Adjust as needed */
}
.order-summary{
    box-shadow: 0 20px 40px rgba(9, 31, 67, 0.05);
    border-radius: 32px;
    padding-bottom:20px;
}
.order-summary h4{
    font-size: 28px;
}
.order-summary h4.widget-title:before{
    font-size: 24px;
    width: 20px;
    margin-right: 5px;
}
.order-summary-wrapper{
    padding:0px 1rem;
}

.order-summary-wrapper .item-detail{
        font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}
.order-summary-wrapper .item-detail .amount{
        font-weight: 600;
    width: 90px;
    text-align: center;
    background: #f3f0f0;
    border-radius: 7px;
    line-height: 30px;
}
.order-item-detail__media .product-thumbnail{
    position:relative;
}
.order-item-detail__media .product-thumbnail span.chck-cart-item-qty{
    padding: 2px 8px;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff8f8;
    border-radius: 50%;
    /* width: 20px; */
    /* height: 20px; */
    background-color: #686a69;
    font-size: 12px;
    text-align: center;
    display: block;
}
.order-item-detail-wrapper .order-item-detail__price .amount{
       font-weight: 600;
    text-align: center;
    background: #f3f0f0;
    border-radius: 7px;
    line-height: 30px;
    color:#000; 
    padding:5px;
    font-size:12px;
}
.woocommerce form.checkout{
padding:0;
box-shadow:none;
}
.woocommerce form.checkout .box-content-item{
    box-shadow: 0 20px 40px rgba(9, 31, 67, 0.05);
    border-radius: 32px;
    padding:20px;
}

/* Ensure the table is responsive on smaller screens */
@media screen and (max-width: 768px) {
    .cart-item-wrapper {
        display: grid;
        grid-template: repeat(1, auto) / repeat(3, 1fr);
    }
    .cart-item-wrapper .cart-item_media {
        grid-row: 1 / 3;
    }
    .cart-item-wrapper .cart-item_details {
        grid-column: 2 / 4;
        text-align:left;
    }
    .cart-item-wrapper .cart-item_quantity {
        grid-column: 2 / 5;
        padding:0;
    }
    .woocommerce table.shop_table{
        padding:0;
        width:100%;
    }
    .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before{
        content:"";
    }
    .woocommerce-cart-wrapper {
        flex-direction: column;
    }

    .woocommerce-cart-left,
    .woocommerce-cart-right {
        width: 100%;
    }

    .woocommerce-cart-right {
        margin-top: 20px;
    }
}

