.cart {
    display: flex;
    gap: 20px;
    margin: 20px;
}
.cart-left {
    background: white;
    padding: 20px;
}
.cart-left h1 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}
.cart-left hr {
    border: none;
    height: 1px;
    background: #dadada;
}

.product-cart-list {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 24px 0 12px 12px;
}

.product-cart-titleprice {
    font-size: 18px;
    display: flex;
    gap: 20px;
}
.product-cart-bestseller {
    font-size: 12px;
    margin-top: 10px;
}
.product-cart-bestseller span {
    font-size: 13px;
    background: #c45500;
    color: #fff;
    padding: 3px 8px;
}

.product-cart-stock {
    font-size: 13px;
    color: #007600;
    margin: 4px 0;
}

.product-cart-delivery {
    font-size: 15px;
}

.product-cart-returns {
    font-size: 15px;
    color: #007185;
    font-weight: 400;
}

.product-cart-giftoption {
    color: #494949;
    font-size: 13px;
    margin: 3px 0;
}
.product-cart-giftoption span {
    color: #007185;
}

.product-cart-specs {
    max-width: 150px;
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 3px;
    font-size: 13px;
    margin: 7px 0;
}

.cart-list-action {
    display: flex;
    font-size: 14px;
    gap: 12px;
    margin-left: auto;
    color: #007185;
}
.cart-list-action  hr {
    height: 20px;
    width: 1px;
    background: #cfcfcf;
}

.cart-list-action select {
    padding: 5px;
    border-radius: 6px;
    background: #f3f3f3;
}

.cart-list-subtotal {
    font-size: 18px;
    text-align: right;
    font-weight: 400;
    margin-top: 10px;
}
.cart-list-subtotal span {
    color: #b12704;
}
.cart-right {
    background: white;
    padding: 20px;
    height: fit-content;
    min-width: 300px;
}

.cart-free-delivery {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #007185;
    font-size: 14px;
}

.cart-free-delivery span {
    font-size: 12px;
    background: #c45500;
    color: #fff;
    padding: 3px 8px;
}
.cart-subtotal {
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0;
}

.cart-right-gift {
    margin: 7px;
    font-size: 14px;
}

.cart-right-gift span {
    color: #007185;
    font-size: 13px;
}
.cart-right button {
    width: 100%;
    height: 32px;
    margin: 15px 0;
    background: #ffd814;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.cart-right button:hover {
    background: #ebc712;

}

/* media query */
@media only screen and (max-width: 768px) {
    .cart {
        flex-wrap: wrap;
    }
    
}

@media only screen and (max-width: 600px) {
    .cart-left {
        width: 100%;
    }
    .cart-right {
        width: 100%;
        min-width: 100%;
    }
    .product-cart-list {
        padding: 24px 0;
    }
    .product-cart-list img {
        width: 80px;
    }

    .product-cart-titleprice {
        flex-wrap: wrap;
        font-size: 14px;
    }
    .product-cart-delivery {
        font-size: 13px;
    }
    .cart-list-action .action-btn:nth-last-child(1) {
        display: none;

    }
    .cart-list-action hr:nth-last-child(2) {
        display: none;

    }
    .cart-list-action .action-btn:nth-last-child(3) {
        display: none;

    }
    .cart-list-action hr:nth-last-child(4) {
        display: none;

    }
        
}
    