.product-section {
  padding: 35px 20px;
  background: #f5f7fa;
}

.product-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

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

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.product-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 0px;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

.product-card .btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 30px;
  background: #2c3e50;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.product-card .btn:hover {
  background: #000;
}

/* Tablet */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
