.ds-cookie-banner {
  position: fixed;
  z-index: 9999;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 680px;
  margin-inline: auto;
  padding: 1rem;
  color: #f7f3ee;
  background: #171717;
  border: 1px solid #3b3b3b;
  box-shadow: 0 16px 50px rgb(0 0 0 / 28%);
  font: 0.875rem/1.5 Arial, sans-serif;
}

.ds-cookie-banner[hidden] {
  display: none;
}

.ds-cookie-banner p {
  margin: 0 0 0.9rem;
}

.ds-cookie-banner a {
  color: inherit;
  text-underline-offset: 3px;
}

.ds-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ds-cookie-actions button,
.ds-cookie-settings {
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: transparent;
  border: 1px solid #777;
  font: 700 0.78rem/1 Arial, sans-serif;
  cursor: pointer;
}

.ds-cookie-actions [data-cookie-accept] {
  background: #9b2450;
  border-color: #9b2450;
}

.ds-cookie-settings {
  position: fixed;
  z-index: 9998;
  right: 0.75rem;
  bottom: 0.75rem;
  min-height: 36px;
  padding: 0.5rem 0.7rem;
  color: #222;
  background: #fff;
  border-color: #aaa;
  box-shadow: 0 4px 18px rgb(0 0 0 / 16%);
}

@media (min-width: 720px) {
  .ds-cookie-banner {
    right: 1.5rem;
    bottom: 1.5rem;
    left: auto;
    width: min(520px, calc(100vw - 3rem));
    margin: 0;
    padding: 1.25rem;
  }
}

