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

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  background: rgb(242, 234, 226);
}

.product-card {
  display: flex;
  background: rgb(255, 255, 255);
  border-radius: 8px;
  max-width: 600px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 10px;
}

.product-image {
  flex: 1;
}
.product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-image .mobile-image {
  display: none;
}

.product-details {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 236px;
  margin: 32px;
  flex: 1;
}

.product-category {
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 5px;
  color: rgb(108, 114, 137);
  margin-bottom: 24px;
}

.product-title {
  font-family: "Fraunces", serif;
  font-size: 32px;
  line-height: 100%;
  font-weight: 700;
  color: rgb(28, 35, 43);
  margin-bottom: 24px;
}

.product-description {
  font-size: 14px;
  line-height: 160%;
  color: rgb(108, 114, 137);
  margin-bottom: 32px;
}

.product-pricing {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.current-price {
  font-family: "Fraunces", serif;
  font-size: 32px;
  line-height: 100%;
  font-weight: 700;
  color: rgb(61, 129, 104);
  margin-right: 15px;
}

.original-price {
  font-size: 13px;
  line-height: 120%;
  text-decoration: line-through;
  color: rgb(108, 114, 137);
}

.add-to-cart {
  font-size: 14px;
  font-weight: 700;
  line-height: 110%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  background: rgb(61, 129, 104);
  height: 50px;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  padding: 16px;
  gap: 10px;
  transition: background 0.5s;
}
.add-to-cart:hover, .add-to-cart:focus {
  background: rgb(26, 64, 50);
}

@media (max-width: 425px) {
  .product-card {
    flex-direction: column;
  }
  .product-details {
    max-width: 350px;
  }
  .product-description {
    margin-bottom: 24px;
  }
  .product-pricing {
    margin-bottom: 24px;
  }
  .product-image {
    height: 240px;
  }
  .product-image .desktop-image {
    display: none;
  }
  .product-image .mobile-image {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */