
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

.main-header {
  background: linear-gradient(135deg, #e74459, #58586a);
  padding: 1.5rem;
  color: #fff;
  text-align: center;
}

.footer {
  background-color: #2d2722;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.contenido {
  padding: 2rem;
  text-align: center;
}

.botones-accion {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.botones-accion button {
  background: linear-gradient(135deg, #61022c, #2d2722);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.botones-accion button:hover {
  background: linear-gradient(135deg, #2d2722, #61022c);
}

.volver {
  text-align: center;
  margin-top: 2rem;
}

.volver a {
  color: #61022c;
  font-weight: bold;
  text-decoration: none;
}

.productos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.producto {
  background: #4b3f38;
  padding: 1rem;
  border-radius: 8px;
  width: 180px;
  text-align: center;
  color: #fff;
}

.producto img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}
