html,
body {
  margin: 0;
  padding: 0px;
  font-family: Poppins;
}
.section-container {
  margin: 0 auto;
  max-width: 1330px;
}
h1 {
  font-size: 34px;
  text-align: center;
  font-weight: bolder;
  padding-top: 150px;
}

h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

h4 {
  font-size: 19px;
  text-align: left;
  font-weight: bold;
  margin: 0;
}

section p {
  padding: 5%;
  font-size: 16px;
}

section {
  margin: 0;
  padding-right: 10%;
  padding-left: 10%;
  padding-bottom: 100px;
  text-align: center;
}

/* SHOPPING CART CSS*/
.shopping-cart {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 2%;
}

.product-item {
  display: flex;
  justify-content: space-around;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.buttons {
  padding-top: 30px;
  margin-right: 60px;
}

.product-image {
  margin-right: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.product-image img {
  height: 200px;
}

.description {
  padding-top: 90px;
  margin-right: 60px;
  width: 150px;
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.quantity {
  padding-top: 90px;
  margin-right: 60px;
}

.quantity input {
  border: none;
  text-align: center;
  width: 32px;
  font-size: 16px;
  color: black;
}

.quantity button {
  width: 30px;
  height: 30px;
  background-color: #b83239;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.minus-btn img {
  margin-bottom: 3px;
}
.plus-btn img {
  margin-top: 2px;
}

.total-price {
  width: 83px;
  padding-top: 97px;
  text-align: center;
  font-size: 16px;
  color: black;
}

.all-total {
  display: flex;
  justify-content: space-between;
  padding-left: 5%;
  padding-right: 5%;
}

.all-total p {
  font-weight: bolder;
}

.all-totalbtn {
  text-align: right;
}
.all-totalbtn button {
  background-color: #b83239;
  color: white;
  border: none;
  margin: 0px;
  padding: 10px;
  width: 300px;
  font-weight: bold;
  font-size: 16px;
}

button:hover {
  background-color: black;
}

@media (max-width: 720px) {
  .shopping-cart {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
  }

  .product-item {
    height: auto;
    flex-wrap: wrap;
    flex-direction: column;
    padding-top: 5%;
    padding-bottom: 2.5%;
  }

  .product-image img {
    width: auto;
  }

  .product-image,
  .quantity,
  .description,
  .total-price,
  .all-total,
  .all-totalbtn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding-top: 5%;
    padding-bottom: 2.5%;
  }
}
