.feature-header {
  text-align: center;
  padding: 60px 20px;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
}

.feature-page .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 0 10%;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #333;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}

.product-card p {
  color: #d62828;
  font-weight: bold;
}

.btn-volver {
  display: block;
  width: fit-content;
  margin: 40px auto;
  padding: 12px 25px;
  background: #ffcc00;
  color: #000;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-volver:hover {
  background: #e6b800;
}
