body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #111010;

}
.heading{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #eee;
}
#cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.product-card {
  background-color: rgb(255, 255, 255);
  width: 280px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
 
}
.img-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #000000;
}

.card-body {
  padding: 10px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.product-description {
  font-size: 14px;
  color: #030303;
  height: 45px;
  overflow: hidden;
  margin-bottom: 10px;
}

.product-price {
  font-size: 16px;
  font-weight: bold;
  color: #10b981; 
}
