body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.product-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  margin: 20px;
  border: 1px solid #e0e0e0;
}
.product-image {
  width: 100%;
  height: 200px;
  background-image: url("../images/pexels-sevde-altintas-2163334077-39320552.jpg");
  /* background-size: contain; */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  /* background-position: top; */
  /* object-fit: cover; */
}
.product-info {
  padding: 20px;
}
.product-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 10px;
  margin-left: 0;
}
.product-description {
  color: #666;
  font-size: 0.9em;
  line-height: 1.4;
  margin-bottom: 15px;
}
.product-price {
  font-size: 1.1em;
  color: #e44d26;
  font-weight: bold;
  margin-bottom: 15px;
}

.product-button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.product-button:hover {
  background-color: #45a049;
}
