@import url("https://fonts.googleapis.com/css2?family=Aclonica&family=Figtree:ital,wght@0,300..900;1,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Aclonica&family=Figtree:ital,wght@0,300..900;1,300..900&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&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(30, 38%, 92%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: "Montserrat";
}

.product-card-container {
  background-color: hsl(0, 0%, 100%);
  border-radius: 15px;
  margin: 20px;
  display: flex;
  flex-direction: column;
}

.product-card {
  border-radius: 15px;
}

.product-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 15px 15px 0 0;
}

.card-content {
  font-size: 14px;
  margin-inline: 25px;
  font-family: "Montserrat";
  opacity: 0.9;
}

.category {
  font-size: 16px;
  margin-bottom: 5px;
  font-family: inherit;
}

.product-name {
  font-size: 30px;
  margin-bottom: 10px;
  font-family: "Fraunces";
  font-weight: 700;
}

.product-description {
  margin-bottom: 10px;
  opacity: 0.7;
  font-family: inherit;
  line-height: 1.5;
}

.prices {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  font-family: "Fraunces";
}

.price {
  margin-right: 15px;
  font-size: 30px;
  font-weight: 900;
  color: hsl(158, 36%, 37%);
}

.old-price {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 400;
  color: hsl(228, 12%, 48%);
}

.add-to-cart-button {
  background-color: hsl(158, 36%, 37%);
  color: hsl(0, 0%, 100%);
  border: none;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  cursor: pointer;
  font-family: "Montserrat";
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.add-to-cart-button:hover {
  background-color: hsl(158, 36%, 27%);
}

@media screen and (min-width: 586px) {
  .product-card-container {
    width: 500px;
    flex-direction: row;
    max-width: 100%;
  }

  .product-image {
    border-radius: 15px 0 0 15px;
    height: 100%;
    object-fit: cover;
    margin-bottom: 0;
    content: url("images/image-product-desktop.jpg");
  }

  .card-content {
    margin-inline: 0;
    padding: 20px;
    flex: 1;
  }

  .category {
    margin-bottom: 10px;
    opacity: 0.7;
    font-size: 18px;
  }

  .product-name {
    margin-bottom: 20px;
  }

  .product-description {
    margin-bottom: 20px;
  }

  .add-to-cart-button {
    margin-bottom: 0;
  }
}
