.aw-cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 720px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
  font-family: var(--body);
  transform: translateY(140%);
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}
.aw-cookie-banner.in { transform: translateY(0); }
.aw-cookie-banner p {
  flex: 1 1 280px;
  font-size: .92rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--cream) 88%, transparent);
  margin: 0;
}
.aw-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.aw-cookie-actions button {
  font: inherit;
  font-weight: 700;
  font-size: .86rem;
  padding: 11px 20px;
  border-radius: 100px;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}
.aw-cookie-actions button:hover { transform: translateY(-1px); filter: brightness(1.05); }
/* Fixed colors, not var(--accent)/var(--accent-ink) — some pages (e.g.
   elakai-case-study.html) redefine --accent per-section without a paired
   --accent-ink, which would leave this button with no reliable contrast. */
.aw-cookie-accept { background: #45ce68; color: #0d2417; }
.aw-cookie-decline { background: color-mix(in srgb, var(--cream) 12%, transparent); color: var(--cream); }

@media (max-width: 560px) {
  .aw-cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
}
