/* Cookie consent + returning visitor reminder banners */
.pm-cookie-banner,
.pm-remind-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  bottom: calc(var(--pm-dock-offset, 5.25rem) + var(--fs-sticky-extra, 0px) + 0.75rem);
  z-index: 8600;
  width: min(560px, calc(100vw - 1.5rem));
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 238, 0.35);
  background: rgba(6, 8, 18, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 32px rgba(0, 212, 238, 0.1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  opacity: 0;
}

.pm-cookie-banner.is-visible,
.pm-remind-banner.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.pm-cookie-banner-text,
.pm-remind-text {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(244, 244, 250, 0.88);
}

.pm-cookie-banner-actions,
.pm-remind-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.pm-remind-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem 0.75rem;
  align-items: center;
  border-color: rgba(232, 50, 138, 0.35);
}

.pm-remind-banner .pm-remind-text {
  margin: 0;
  grid-column: 2;
}

.pm-remind-actions {
  grid-column: 2 / -1;
  justify-content: flex-start;
}

.pm-remind-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.55);
  animation: liveDemandPulse 2s ease-in-out infinite;
}

.pm-remind-close {
  border: none;
  background: none;
  color: rgba(244, 244, 250, 0.55);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

@media (max-width: 520px) {
  .pm-remind-banner {
    grid-template-columns: auto 1fr;
  }

  .pm-remind-actions {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
  }

  .pm-remind-actions .btn {
    width: 100%;
  }
}
