body {

    font-family: Arial, sans-serif;

    background-color: #fff;

}

/* for mobile screen to see checkout*/

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

    html, body{padding-bottom: 60px;}

}

.cart-container {

    margin: 50px auto;

    max-width: 800px;

}

.product-img {

    width: 100px;

    height: auto;

}

.quantity-section {

    display: flex;

    align-items: center;

    margin-top: 10px;

    gap: 5px;

}



.quantity-button {

    width: 30px;

    height: 30px;

    background: #f0f0f0;

    border: 1px solid #ccc;

    cursor: pointer;

    font-size: 18px;

    color: #333;

}



.quantity-input {

    width: 40px;

    text-align: center;

    border: 1px solid #ccc;

    font-size: 16px;

}

.summary {

    border-top: 1px solid #dee2e6;

    padding-top: 15px;

    font-weight: bold;

}

.coupon {

    margin-top: 15px;

}



.back {

    align-items: center;

    max-width: 1200px;

    display: flex;

    width: 100%; /* Make sure it spans the full width */

    margin: 0 auto; /* Center the container horizontally */

    padding: 15px 15px; /* Padding for better spacing */



    justify-content: space-between;

}



.back-btn {

    background-color: #6c757d; 

    color: white;

    padding: 8px 16px;

    border: none;

    border-radius: 5px;

    cursor: pointer;

    font-size: 14px;

    text-decoration: none;

    transition: background-color 0.3s;

}



.back-btn:hover {

    background-color: #5a6268; 

}



.remove-item-btn {

    border: none;            /* Remove border */

    background: transparent; /* Make the button background transparent */

    cursor: pointer;        /* Change the cursor to pointer */

}



.remove-item-btn i {

    color: red;             /* Change the icon color to red */

    font-size: 18px;        /* Adjust the icon size if needed */

}





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

    /* Additional tweaks for very small screens (phones in portrait) */

    .table thead {

        display: none;

    }

    .cart-item {

        display: flex;

        flex-direction: column; /* Stack items vertically */

        align-items: flex-start;

        padding: 10px;

        border-bottom: 1px solid #ddd;

    }

    .cart-container {

        margin: 20px;

    }

    

    .back-btn {

        font-size: 10px; /* Smaller button font */

    }

    



   

    



    table td {

        font-size: 10px; /* Adjust table font size */

    }



    .product-img {

        width: 50px; /* Further reduce image size */

    }

    

}
.cart-product a{
    text-decoration: none;
    color:#000;
}
.cart-product a:hover{
    color:#000;

}
.back-btn {
    background-color: #014222;}

.back-btn:hover {
    background-color: #014222;}
.checkout{
    background-color: #014222;
    color: #fff;
}
.checkout:hover{
    background-color: #014222;
    color: #fff;
}

.cart-message {
    
    color: #ff4d00;
    
}


.toast {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
  }



