@font-face {
  font-family: "DM Serif Display";
  src: url("./fonts/DMSerifDisplay_Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("./fonts/OpenSans_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("./fonts/OpenSans_SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  background-color: rgba(216, 216, 216, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  height: 100vh;
  box-shadow: 0px 24px 64px 0px rgba(0, 0, 0, 0.04);
}

.box_container {
  width: 360px;
  height: 528px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
}

.box_product {
  display: flex;
  flex-direction: column;
  width: 360px;
  background-color: white;
  border-radius: 16px;
}

.box_image {
  width: 360px;
  height: 216px;
  border-radius: 16px 16px 0px 0px;
  justify-content: center;
  position: relative;
}

.img_info_icon {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 48px;
  top: 16px;
}

.icons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-right: 40px;
}

.box_full_description {
  display: flex;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-around;
  font-family: "DM Serif Display", serif;
  letter-spacing: 1%;
  margin: 10px;
  width: 360px;
  height: 276px;
}

.box_middle {
  display: flex;
  justify-content: space-between;
  width: 360px;
  height: 30px;
  position: relative;
}

.product_name {
  color: rgba(8, 31, 50, 1);
  font-size: 24px;
  line-height: 25px;
  font-family: "DM Serif Display", serif;
  font-weight: bold;
  width: 180px;
  gap: 20px;
}

.description {
  color: rgba(110, 121, 140, 1);
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 25px;
  width: 320px;
  height: 30px;
  margin-top: 20px;
  gap: 20px;
}

.info {
  display: grid;
  grid-auto-flow: column;
  width: 360px;
  margin-top: 50px;
  gap: 30px;
}

.callories,
.pfc,
.celsius {
  color: rgba(165, 173, 187, 1);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  height: 30px;
}

.box_buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  width: 340px;
}

.prices {
  display: flex;
  justify-content: space-between;
  width: 170px;
  align-items: center;
  font-family: "Open Sans", sans-serif;
}

.price_discounted {
  color: rgba(8, 31, 50, 1);
  font-size: 28px;
  font-weight: 400;
  width: 28px;
}

.price {
  color: rgba(248, 89, 59, 1);
  font-size: 20px;
  font-weight: 400;
  width: 73px;
  text-decoration: line-through;
}

.buttonParams {
  color: white;
  background-color: rgba(46, 204, 113, 1);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: 0px;
  line-height: 25px;
  border-radius: 4px;
  justify-content: center;
  width: 114px;
  height: 44px;
  letter-spacing: 1px;
}
