.center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-card {
  width: 360px;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}
.product-card {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  border: 1px solid rgba(44, 62, 80, 0.1);
}
.product-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background-color: #f8f9fa;
  border-bottom: 3px solid #e74c3c;
}
.product-card__title {
  font-size: 1.5rem;
  margin: 20px 20px 10px;
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.3;
}
.product-card__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #e74c3c;
  margin-top: 8px;
  border-radius: 4px;
}
.product-card__description {
  font-size: 1rem;
  margin: 0 20px 25px;
  color: rgb(80.1935483871, 113, 145.8064516129);
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 480px) {
  .product-card {
    width: 100%;
    max-width: 340px;
  }
  .product-card__title {
    font-size: 1.3rem;
    margin: 16px 16px 8px;
  }
  .product-card__description {
    margin: 0 16px 20px;
    font-size: 0.95rem;
  }
}

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