.dot-cr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
a {
  color: white;
  text-decoration: none;
}
.product-card {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  margin: 10px;
  transition: transform 0.3s;
  width: auto;
  max-width: 400px;
}
.product-card:hover {
  transform: scale(1.05);
}
.product-image {
  max-width: 200px;
  width: auto;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-image {
  transform: scale(1.1);
}
.product-details {
  padding: 10px;
}
.product-title {
  font-size: 18px;
  font-weight: bold;
}
.product-description {
  margin: 5px 0;
}
.product-button {
  background-color: #14c86e;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.product-button:hover {
  background-color: #12ab0a;
}
