body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  color: #000000;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 50px;
  box-sizing: border-box;
}

.intro-text {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 30px auto;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: #000000;
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.products-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 40px;
}

.product-card {
  display: flex;
  background-color: #e5e5e5;
  box-sizing: border-box;
  min-height: 450px;
  overflow: hidden;
}

.product-card.row-reverse {
  flex-direction: row-reverse;
}

.product-image-box {
  flex: 1;
  display: flex;
  padding: 0;
  background-color: #e5e5e5;
}

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

.product-info-box {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-title {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 15px 0;
  letter-spacing: 1px;
}

.product-description {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 30px 0;
  color: #000000;
  text-align: justify;
}

.price-label {
  font-size: 13px;
  color: #777777;
  margin-bottom: 3px;
}

.product-price {
  font-size: 22px;
  font-weight: 600;
  color: #e9c349;
  margin: 0 0 30px 0;
}

.btn-purchase {
  align-self: flex-end;
  background-color: #e9c349;
  color: #000000;
  border: none;
  padding: 12px 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.btn-purchase:hover {
  background-color: #d4ae37;
  transform: translateY(-1px);
}

.btn-purchase a{
  text-decoration: none;
  color: inherit;
}
