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

body {
  background-color: hsl(30, 38%, 92%);
  font-family: "Montserrat", sans-serif;
}

h1,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 700;
}

h2 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: hsl(228, 12%, 48%);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

main {
  min-height: 100vh;
  /* border: 2px solid salmon; */
  display: grid;
  justify-content: center;
  align-items: center;
}

section {
  max-width: 35rem;
  /* width: 40rem; */
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-self: center;

  background-color: hsl(0, 0%, 100%);
  display: flex;
  border-radius: 1rem;
  overflow: hidden;
}

.product_image img {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  border-radius: 1rem 0 0 1rem;
}
.product_image {
  width: 50%;
  height: auto;

  display: flex;
  justify-content: center;
  align-items: center;
}
.product-details {
  width: 50%;
  height: auto;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;

  align-content: center;
}

h1.product-brand {
  color: hsl(228, 12%, 48%);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 1.2rem;
}

h1.product-name {
  font-size: 1.9rem;

  line-height: 1;
  margin-bottom: 1.2rem;
}

.price {
  display: flex;
  gap: 1rem;
  align-items: center;

  margin-bottom: 2rem;
}

.price span.current-price {
  font-family: "Fraunces", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: hsl(158, 36%, 37%);
}

.price span.original-price {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: hsl(228, 12%, 48%);
  text-decoration: line-through;
}

button.add-to-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(158, 36%, 37%);
  color: hsl(0, 0%, 100%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.9rem;
  border: none;
  border-radius: 0.3rem;
  cursor: pointer;
}
button img {
  margin-right: 0.5rem;
}
button.add-to-cart:hover {
  background-color: hsl(158, 42%, 18%);
  /* font-weight: 500; */
}

@media screen and (max-width: 480px) {
  main {
    padding: 1rem;
  }
  section {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  h1.product-name {
    font-size: 2rem;

    line-height: 1;
    margin-bottom: 1.2rem;
  }

  .product_image {
    width: 100%;
    height: 19rem;
  }

  .product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }

  .product-details {
    width: 100%;
  }
  p {
    font-size: 0.9rem;
  }

  button.add-to-cart {
    width: 100%;
    font-size: 0.8rem;
    padding: 1rem;
  }
}
