/* Boutique */
.boutique-body {
  background: linear-gradient(135deg, #0a0a0a, #101820);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  padding-bottom: 60px;
}

.header-boutique {
  padding: 30px;
  background: rgba(20, 20, 20, 0.8);
  box-shadow: 0 0 20px #00f5ff;
  margin-bottom: 40px;
}

.produits {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.produit {
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid #00f5ff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
  transition: 0.3s;
}

.produit:hover {
  transform: scale(1.05);
}

.produit img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Popup Formulaire */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}

.modal-content {
  background: #111;
  border: 1px solid #00f5ff;
  border-radius: 10px;
  padding: 30px;
  margin: 10% auto;
  width: 300px;
  color: #fff;
  box-shadow: 0 0 20px #00f5ff;
  position: relative;
}

.close {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 22px;
  cursor: pointer;
  color: #00f5ff;
}

.confirmation {
  color: #00ff99;
  margin-top: 10px;
}
