body {
  background-color: #dfdcdc;
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}
.product-card {
  background: #efeeee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
  font-family: 'Segoe UI', sans-serif;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(18, 78, 79, 0.15);
}
.product-card__image {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 3px solid #2ec9cc;
}
.product-card__content {
  padding: 20px;
}
.product-card__title {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  color: #2c3e50;
  line-height: 1.3;
}
.product-card__title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #2ec9cc;
  margin-top: 8px;
}
.product-card__description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #7f8c8d;
}
.product-card--accent {
  border: 2px solid #2ec9cc;
}
