body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:poppins, sans-serif;
  background: #f9eaea;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.product {
  position: relative;
  display: flex;
  align-items: center;

}

.can {
  width: 220px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.product:hover .can {
  transform: scale(1.05);
}

.info {
  position: absolute;
  left: 75%;
  top: 50%;
  transform: translate(-20px, -50%);
  opacity: 0;
  max-width: 120px;
  padding: 10px 20px;
  border-radius: 5px 0 0 5px;
  transition: all 0.6s ease;
}

.product:hover .info {
  transform: translateX(0, -50%);
  opacity: 1;
}

/*Frame*/
.info::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 0%;
  width: 2px;
  background:  #F25978;
  transition: height 0.6s ease;
}

.info::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0%;
  background: #F25978;
  transition: width 0.6s ease;
  transition-delay: 0.3;
}

.product:hover .info::before {
  height: 100%;
}

.product:hover .info::after {
  width: 100%;
}

.title {
  font-family: "Knewave", cursive;
  font-size: 20px;
  color: #F25978;
  margin: 0 0 10px;
}


.desc {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}
