body { background-color: #FDFBF8; font-family: 'Poppins', sans-serif; }

.hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
  background: radial-gradient(circle at center, #FFFFFF 0%, #FAFAF8 100%);
  border-bottom: 2px solid #00B5B8;
}
.hero h1 {
  font-family: "Lora", serif;
  font-size: 2rem;
  color: #333;
  margin-bottom: .5rem;
}
.hero p { color: #555; font-size: 1rem; }

/* Barre sticky */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 1.5rem auto 2rem;
  max-width: 800px;
  position: sticky;
  top: 0;
  background: #FDFBF8;
  z-index: 10;
  padding: 1rem 0;
}
.filters select, .filters input {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  min-width: 180px;
}

/* Loading */
.loading {
  text-align: center;
  color: #777;
  font-style: italic;
  margin: 2rem 0;
}

/* Grille produits */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}
.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform .3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card:hover { transform: translateY(-6px); }
.product-card img { width: 100%; height: auto; border-bottom: 1px solid #eee; }
.product-card .p { padding: 1rem; text-align: center; }
.product-card h3 {
  font-family: 'Lora', serif;
  margin: 0.3rem 0;
  font-size: 1.1rem;
  color: #333;
}
.product-card p { font-size: 0.9rem; color: #555; margin-bottom: 0.6rem; }
.tag {
  display: inline-block;
  background: #00B5B8;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

/* Bouton */
.btn-outline {
  display: inline-block;
  border: 1.5px solid #00B5B8;
  border-radius: 8px;
  color: #00B5B8;
  text-decoration: none;
  padding: 6px 12px;
  transition: all .3s;
  font-size: 0.9rem;
}
.btn-outline:hover {
  background: #00B5B8;
  color: #fff;
}

/* Citation */
.citation {
  text-align: center;
  font-style: italic;
  margin: 3rem 1rem 2rem;
  color: #444;
}
.citation span {
  display: block;
  font-size: 0.9rem;
  color: #777;
}

/* Footer */
footer {
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

/* Aucune correspondance */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  color: #777;
  font-style: italic;
}

@media (max-width: 600px) {
  .filters select, .filters input {
    min-width: 140px;
    font-size: 0.85rem;
  }
}
