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

.tienda {
  text-align: center;
  padding: 40px;
}

.catalogo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.producto {
  background-color: #111;
  border: 2px solid #444;
  border-radius: 15px;
  padding: 20px;
  width: 280px;
}

.producto img {
  width: 100%;
  border-radius: 10px;
}

.producto h2 {
  font-size: 18px;
  margin: 10px 0;
}

.producto p {
  font-size: 16px;
}

.promo {
  color: #ff4444;
  font-size: 14px;
}

.boton {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #700;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.boton:hover {
  background-color: #a00;
}
