.cart-container {
    width: 60%;
    margin: 50px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
  }
  .cart-header {
    background-color: #f04d3e;
    color: white;
    display: flex;
    padding: 15px;
    font-weight: bold;
  }
  .cart-header div {
    flex: 1;
    text-align: center;
  }
  .cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
  }
  .cart-item img {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    margin-right: 15px;
  }
  .cart-item div {
    flex: 1;
  }
  .cart-item input {
    width: 40px;
    padding: 5px;
    text-align: center;
  }
  .cart-item .remove {
    color: red;
    cursor: pointer;
    text-decoration: underline;
  }
  .cart-summary {
    padding: 20px;
    text-align: right;
  }
  .cart-summary div {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .checkout-btn {
    background-color: #f04d3e;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  .checkout-btn:hover {
    background-color: #d43d30;
  }
  @media screen and (max-width: 477px) {
    .cart-container {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
  }
  }