/* STYLE GÉNÉRAL - ambiance naturelle et moderne */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to top right, #fdf6ec, #fff);
  color: #333;
  margin: 0;
  padding: 0;
}

/* Conteneur principal */
.beverage-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* Nom de la boisson */
.beverage-title {
  font-size: 2.5rem;
  color: #b64228; /* couleur rooibos */
  margin-bottom: 10px;
}

/* Sous-titre bien-être */
.beverage-subtitle {
  font-size: 1.2rem;
  color: #667b68;
  margin-bottom: 25px;
}

/* Ingrédients stylisés */
.ingredients {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.ingredient {
  flex: 1 1 150px;
  background: #f8f8f8;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.ingredient h4 {
  margin: 10px 0 5px;
  color: #333;
}

.ingredient p {
  font-size: 0.95rem;
  color: #666;
}

/* Palette inspirée des ingrédients */
.rooibos { background-color: #e2b499; }
.gingembre { background-color: #f4d35e; }
.orange { background-color: #ffa552; }
.citron { background-color: #fdfc74; }

/* Label Afrique du Sud */
.origin-tag {
  background: #2e7d32;
  color: #fff;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-top: 15px;
}

/* Style jeune et dynamique */
@media (max-width: 600px) {
  .beverage-title {
    font-size: 2rem;
  }
  .ingredients {
    flex-direction: column;
  }
}
