
body {
  background-color: #f4f4f4;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.producto {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.producto h2 {
  font-size: 1.3rem;
  color: #1d45ca;
  margin-bottom: 0.5rem;
}

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

.galeria img {
  width: 100px;
  height: auto;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.descripcion {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  text-align: justify;
}

.acciones {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

label {
  font-weight: bold;
}

select {
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: white;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5b;
}
