* {
  margin: 0;
  padding: 0;
  /* overflow: auto; */
  box-sizing: border-box;
}
a {
  color: black;
  font-weight: 800;
  text-decoration: none;
  padding: 10px;
}
.container.box {
  width: clamp(576px, 80vw, 1200px);
  margin: 0 auto;
}
.container-one {
  /* background: blue; */
  border: 1px solid rgb(206, 201, 201);
  width: 100%;
  display: flex;
  align-items: center;
}
.photo,
.price {
  width: 25%;
}
.text {
  width: 50%;
}
.photo {
  display: flex;
  justify-content: center;
  align-items: center;
}
img {
  width: 120px;
  height: 120px;
}
p {
  text-align: justify;
  margin: 10px;
}
.text > span {
  display: inline-block;
  margin: 10px;
  font-size: 16px;
}
.far .fa-question-circle {
  color: black;
}
.fa-heart {
  color: red;
}
.price {
  display: flex;
  flex-direction: column;
  padding: 10px;
  margin: 0;
  align-items: flex-start;
  justify-content: space-around;
}
button {
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 5px auto;
}
span:first-child {
  color: orange;
  font-size: 1.5rem;
  font-weight: bold;
}
span + button {
  background-color: orangered;
  color: white;
  width: 100%;
  transition: 1s;
}
.container-one > .price > .buy {
  background-color: green;
  width: 100%;
  color: white;
  opacity: 0;
}

.text {
  padding: 5px;
}

.heart {
  opacity: 0;
}

.container-one > .photo {
  transition: 2s;
}

.container-one:hover .text :last-child {
  opacity: 1;
}
.container-one:hover .buy {
  opacity: 1;
  background-color: green;
  transition: 1.5s;
}
.buy:hover {
  border-radius: 5px;
  box-shadow: 0 0 3px rgb(60, 200, 67);
  transform: scale(1.1);
  background-color: rgb(179, 200, 60);
}
.basket:hover {
  border-radius: 5px;
  box-shadow: 0 0 3px orangered;
  transform: scale(1.1);
}
.container-one:hover .photo {
  transform: scale(1.5);
}
