.cart-text {
    margin-top: 8rem;
    margin-bottom: 5rem;
}

.cart-text h1 {
    font-size: 3rem;
    font-weight: 500;
}

.btn.glow-on-hover {
    border: 1px solid #a22c29;
    background-color: transparent;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    color: black;
    width: 16rem;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.btn.glow-on-hover:hover {
    background-color: #a22c29;
    color: white;
}

.shop-table {
    width: 100%;
    background-color: white;
    min-width: 70rem;
    border-collapse: collapse;
    margin-bottom: 6rem;
    border: 1.3px solid #ccc;
}

.shop-table td,
.shop-table th {
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
    border: 1.3px solid #ccc;
}

.shop-table th {
    background-color: #f1f1f1;
    font-weight: bold;
}

.product-thumbnail img {
    max-width: 80px;
    height: auto;
}

/* .product-remove .remove {
    color: red;
    font-size: 2rem;
    text-decoration: none;
    cursor: pointer;
}

.product-remove .remove:hover {
    color: darkred;
} */

.product-remove .remove {
    background-color: transparent;
    border: 0.5px solid transparent;
    /* border: 2px solid red; */
    color: black;
    font-size: 1.2rem;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.product-remove .remove:hover {
    /* background-color: red; */
    /* color: white; */
    border-color: black;
}


input[type="text"] {
    width: 100%;
    padding: 6px 10px;
    /* border: 1px solid #ccc; */
    border: none;
    border-radius: 5px;
    text-align: center;
}

.no-item label{
    display: block;
    margin: 20px 0;
    text-align: center;
    font-size: 18px;
    color: #888;
}


.cart-total {
    width: 100%;
    max-width: 400px;
    background-color: white;
    border: 1px solid #e1e1e1;
    padding: 20px;
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.cart-total th,
.cart-total td {
    padding: 10px;
    text-align: left;
}

.cart-total th {
    font-weight: 600;
}

.btn-blue {
    background-color: #a22c29;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 20px;
    width: 100%;
    font-weight: bold;
}

.btn-blue:hover {
    /* background: linear-gradient(45deg, #a22c29, #ff6f61);; */
    background-color: #800000;
    color: white;
}
/* .btn-blue {
    color: white;
} */

/* .quantity {
    display: flex;
    flex-direction: row;
} */

#no-item {
    /* display: none; */
}
/* #no-item {
    width: 100% !important;
    display: table-row !important;
}

#no-item td {
    text-align: center;
    width: 100% !important;
} */


.quantity-container {
  display: inline-block;
  /* border: 1px solid #ddd; */
  border: none;
  border-radius: 6px;
  padding: 1rem 1.2rem;
  min-width: 100px;
  text-align: center;
  width: 14rem;
}

.quantity-container input {
  width: 30px;
  text-align: center;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
}

.btn-qty {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 0 10px;
  color: #333;
}

.quantity-container input.quantity-input {
  width: 40px;
  padding: 0 5px;
  text-align: center;
  border: none;
  background: transparent;
}


    @media (max-width: 1024px) {
        .cart-text {
            margin-top: 10rem;
        }
    }


    @media (max-width: 769px) {
        .cart-text {
            margin-top: 12rem;
        }
        .cart-text h1 {
            text-align: center;
        }

        .text-right {
            text-align: center !important;
            margin-top: 10px;
        }

        .btn.glow-on-hover {
            display: block;
            width: 100%;
            margin-top: 10px;
        }

        .table-responsive {
            overflow-x: auto;
            border: none;
        }
    }