:root {
  --light-grey: #f5f6f7;
  --black: #000;
}

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

#dessert-card-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}

.dessert-card {
  background-color: var(--accent-color-gold);
  padding: 15px;
  text-align: center;
  border-radius: 15px;
  margin: 20px 10px;
}

.dessert-price {
  font-size: 1.2rem;
}

#cart-btn {
  position: absolute;
  top: 12%;
  left: 4%;
}

#cart-container {
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: var(--light-grey);
  width: 200px;
  height: 400px;
  border: 8px double var(--black);
  border-radius: 15px;
  text-align: center;
  font-size: 1rem;
  overflow-y: scroll;
}

.product {
  margin: 25px 0;
	font-size: 1rem;
}

.product-count {
  display: inline-block;
  margin-right: 5px;
}

.product-category {
  margin: 5px 0;
}

@media (min-width: 768px) {
  #dessert-card-container {
    flex-direction: row;
  }

  .dessert-card {
    flex: 1 0 21%;
  }

  #cart-container {
    width: 300px;
  }
}

@media (max-width: 576px) {
	#cart-btn {
  top: 15%;
}
}

