.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;          /* 🔥 noir opaque */
  color: white;              /* 🔥 texte blanc bien lisible */
  padding: 16px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;           /* passe en colonne sur mobile */
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
  z-index: 9999;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 10px;
}

.cookie-banner div {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.cookie-banner button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.cookie-banner .accept {
  background: #28a745;
  color: white;
}

.cookie-banner .decline {
  background: #dc3545;
  color: white;
}
