:root {
  --sustraiak-green: #2f6159;
  --sustraiak-green-dark: #214740;
  --sustraiak-paper: #fffdf7;
  --sustraiak-ink: #182523;
}

.sustraiak-consent[hidden] { display: none !important; }

.sustraiak-consent {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 24, 21, .58);
}

.sustraiak-consent__card {
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 18px;
  background: var(--sustraiak-paper);
  color: var(--sustraiak-ink);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .28);
}

.sustraiak-consent__card h2 { margin: 0 0 12px; font-size: clamp(1.35rem, 3vw, 1.8rem); }
.sustraiak-consent__card p { margin: 0 0 14px; line-height: 1.55; }
.sustraiak-consent__links { display: flex; flex-wrap: wrap; gap: 16px; }
.sustraiak-consent__links a { color: var(--sustraiak-green-dark); text-decoration: underline; }

.sustraiak-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sustraiak-consent button {
  min-height: 44px;
  padding: 11px 18px;
  border: 2px solid var(--sustraiak-green);
  border-radius: 999px;
  background: var(--sustraiak-green);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.sustraiak-consent button.is-secondary { background: transparent; color: var(--sustraiak-green-dark); }
.sustraiak-consent button.is-link { border-color: transparent; background: transparent; color: var(--sustraiak-green-dark); text-decoration: underline; }
.sustraiak-consent button:focus-visible,
.sustraiak-consent-reopen:focus-visible { outline: 3px solid #f1bf42; outline-offset: 3px; }

.sustraiak-consent__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(24, 37, 35, .18);
}

.sustraiak-consent__option label span,
.sustraiak-consent__option p { display: block; margin: 5px 0 0; font-size: .94rem; }
.sustraiak-consent__option input { width: 24px; height: 24px; flex: 0 0 auto; accent-color: var(--sustraiak-green); }

.sustraiak-consent-reopen {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 99990;
  padding: 8px 12px;
  border: 1px solid var(--sustraiak-green);
  border-radius: 999px;
  background: var(--sustraiak-paper);
  color: var(--sustraiak-green-dark);
  font: inherit;
  font-size: .78rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .14);
}

@media (max-width: 560px) {
  .sustraiak-consent { padding: 10px; }
  .sustraiak-consent__actions { flex-direction: column; }
  .sustraiak-consent__actions button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .sustraiak-consent *, .sustraiak-consent-reopen { scroll-behavior: auto; transition: none !important; }
}

