body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  max-width: 400px;
  width: 90%;
  padding: 20px;
  border: 2px solid #ecf0f1;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  font-family: Arial, sans-serif;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}
.product-card__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  border: 1px solid #eee;
}
.product-card__title {
  font-size: 22px;
  color: #2c3e50;
  margin: 10px 0;
}
.product-card__description {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.5;
}
.product-card__price {
  font-size: 28px;
  font-weight: 800;
  color: #e74c3c;
  margin: 15px 0;
  text-align: right;
}
.product-card__button {
  padding: 12px 24px;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.product-card__button:hover {
  background-color: rgb(213.698630137, 43.8356164384, 26.301369863);
}
.product-card__button {
  margin-top: 15px;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
