/* Why Knot Me — analytics consent bar (desktop + mobile) */
.wkm-ga-consent {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 960;
  pointer-events: none;
  font-family: "DM Sans", system-ui, sans-serif;
}

.wkm-ga-consent__inner {
  pointer-events: auto;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(245, 242, 255, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(13, 11, 20, 0.92);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  color: #f5f2ff;
}

.wkm-ga-consent__copy {
  flex: 1 1 240px;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #b8b2d6;
}

.wkm-ga-consent__link {
  color: #c084fc;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wkm-ga-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wkm-ga-consent__btn {
  appearance: none;
  border-radius: 999px;
  min-height: 40px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.wkm-ga-consent__btn--ghost {
  border: 1px solid rgba(245, 242, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #f5f2ff;
}

.wkm-ga-consent__btn--primary {
  border: 0;
  color: #0d0b14;
  background: linear-gradient(135deg, #7b5cfa, #c084fc);
}

.wkm-ga-consent__btn:focus-visible {
  outline: 2px solid #7b5cfa;
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .wkm-ga-consent {
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .wkm-ga-consent__btn {
    flex: 1 1 auto;
  }
}
