html {
  font-size: 62.5%;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  font-size: 1.4rem;
  font-family: "Montserrat", serif;
  font-weight: 400;
  box-sizing: border-box;
  background-color: rgba(243, 234, 227, 255); /* Mantiene il tuo colore */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Altezza minima uguale alla viewport */
  padding: 2rem; /* Evita che il contenuto tocchi i bordi */
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

/* CARD */

.card_container {
  width: 95%;
  max-width: 36.6rem;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.flex {
  display: flex;
  flex-direction: column;
}
img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0.7em;
}
.invisibile {
  display: none;
}
.card__text {
  background-color: white;
}

.product_tipologye {
  font-size: 1.1rem;
  letter-spacing: 5px;
  color: hsl(228, 12%, 48%);
  font-weight: 500;
}

.text-container {
  padding: 2rem;
  gap: 1.5rem;
}

.product_name {
  font-size: 3rem;
  font-family: "Fraunces", serif;
  line-height: 1;
  color: hsl(212, 21%, 14%);
}

.product_description {
  line-height: 1.5;
  color: hsl(228, 12%, 48%);
  font-weight: 500;
  letter-spacing: 0.1px;
}

.price {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

.price_decurted {
  color: hsl(158, 36%, 37%);
  font-family: "Fraunces", serif;
  font-size: 3.2rem;
  font-weight: 700;
}

.price__original {
  text-decoration: line-through;
}

.call_to_action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: hsl(158, 36%, 37%);
  border: none;
  border-radius: 8px;
  padding: 1.5rem 1.5rem;
  width: 100%;
  cursor: pointer;
}

.call_to_action img {
  width: 15px;
  height: auto;
  margin: 0;
}

.call_to_action span {
  font-size: 1.5rem;
  font-family: "Montserrat", serif;
  font-weight: 700;
  color: white;
}
.call_to_action:hover {
  cursor: pointer;
  background-color: hsl(158, 42%, 18%);
}
.card_container.flex {
  display: inline-block;
}

/*MEDIA QUERY*/

@media (min-width: 650px) {
  .card_container {
    flex-direction: row;
    min-width: 600px;
  }

  .invisibile {
    display: block;
    max-inline-size: 100%;
    block-size: auto;
    border-radius: 10px 0 0 10px;
    margin: 0;
  }

  .visibile {
    display: none;
  }
  .card__image {
    flex-basis: 50%;
  }
  .card__text {
    flex-basis: 50%;
    padding: 1rem;
  }
  .product_name {
    font-size: 3.5rem;
  }
  .text-container {
    gap: 2.5rem;
  }
}
