#cookie-banner,
#cookie-dialog {
  font:
    14px/1.6 Arial,
    sans-serif;
  color: #34302f;
  background: #f7f5ef;
  border: 1px solid #d0d4c6;
  border-radius: 3px;
  box-shadow: 0 10px 45px #19211222;
}
#cookie-banner {
  position: fixed;
  z-index: 10001;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1100px;
  margin: auto;
  padding: 24px 28px;
  display: flex;
  gap: 28px;
  align-items: center;
}
#cookie-banner h2,
#cookie-dialog h2 {
  font:
    28px/1.2 Georgia,
    serif;
  margin: 0 0 10px;
  color: #34302f;
}
#cookie-banner p,
#cookie-dialog p {
  margin: 8px 0;
  color: #625956;
  font-size: 13px;
}
#cookie-banner a,
#cookie-dialog a {
  color: #65434b;
  text-decoration: underline;
  font-size: 12px;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
  max-width: 400px;
}
#cookie-banner button,
#cookie-dialog button {
  font:
    12px Arial,
    sans-serif;
  line-height: 1.4;
  background: #f7f5ef;
  color: #65434b;
  border: 1px solid #80676d;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 2px;
  min-height: 43px;
}
#cookie-banner button:hover,
#cookie-dialog button:hover {
  background: #eee3e0;
}
#cookie-banner button:disabled {
  opacity: 0.5;
}
#cookie-banner button:focus-visible,
#cookie-dialog button:focus-visible,
[data-cookie-settings]:focus-visible {
  outline: 3px solid #a98150;
  outline-offset: 3px;
}
#cookie-dialog {
  width: min(540px, 92vw);
  padding: 30px;
  max-height: 85vh;
}
#cookie-dialog::backdrop {
  background: #15210f77;
}
#cookie-dialog label {
  display: block;
  margin: 25px 0;
}
#cookie-dialog input {
  width: auto;
  margin-right: 8px;
}
button[data-cookie-settings] {
  font: inherit;
  font-size: 12px;
  color: inherit;
  border: 0;
  background: none;
  text-decoration: underline;
  cursor: pointer;
  padding: 8px;
}
.privacy-footer {
  padding: 15px;
  text-align: center;
  background: #f7f5ef;
  color: #34302f;
  font:
    12px Arial,
    sans-serif;
}
.privacy-footer a {
  color: inherit;
}
@media (max-width: 800px) {
  #cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 20px;
    display: block;
    max-height: 80vh;
    overflow: auto;
  }
  .cookie-actions {
    margin-top: 15px;
    max-width: none;
  }
  #cookie-banner button {
    flex: 1;
  }
}
