/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  display: none; /* masqué par défaut */
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 9999;
}
.cookie-banner p {
  margin: 0;
}
.cookie-banner a {
  color: #ffa500;
  text-decoration: underline;
}
.cookie-banner button {
  background: #ffa500;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
.cookie-banner button:hover {
  background: #ff7b00;
}
