.designer-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.designer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.product-heading {
  color: blue;
  text-align: center;
  font-size: clamp(1rem 3rem 3rem);
  margin-top: 5%;
  margin-bottom: 5%;
  font-weight: 600;
}

.designer-card:hover > img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.designer-card img {
  height: 250px;
}

.card-body {
  text-align: center;
  background: #f8f9fa;
}

.card-body h5 {
  margin: 0;
  font-weight: 600;
  color: #333;
}
