/* Fixed cookie consent bar — above Libertine footer stacking. */
.burger-cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  padding: 1rem 1.25rem;
  background: rgba(26, 26, 26, 0.96);
  color: #f5f5f5;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  font-family: Karla, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.burger-cookie-notice__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.burger-cookie-notice__text {
  margin: 0;
  flex: 1 1 16rem;
  max-width: 48rem;
}

.burger-cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.burger-cookie-notice__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.burger-cookie-notice__link:hover,
.burger-cookie-notice__link:focus {
  color: #e8e8e8;
}

.burger-cookie-notice__accept {
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  padding: 0.55rem 1.25rem;
  font: inherit;
  font-weight: 600;
  background: #fff;
  color: #1a1a1a;
}

.burger-cookie-notice__accept:hover,
.burger-cookie-notice__accept:focus {
  background: #e8e8e8;
}

.burger-cookie-notice__accept:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .burger-cookie-notice__accept {
    transition: none;
  }
}
