/* Fondo general */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-image: url('imagen.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #333;
}

/* Contenedor de productos */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px auto;
  max-width: 1000px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.85); /* semitransparente */
  border-radius: 10px;
}

/* Estilo individual de productos */
.product {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product button {
  padding: 8px 12px;
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.product button:hover {
  background-color: #555;
}
h1{
     color: white;

}
.product:hover { transform: scale(1.05); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }