body {
  font-family: "Montserrat", sans-serif;
  background-color: hsl(30, 38%, 92%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.product-card {
  display: flex;
  max-width: 600px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

h2 {
  color: hsl(228, 12%, 48%);
  font-size: 12px;
  letter-spacing: 5px;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: 28px;
  margin: 1rem 0;
}

p {
  color: hsl(228, 12%, 48%);
  font-size: 14px;
}

.price {
  font-family: "Fraunces", serif;
  color: hsl(158, 36%, 37%);
  font-size: 28px;
  margin-right: 1rem;
}

del {
  color: hsl(228, 12%, 48%);
}

button {
  background-color: hsl(158, 36%, 37%);
  color: white;
  padding: 1rem;
  font-size: 14px;
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: hsl(158, 36%, 27%);
}

@media (max-width: 600px) {
  .product-card {
    flex-direction: column;
  }

  .image-section,
  .main-section {
    width: 100%;
  }

  .image-section img {
    border-radius: 10px 10px 0 0;
    height: auto;
  }

  .main-section {
    padding: 1.5rem;
  }
}
