.consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 22px;
  background: rgba(15, 12, 40, 0.94);
  color: #f7ecdf;
  border-radius: 8px;
  box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.6);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.consent__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.consent__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(247, 236, 223, 0.92);
}
.consent__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.consent__btn {
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: 4px;
  border: 1px solid rgba(247, 236, 223, 0.4);
  background: transparent;
  color: #f7ecdf;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.consent__btn--decline:hover,
.consent__btn--decline:focus-visible {
  background: rgba(247, 236, 223, 0.08);
  outline: none;
}
.consent__btn--accept {
  background: #ae3838;
  border-color: #ae3838;
}
.consent__btn--accept:hover,
.consent__btn--accept:focus-visible {
  background: #c64545;
  border-color: #c64545;
  outline: none;
}

/* Sit just above the deslaube fixed CTA bar so neither overlaps */
.consent {
  bottom: calc(var(--cta-h, 0px) + 16px);
}
@media (max-width: 720px) {
  .consent {
    left: 10px;
    right: 10px;
    bottom: calc(var(--cta-h, 0px) + 12px);
    padding: 14px 16px;
  }
  .consent__text { font-size: 12.5px; }
  .consent__btn { font-size: 12.5px; padding: 8px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .consent { transition: none; }
}
