/* ParksRadar — shared floating/sticky park action header (Chat 2).
   Sticky so it reserves its own space and never covers content; mobile-safe; high-contrast;
   visible keyboard focus. Colors match the site's warm palette with AA-contrast text. */

.pr-action-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end; /* single authoritative cluster, aligned top-right (2026-07-21) */
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 12px;
  background: #fffdf8;
  border-bottom: 1px solid #e6d6ba;
  box-shadow: 0 2px 8px rgba(64, 47, 29, 0.06);
}

/* hide scrollbar chrome but keep it scrollable on small screens */
.pr-action-header::-webkit-scrollbar { height: 0; }

.pr-action-btn {
  flex: 0 0 auto;
  font: 700 13.5px system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: #fff;
  background: #7a4e26;
  border: 1px solid #6b4220;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s ease, transform 0.06s ease;
}
.pr-action-btn:hover { background: #6b4220; }
.pr-action-btn:active { transform: translateY(1px); }

/* high-visibility keyboard focus */
.pr-action-btn:focus-visible {
  outline: 3px solid #2f8f57;
  outline-offset: 2px;
}

/* coming-soon: clearly secondary, still legible (AA), not a dead/disabled grey */
.pr-action-btn--soon {
  background: #f3ead9;
  color: #6b4220;
  border-color: #d9c39c;
  cursor: default;
}
.pr-action-btn--soon:hover { background: #ece0c9; }

/* Get tickets is the primary commerce action — slightly stronger accent */
.pr-action-btn--tickets { background: #b1521f; border-color: #97441a; }
.pr-action-btn--tickets:hover { background: #97441a; }

@media (max-width: 520px) {
  .pr-action-header { padding: 7px 10px; gap: 6px; }
  .pr-action-btn { padding: 7px 13px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .pr-action-btn { transition: none; }
}
