.product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  padding: 15px;
  text-align: center;
}

.product-card:hover {
  transform: scale(1.05);
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
}

.badge.featured {
  position: absolute;
  top: 10px;
  left: 10px;
  background: green;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.product-info {
  padding: 15px;
}

.product-info h3 {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
}

.product-info .price {
  font-weight: bold;
  color: green;
}

.product-info .seller {
  color: gray;
  font-size: 14px;
}

.btn-custom {
  display: inline-block;
  padding: 10px 15px;
  text-align: center;
  background: #28a745;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-custom:hover {
  background: #218838;
}
.buyer-seller-heading {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-top: 50px;
  color: #222;
  text-transform: uppercase;
}

.product-container {
  margin: 5% 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

