#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #f0ece2;
  border-top: 1px solid #a19184;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: 'Anonymous Pro', monospace;
  font-size: 0.875rem;
  color: #403831;
  box-shadow: 0 -2px 8px rgba(0,0,0,.08);
}
#cookie-banner p {
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}
.cb-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
#cb-accept {
  background: #899273;
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
}
#cb-accept:hover { background: #37431b; }
#cb-refuse {
  background: transparent;
  color: #403831;
  border: 1px solid #a19184;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
}
#cb-refuse:hover { background: #e6d2c8; }
