.cart-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    color: rgb(107, 106, 106);
    margin-top: 5%;
  }
  h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  .cart-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
  }
  .item-details {
    flex: 2;
    display: flex;
    align-items: center;
  }
  .item-details img {
    width: 80px;
    margin-right: 15px;
    border-radius: 8px;
  }
  .item-quantity {
    flex: 1;
    text-align: center;
  }
  .item-quantity input {
    width: 40px;
    text-align: center;
  }
  .item-price,
  .item-total {
    flex: 1;
    text-align: center;
  }
  .remove-btn {
    color: red;
    border: none;
    background: none;
    cursor: pointer;
  }
  .summary {
    margin-top: 20px;
    text-align: right;
  }
  .summary div {
    margin: 5px 0;
  }
  .checkout-btn {
    background-color: #c52424;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
  }