
body {
  background: hsl(30, 38%, 92%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
}

.card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 600px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-image {
  width: 50%;
  object-fit: cover;
  display: block;
}


.card-content {
  padding: 2rem;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.card-content h3 {
  letter-spacing: 0.3em;
  color: hsl(228, 12%, 48%);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1rem;
}


.card-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  margin: 0 0 1.5rem 0;
  color: hsl(212, 21%, 14%);
}


.card-content p {
  color: hsl(228, 12%, 48%);
  font-size: 1rem;
  margin-bottom: 2rem;
}


.price-row {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}


.price {
  color: hsl(158, 36%, 37%);
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-right: 1.5rem;
}


.old-price {
  color: hsl(228, 12%, 48%);
  text-decoration: line-through;
  font-size: 1rem;
}


.add-to-cart-btn {
  background: hsl(158, 36%, 37%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background 0.2s;
}
.add-to-cart-btn:hover {
  background: hsl(158, 36%, 25%);
}


@media (max-width: 600px) {
  .card {
    flex-direction: column;
    max-width: 90vw;
  }
  .card-image, .card-content {
    width: 100%;
  }
  .card-image {
    height: 240px;
  }
}
