/* Animated Website analytics consent banner */
.aw-cookie-banner {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 2147483000;
  width: min(420px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(10,10,12,.78);
  color: #fff;
  box-shadow: 0 24px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.aw-cookie-banner[hidden] { display: none !important; }
.aw-cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: -.01em;
}
.aw-cookie-banner p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}
.aw-cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.aw-cookie-actions button {
  flex: 1;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}
.aw-cookie-accept {
  background: #fff;
  color: #050505;
}
.aw-cookie-reject {
  background: rgba(255,255,255,.08);
  color: #fff;
}
@media (max-width: 560px) {
  .aw-cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    border-radius: 18px;
  }
  .aw-cookie-actions { flex-direction: column; }
}
