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

/*

 0.125rem - 2px   
 0.25rem - 4px
 0.375rem - 6px
 0.5rem - 8px
 0.625rem - 10px
 0.75rem - 12px
 0.875rem - 14px
 1rem - 16px
 1.25rem - 20px
 1.5rem - 24px
 1.75rem - 28px
 2rem - 32px
 2.25rem - 36px
 2.5rem - 40px
 2.75rem - 44px
 3rem - 48px
 3.25rem - 52px
 3.5rem - 56px

*/
body {
  background-color: hsl(30, 38%, 92%);
  line-height: 1;
  color: hsl(228, 12%, 48%);
}

p {
  font-size: 0.875rem;
}

.montserrat-primary {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.fraunces-secondary {
  font-family: "Fraunces", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.container {
  max-width: 70rem;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (max-width: 638px) {
  .container {
    padding: 5rem;
  }
}
@media (max-width: 522px) {
  .container {
    padding: 3.5rem;
  }
}
@media (max-width: 490px) {
  .container {
    padding: 3rem;
  }
}
@media (max-width: 443px) {
  .container {
    padding: 2.5rem 1.25rem;
  }
}

.center-box {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 638px) {
  .center-box {
    align-items: flex-start;
  }
}

.product-card {
  max-width: 35rem;
  background-color: hsl(0, 0%, 100%);
  border-radius: 10px;
  display: flex;
  overflow: hidden;
}
@media (max-width: 638px) {
  .product-card {
    flex-direction: column;
  }
}
.product-card__image-box {
  width: 50%;
  margin-bottom: -0.25rem;
}
@media (max-width: 638px) {
  .product-card__image-box {
    width: 100%;
  }
}
.product-card__image {
  width: 100%;
}
.product-card__details-box {
  width: 50%;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 638px) {
  .product-card__details-box {
    width: 100%;
    padding: 1.25rem;
  }
}
.product-card__category {
  font-weight: 500;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}
.product-card__title {
  font-size: 2rem;
  color: hsl(212, 21%, 14%);
}
.product-card__description {
  font-weight: 500;
  line-height: 1.7;
}
.product-card__price {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.product-card__price--new {
  font-size: 2rem;
  color: hsl(158, 36%, 37%);
}
.product-card__price--old {
  font-weight: 500;
  text-decoration: line-through;
}

.btn {
  border: none;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  margin-top: auto;
  padding: 0.875rem;
  transition: all 0.3s;
}

.btn--add-to-card {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  background-color: hsl(158, 36%, 37%);
}
.btn--add-to-card:hover {
  background-color: hsl(159, 48%, 13%);
}

/*# sourceMappingURL=style.css.map */
