/* ══════════════════════════════════════════════════════
   COOKIE / ANALYTICS CONSENT BANNER
   ══════════════════════════════════════════════════════
   Fixed-bottom banner that appears on first visit. Hidden
   once the user accepts or declines. Styling deliberately
   restrained to avoid stealing focus from the main page. */

#wp-consent-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--lp-border, #E5E7EB);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lp-text, #111827);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 720px) {
  #wp-consent-banner {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

#wp-consent-text {
  flex: 1;
  margin: 0;
}

#wp-consent-text a {
  color: var(--lp-accent, #4361ee);
  text-decoration: underline;
}

#wp-consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

#wp-consent-banner button {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

#wp-consent-accept {
  background: var(--lp-accent, #4361ee);
  color: #fff;
}
#wp-consent-accept:hover {
  background: var(--lp-accent-hover, #3a56d4);
}

#wp-consent-reject {
  background: #fff;
  color: var(--lp-text-muted, #6B7280);
  border-color: var(--lp-border, #E5E7EB);
}
#wp-consent-reject:hover {
  border-color: var(--lp-text-muted, #6B7280);
  color: var(--lp-text, #111827);
}
