/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

/* Botones arriba */
.btn-wsp,
.btn-carrito {
  display: inline-block;
  margin: 5px 10px 10px 0;
  padding: 10px 18px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s ease;
}

.btn-wsp {
  background-color: #25d366;
}

.btn-carrito {
  background-color: #007bff;
}

.btn-wsp:hover {
  background-color: #1da851;
}

.btn-carrito:hover {
  background-color: #0062cc;
}

/* Contenedor de productos */
#productos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

/* Tarjeta de producto */
.producto {
  width: 100%;
  max-width: 360px;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.producto:hover {
  transform: translateY(-4px);
}

.producto img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
}

.producto h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #111;
}

.producto p {
  font-size: 14px;
  margin-bottom: 6px;
}

.producto button {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.producto button:hover {
  background-color: #555;
}

/* Modal de imagen */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.85);
}

.contenido-modal {
  display: block;
  margin: 60px auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.cerrar-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cerrar-modal:hover {
  color: #ff4d4d;
}

/* Responsive ajustes */
@media (max-width: 600px) {
  .producto img {
    max-height: 180px;
  }

  .btn-wsp,
  .btn-carrito {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .contenido-modal {
    max-height: 60vh;
  }
}
