body {
  background: #f2e9e1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 16px;
}

.product-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  max-width: 600px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .product-card {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.product-image {
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.product-info {
  padding: 32px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

@media (max-width: 640px) {
  .product-info {
    padding: 24px 22px;
  }
}

.product-category {
  color: #6c7289;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.product-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #1c232b;
  margin: 0;
}

@media (max-width: 640px) {
  .product-title {
    font-size: 1.75rem;
  }
}

.product-description {
  color: #6c7289;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.product-pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.product-price-current {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3c8067;
}

.product-price-old {
  font-size: 0.8125rem;
  color: #b9b9b9;
  text-decoration: line-through;
}

.product-btn-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  gap: 12px;
  width: 100%;
  background: #3c8067;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  border-radius: 8px;
  padding: 15px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.product-btn-cart:hover {
  background: #1a4032;
}

.product-btn-cart img {
  width: 15px;
  height: 16px;
}
/*# sourceMappingURL=style.css.map */