
.product-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

.product-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}


.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}


.product {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-10px);
}


.product img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: filter 0.4s ease;
}


.product:hover img {
  animation: blurPulse 0.8s ease forwards;
}

@keyframes blurPulse {
  0% { filter: blur(0px); }
  45% { filter: blur(6px); }
  100% { filter: blur(0px); }
}


.product h3 {
  margin-top: 15px;
  font-size: 22px;
  font-weight: 600;
}

.product p {
  font-size: 15px;
  color: #555;
  margin: 10px 0 20px;
  line-height: 1.5;
}


.product button {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border: 1px solid black;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.product button:hover {
  background: #333;
  transform: scale(1.05);
}
