

.cart-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    column-gap: min(max(40px, 4.1667vw), 80px);
}

.cart_main_title_common {
    width: 100%;
    padding-top: 30px;
}

.cart_main_title_common .section__header .heading{
    font-family: var(--theme-font-lato);
    font-weight: 700;
    text-transform: capitalize;
    color: var( --theme-normal-black);
}

/* LEFT SIDE */
.cart-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cart-left .woocommerce-cart-form{
    margin-bottom: 0 !important;
    width: 100% !important;
    width: calc(100% - 0px) !important;
}

.cart-item {
    display: flex;
    padding: 12px;
    column-gap: min(max(20px, 1.5625vw), 30px);
    align-items: flex-start;
    border-radius: 20px;
    border: 1px dashed var(--theme-brown-light);
    background: var(--theme-white);
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.cart-item:last-child{
    margin-bottom: 0px;
}

.cart-item .item-img{
    width: min(max(150px, 9.375vw), 180px);
}

.cart-item .item-img img{
    width: 100%;
}

.item-img img {
    width: 150px;
    border-radius: 12px;
    object-fit: cover;
}

.item-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.item-details {
    max-width: 60%;
}

.item-details .fs-24 {
    font-family: var(--theme-font-lato);
    font-weight: 700;
    color: var(--theme-normal-black);
}

.item-details .fs-24 a{
     color: var(--theme-normal-black);
}

.author{
  color: var(--theme-brown-light);
  margin-top: 6px;
}

.author span {
    color: var(--theme-orange-red);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.item-details .meta {
    color: var(--theme-brown-light);
    margin: 10px 0;
}

.quantity-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.quantity-row label{
   color: var(--theme-brown-light);
}

.quantity-row .delete_btn_cart{
    color: var(--theme-orange-red);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.quantity-row .delete_btn_cart:hover{
    color: var(--theme-orange-red);
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--theme-orange-red);
    border-radius: 8px;
    overflow: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.qty-box button {
    background: none;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 16px;
}

.qty-box input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
}

.qty-box .quantity{
    width: 110px;
}

.qty-box .quantity .minus{
    height: 100%;
    color: var(--theme-black);
    font-size: 22px;
    font-weight: 700;
}

.qty-box .quantity .plus{
    height: 100%;
    color: var(--theme-black);
    font-size: 22px;
    font-weight: 700;
}

.qty-box .quantity .input-text.qty{
    padding: 0;
    height: 40px;
}



.delete {
    color: #c04712;
    font-size: 14px;
    text-decoration: none;
}

.item-price {
    text-align: right;
}

.old-price {
    text-decoration: line-through;
    color: var(--theme-brown-light);
    font-weight: 700;
    margin: 0;
}

.new-price {
    font-weight: 700;
    color: var(--theme-dark-brown-new);
}

.tax-text {
    color: var(--theme-black);
    font-style: italic;
}

/* RIGHT SIDE */
.cart-right {
    flex: 1;
}

.summary-box {
    background: var(--theme-white);
    padding: 25px 16px;
    border-radius: 20px;
    border: 1px dashed var(--theme-brown-light);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.summary-box .fs-28 {
    margin-top: 0;
    color: var(--theme-black);
    font-weight: 700;
    font-family: var(--theme-font-lato);
    margin-bottom: 20px;
}

.summary-box .summary-title {
    margin-top: 0;
    color: var(--theme-black);
    font-weight: 700;
    font-family: var(--theme-font-lato);
    margin-bottom: 20px;
}

.summary-box .custom-order-summary {
    max-width: 100%;
    background: none;
    padding: 0;
    border-radius: 0;
    width: 100%;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
}

.cart-right .grand-total{
    font-size: min(max(16px, 1.0417vw), 20px);
}

.cart-right .summary-row{
    font-size: min(max(16px, 0.9375vw), 18px);
}

.border_line_summary{
    background: rgba(0, 0, 0, 0.10);
    width: 100%;
}

.grand-total {
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    background:  var(--theme-orange-red);
    color: var(--theme-white);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
}

.checkout-btn {
    width: 100%;
    width: max-content;
    margin: 0 auto;
    margin-top: 25px;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(#c04712, #7a0000);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.checkout-btn a{
    background: none !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
}

.quantity-row label{
    padding: 0;
}

.cart-section{
    padding-top: 30px;
}

.cart-section + .craft_section.artworks_craft_section{
    background: none;
}

.cart-section + .craft_section.artworks_craft_section .section_overlay{
    display: none;
}

.cart-section + .craft_section.artworks_craft_section .section__header{
    text-align: center !important;
}

.cart-section .woocommerce-message{
    display: none !important;
}

.summary-box .summary-title{
    font-size: 1.4583vw;
}

.cart-right .grand-total{
   background: var(--theme-orange-red);
}



@media only screen and (max-width: 1199px) {

    .summary-box .summary-title {
        font-size: 1.25rem;
    }

}


/* start media */

@media only screen and (max-width: 1199px) {


}

@media only screen and (max-width: 991px) {

.cart-wrapper {
    flex-direction: column;
    row-gap: 20px;
}

.cart-left {
    width: 100%;
}

.cart-right {
    width: 100%;
}



}


@media only screen and (max-width: 767px) {

.item-content {
    flex-direction: column;
}

.item-details {
    max-width: 100%;
}

.cart-item .item-img {
    width: 50px;
}

.cart-item {
    column-gap: 16px;
    align-items: flex-start;
}

.item-img img {
    border-radius: 3px;
}

.quantity-row {
    margin-top: 5px;
}

.item-details .fs-24 {
    line-height: 1.4;
    font-size: 20px;
}

    .item-price {
        width: 100%;
        margin-top: 10px;
        display: flex;
        column-gap: 10px;
        row-gap: 2px;
        flex-wrap: wrap;
    }

.cart-item {
    margin-bottom: 10px;
}

    .item-price {
        margin-top: 10px;
    }

}
