
.product-image {
    float: left;
    width: 18%;
  
}

.product-details {
    float: left;
    width: 30%;
}

.product-price {
    float: left;
    width: 12%;
}
.product-price1 {
    float: left;
    width: 12%;
}

.product-quantity {
    float: left;
    width: 10%;
}

.product-removal {
    float: left;
    width: 6%;
}

.product-line-price {
    float: left;
    width: 12%;
    text-align: right;
}

.product .product-price:before,
.product .product-line-price:before,
.totals-value:before {
content: '₹'; /* Use the rupee symbol */
}

/* This is used as the traditional .clearfix class */
.group:before,
.shopping-cart:before,
.column-labels:before,
.product:before,
.totals-item:before,
.group:after,
.shopping-cart:after,
.column-labels:after,
.product:after,
.totals-item:after {
    content: '';
    display: table;
}

.group:after,
.shopping-cart:after,
.column-labels:after,
.product:after,
.totals-item:after {
    clear: both;
}

.group,
.shopping-cart,
.column-labels,
.product,
.totals-item {
    zoom: 1;
}

h1 {
    font-weight: 100;
}

label {
    /* color: #272727; */
}

.shopping-cart {
    margin-top: 0px;
}

/* Column headers */
.column-labels label {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #838383;
}


/* Product entries */
.product {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #838383;
}

.product .product-image {
    text-align: center;
}

.product .product-image img {
    /* width: 100px; */
    height: 10rem;
}

.product .product-details .product-title {
    margin-right: 20px;
    color: var(--primary);
    
}

.product .product-details .product-description {
    margin: 5px 45px 5px 0;
    line-height: 1.4em;
}

.product .product-quantity input {
    width: 40px;
}

.product .remove-product {
    border: 0;
    padding: 7px 10px;
    background-color: #dc3545;
    color: #fff;
    font-size: 15px;
    border-radius: 3px;
}

.product .remove-product:hover {
    background-color: #b10818;
}

/* Totals section */
.totals .totals-item {
    float: right;
    clear: both;
    width: 100%;
    margin-bottom: 10px;
}

.totals .totals-item label {
    float: left;
    clear: both;
    width: 69%;
    text-align: right;
}

.totals .totals-item .totals-value {
    float: right;
    width: 21%;
    text-align: right;
}

.totals .totals-item-total {
    font-family: 'HelveticaNeue-Medium', 'Helvetica Neue Medium';
}

.checkout {
    float: right;
    border: 0;
    margin-top: 20px;
    padding: 6px 25px;
    background-color: var(--color-primary);
    color: #000;
    font-size: 25px;
    border-radius: 3px;
}

.checkout:hover {
    background-color: var(--color-hover);
}

/* Make adjustments for tablet */
@media screen and (max-width: 992px) {
    .shopping-cart {
        margin: 0;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .column-labels {
        display: none;
    }

    .product-image {
        float: right;
        width: auto;
    }

    .product-image img {
        margin: 0 0 10px 10px;
    }

    .product-details {
        float: none;
        margin-bottom: 10px;
        width: auto;
    }

    .product-price {
        clear: both;
        width: 70px;
    }
    .product-price1 {
        clear: both;
        width: 70px;
    }

    .product-quantity {
        width: 100px;
    }

    .product-quantity input {
        margin-left: 20px;
    }

    .product-quantity:before {
        content: 'x';
    }

    .product-removal {
        width: auto;
    }

    .product-line-price {
        float: right;
        width: 70px;
    }
}

/* Make more adjustments for phone */
@media screen and (max-width: 350px) {
    .product-removal {
        float: right;
    }

    .product-line-price {
        float: right;
        clear: left;
        width: auto;
        margin-top: 10px;
    }

    .product .product-line-price:before {
        content: 'Item Total: $';
    }

    .totals .totals-item label {
        width: 60%;
    }

    .totals .totals-item .totals-value {
        width: 40%;
    }
}