@import url("./reset.css");
@import url("./variables.css");

.checkout-title {
    text-align: center;
    margin: 20px 0;
  }

#cart-container {
  border: 1px solid lightgrey;
  padding: 10px;
  width: 100%;
}

#cart-container img {
  height: 100px;
  margin-bottom: 10px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid lightgrey;
}

.cart-item button {
  background-color: rgb(105, 0, 0);
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  height: 40px;
  margin: 10px;
}

.cart-item button:hover {
  background-color: rgb(241, 100, 100);
}

.cart-summary {
  text-align: center;
}

@media (max-width: 800px) {
    #cart-container {
      width: 90%;
    }

    #cart-container img {
      height: 150px;
      width: 150px;
    }

    .cart-item {
      flex-direction: column;
      align-items: center;
    }

    .cart-item p {
      margin: 5px;
    }

    .cart-item button {
      width: 50%;
      text-align: center;
    }

    h3 {
      text-align: center;
    }
}