.product {
  display: grid;
  border: solid 10px #aaa;
  border-radius: 10px;
  align-items: center;
  align-content: space-around;
  margin: 20px 0;
  grid-template-columns: 3fr 4fr;
}

.productImage {
  height: calc(100% - 20px);
  background-color: #aaa;
  border: solid 5px #aaa;
  border-radius: 5px;
  grid-row: 1/7;
  grid-column: 1;
  margin: 10px;
}

.productImage img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.productContent {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  grid-column: 2;
}

.productHeading {
  background-color: #aaa;
  height: 40px;
  border: solid 5px #aaa;
  border-radius: 5px;
  margin: 10px
}

.productText {
  background-color: #aaa;
  height: 0px;
  border: solid 5px #aaa;
  border-radius: 5px;
  margin: 10px
}

.productOptions {
  display: flex;
  gap: 10px;
  border: solid 10px #aaa;
  border-radius: 10px;
  margin: 10px;
  justify-content: flex-start;
}

.productOption {
  width: 50px;
  height: 50px;
  background-color: #aaa;
  border: solid 5px #aaa;
  border-radius: 5px;
  margin: 10px;
}

.productQuantity {
  background-color: #aaa;
  border: solid 5px #aaa;
  border-radius: 5px;
  height: 80px;
  width: 300px;
  margin: 10px;
}

.productButton {
  background-color: #aaa;
  border: solid 5px #aaa;
  border-radius: 5px;
  height: 100px;
  margin: 10px;
}
