/* Style global */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff6fa;
  color: #3b1d3f;
}

/* Header */
.header {
  background-color: #f8e5f0;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header h1 {
  margin: 0;
  font-size: 2.2rem;
  color: #a24888;
}

.navbar {
  margin-top: 20px;
}

.navbar a {
  margin: 0 15px;
  text-decoration: none;
  color: #7b2e53;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #e91e63;
}

/* Filtres */
.filtre-section {
  text-align: center;
  padding: 20px;
  background-color: #fbe6f2;
}

.filtre-section label {
  font-weight: 600;
  margin-right: 10px;
  color: #6e1f42;
}

.filtre-section select {
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid #e0b7c9;
  background-color: #fff;
  font-size: 1rem;
  color: #7b2e53;
}

/* Produits */
.produits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
}

.produit {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(221, 133, 176, 0.2);
  padding: 20px;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s;
}

.produit:hover {
  transform: translateY(-5px);
}

.produit img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.produit h3 {
  font-size: 1.2rem;
  color: #a24888;
  margin-bottom: 10px;
}

.produit .prix {
  color: #6e1f42;
  font-weight: bold;
  margin-bottom: 15px;
}

.produit button {
  padding: 10px 20px;
  background-color: #e48abf;
  border: none;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.produit button:hover {
  background-color: #d06ba8;
}

/* Footer */
.footer {
  background-color: #f5e0ed;
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
  color: #7b2e53;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .produits {
    flex-direction: column;
    align-items: center;
  }

  .navbar a {
    display: inline-block;
    margin: 10px 8px;
  }
}
