:root {
  --font-size: 11px;
  --heading-font-color: hsl(212, 21%, 14%);
  --font-color: hsl(228, 12%, 48%);
  --background-color: hsl(30, 38%, 92%);
  --button-color: hsl(158, 36%, 37%); 
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  background-color: var(--background-color);
}
main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  height: 330px;
}
.product {
  width: 220px;
  border-bottom-right-radius: 7px;
  border-top-right-radius: 7px;
  background-color: white;
  padding: 20px;
}
.product-img {
  width: 220px;
  border-bottom-left-radius: 7px;
  border-top-left-radius: 7px;
}
.mobile-img {
  display: none;
}
.title {
  color: var(--font-color);
  font-size: 11px;
  text-transform: uppercase;
  font-family: 'Assistant', sans-serif;
  letter-spacing: 4px;
  font-weight: 400;
}
.heading {
  font-family: 'Fraunces', serif;
  color: var(--heading-font-color);
  font-size: 24px;
  padding-top: 10px;
}
.caption {
  color: var(--font-color);
  font-family: 'Assistant', sans-serif;
  font-size: 13px;
  padding-top: 15px;
}
.price {
  display: flex;
  justify-content: flex-start;
  padding-top: 15px;
}
.new-price {
  color: var(--button-color);
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
}
.old-price {
  color: var(--font-color);
  font-size: 11px;
  display: flex;
  align-items: center;
  margin-left: 20px;
  text-decoration: line-through;
}
.button {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
button {
  background-color: var(--button-color);
  color: white;
  display: flex;
  justify-content: space-evenly;
  padding: 10px;
  border: none;
  border-radius: 8px;
  width: 175px;
}
button:hover {
  background-color: hsl(150, 26%, 17%);
}
.cart {
  width: 14px;
}

@media (max-width: 375px){
  main {
    display: inline-table;
    flex-direction: column;
  }
  .product {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    border-top-right-radius: 0;
  }
  .product-img {
    display: none;
  }
  .mobile-img {
    display: block;
    width: 220px;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
  }
}
