.marginTop {
    margin-top: 150px;
}

.check_btn{
    display: none;
}

.cart_section{
      padding-inline: 2%;
    padding-bottom: 2%;
    /* height: 100%; */
    justify-content: center;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 20px;
    justify-self: anchor-center;
    margin-top: 13px;
    flex-wrap: wrap;
    width: 100%;
}
.return-to-shop{
    margin-top: 8px;
}

.image_section img:hover{
    cursor: pointer;
}
.wc-backward{
    background-color: #000;
    padding: 11px;
    color: #fff;
    border-radius: 23px;
    margin-top: 15px;
}

.cart_product_title{
        display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
        width: 100%;
}

.cart-input{
    width: 31px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart_product_title h4{
     width: 90%;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    font-family: var(--font-fm2);
    color: rgba(0, 0, 0, 1);
    /* height: 41px; */
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 2px;
}
.image_section{
    /* border: 1px solid ; */
    padding: 1.5px;
        /* height: 93px; */
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.cart-input button {
    background-color: #f1f1f1;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-top: 0px;
    outline: none;
    border: none;
}

.cart-input  {
    /* position: absolute; */
    top: 0;
    height: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: calc(100% / 3); */
}

.quantity-input{
       width: 100%;
    height: 100%;
    border: none;
    outline: none;
    text-align: center;
    /* background: red; */
    /* display: flex; */
    color: black;
    /* padding-inline: calc(100% / 3); */
    padding-left: 9px;
    
}

.cart-quantity-input-box button.decrease {
    left: 0;
}

.cart-quantity-input-box button.increase {
    right: 0;
}

.image_section p{
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-fm2);
}
.p_img_color{
    border: 2px solid rgba(200, 200, 200, 1);
    padding: 2px;
    border-radius: 5px;
    height: 84px;
}
.image_section img{
height: 60px;
width: 60px;
object-fit: cover;
object-position: top;
border-radius: 5px;
position: relative;
z-index: 3;
}

.cart_product_info{
    width: 100%;
}


.cart_product_info h4{
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    font-family: var(--font-fm2);
}
.color-box{
    height: 21px;
    width: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transform: translateY(-8px);
}
.size_discount{
       display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 60px;
}

.size_discount p{
    font-size: 10px;
    color: rgba(39, 39, 39, 1);
    font-weight: 500;
}

.size_discount h3{
    font-size: 20px;
    font-weight: 600;
    color: rgba(39, 39, 39, 1);
    font-family: var(--font-fm2);
    padding-block: 2%;
        display: flex;
    align-items: center;
    gap: 5px;
}

.cart-container {
    width: 100%;
    max-width: 600px;
    /*margin: 5px auto;*/
    padding: 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #111;

    display: flex;
        gap: 11px;
    flex-direction: column;
    border-radius: 15px;
    align-items: flex-start;
    flex-wrap: wrap;
    border: 1px solid rgb(0 0 0 / 7%);
   box-shadow: 0px 4px 3px 0px rgb(0 0 0 / 12%);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead {
    border-bottom: 1px solid #ddd;
}

.cart-table th {
    text-align: left;
    padding: 12px 10px;
    font-weight: 600;
    color: #444;
    font-size: 15px;
}

.cart-row td {
    padding: 20px 10px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.product-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-image img {
    width: 80px;
    height: auto;
    border-radius: 6px;
}

.product-meta {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 5px;
}

.remove-item {
    font-size: 14px;
    color: #d00;
    text-decoration: none;
    margin-top: 4px;
}

.remove-item:hover {
    text-decoration: underline;
}

.product-price,
.product-subtotal {
    font-weight: 500;
    font-size: 16px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    max-width: 110px;
}

.qty-btn {
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 34px;
    font-size: 18px;
    cursor: pointer;
}

.qty-input {
    width: 40px;
    height: 34px;
    text-align: center;
    border: none;
    font-size: 15px;
    outline: none;
}

.cart-content-box {
    display: flex
;
    gap: 10px;
    background: #8a13441a;
    border: 1px solid #00000030;
    padding: 6px 1%;
    border-radius: 10px;
    width: 50%;
}

.view-cart-countdown-message {
    width: 100%;
    margin-inline: auto;
    padding-inline: 2%;
    text-align: center;
}

.view-cart-countdown-message h3 {
    font-size: 22px;
    font-weight: 400;
}

.view-cart-countdown-message h3 span {
    color: var(--timer-txt-color);
    font-weight: 500;
}

.text h2{
    font-size: 15px;
    font-weight: 500;
    color: gray;
}

.text h3{
    font-size: 14px;
    font-weight: 800;
    font-family: var(--font-fm2);
}

.text{
    width: 100%;
}

.checkout{
    position: relative;
    width: 100%;
    padding: 15px 2%;
    border: none;
    /* bottom: 9%; */
    outline: none;
    width: 100%;
    margin: 30px auto;
}


.checkout button{
           background: var(--btn-bg-color);
        border: none;
        padding: 18px;
        width: -webkit-fill-available;
        font-weight: var(--normal-font-weight);
        border-radius: 5px;
        color: var(--btn-txt-color);
}

.cart-item-info
 {
    display: flex
;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

#cart-title{
    text-align: center;
    font-family: var(--font-fm2);
    margin-top: 12px;
}

@media (max-width: 500px) {

    .cart-table thead {
        display: none;
        /* Hide table headers on mobile */
    }
.marginTop {
        margin-top: 80px;
    }
    .cart-row {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #eee;
        padding: 15px;
        margin-bottom: 10px;
        background: #fff;
    }

    .product-info {
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }

    .product-image img {
        width: 70px;
        height: auto;
        object-fit: cover;
        border-radius: 5px;
    }

    .product-meta {
        flex: 1;
    }

    .cart_section{
    padding-inline: 2%;
    padding-bottom: 20%;
    /* height: 100%; */
    /* justify-content: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 13px; */
    margin-top: 43px;
}

    .product-name {
        font-size: 15px;
        margin: 0 0 5px;
        font-weight: 600;
    }

    .con{
        display: none;
    }

    .place_order {
    display: flex;
    align-items: self-end;
    justify-content: space-between !important;
    height: 100%;
    background: white;
    padding: 0px 3%;
    flex-direction: row !important;
    width: 100%;
}

    .remove-item {
        font-size: 13px;
        color: #c00;
        text-decoration: underline;
        display: inline-block;
        margin-bottom: 10px;
    }

    .product-quantity {
        margin: 10px 0;
    }

    .quantity-control {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .qty-btn {
        width: 30px;
        height: 30px;
        border: 1px solid #ccc;
        background: #f5f5f5;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        cursor: pointer;
    }

    .qty-input {
        width: 40px;
        text-align: center;
        font-size: 14px;
        padding: 4px;
    }

    .product-subtotal {
        font-size: 16px;
        font-weight: 600;
    }

    .product-subtotal::before {
        content: 'Subtotal : ';
        font-weight: normal;
        color: #666;
    }


    .checkout{
    position: fixed;
        background: white;
        width: 100%;
        padding: 10px 2%;
        border-top: 0.5px solid #68646461;
        bottom: 5%;
        outline: none;
}


.cart-content-box {
    display: flex
;
    gap: 10px;
    background: #8a13441a;
    border: 1px solid #00000030;
    padding: 6px 1%;
    border-radius: 10px;
    width: -webkit-fill-available;
}


.checkout button{
        background: var(--btn-bg-color);
    border: none;
    padding: 18px;
    width: -webkit-fill-available;
    font-size: 15px;
    border-radius: 5px;
}
}
