@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(30, 38%, 92%);
}

.mobile-image {
  display: none;
}
@media screen and (max-width: 576px) {
  .mobile-image {
    display: block;
    width: 100%;
    height: 10%;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
}

article {
  display: flex;
  justify-content: center;
  width: 550px;
  margin: 100px auto;
  gap: 25px;
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 576px) {
  article {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: auto;
    gap: 5px;
  }
}

.desktop-image {
  display: block;
  height: 400px;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
@media screen and (max-width: 576px) {
  .desktop-image {
    display: none;
  }
}

.tag {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 5px;
  margin-top: 10px;
  padding: 10px;
  color: #6c7289;
}
@media screen and (max-width: 576px) {
  .tag {
    margin-left: 10px;
    font-size: 10px;
  }
}

.product-name {
  font-family: "Fraunces", sans-serif;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0px;
  font-weight: bold;
  padding: 10px;
}
@media screen and (max-width: 576px) {
  .product-name {
    margin-left: 10px;
    width: 80%;
    font-size: 25px;
  }
}

.desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0px;
  font-weight: 500;
  color: #6c7289;
  padding: 10px;
}
@media screen and (max-width: 576px) {
  .desc {
    margin-left: 10px;
    font-size: 12px;
  }
}

.price-tag {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
}
@media screen and (max-width: 576px) {
  .price-tag {
    margin-left: 10px;
    padding-bottom: 2px;
  }
}

.highlight-price {
  font-family: "Fraunces", sans-serif;
  font-weight: bold;
  font-size: 25px;
  color: #3d8168;
}
@media screen and (max-width: 576px) {
  .highlight-price {
    font-size: 20px;
  }
}

.original-price {
  font-family: "Montserrat", sans-serif;
  color: #6c7289;
  text-decoration: line-through;
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .original-price {
    font-size: 10px;
  }
}

button {
  width: 90%;
  padding: 10px;
  background-color: #3d8168;
  position: relative;
  border: none;
  margin-top: 10px;
  border-radius: 0.5rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 110%;
  letter-spacing: 0px;
}
button:hover {
  background-color: #1a4032;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  button {
    width: 85%;
    margin-bottom: 20px;
    margin-left: 15px;
  }
}

.logo {
  width: 15px;
  height: 15px;
  position: absolute;
  left: 50px;
}/*# sourceMappingURL=style.css.map */