.cookie-hint {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #507A9C;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75em 1em;
  font-size: 0.9rem;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.15);
  z-index: 9999;
}
.cookie-hint a {
  color: #fff;
  text-decoration: underline;
}
.cookie-hint button {
  background: #fff;
  color: #507A9C;
  border: none;
  padding: 0.4em 0.9em;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}
.cookie-hint.hidden {
  display: none;
}