/* Public reservation helper — park yellow / black. Staff theme does not apply. */
.res-assist {
  --ra-ink: #111;
  --ra-paper: #fffdf6;
  --ra-yellow: #f1c40f;
  --ra-yellow-deep: #c9a006;
  --ra-panel: #1a1a1a;
  --ra-line: rgba(255, 255, 255, .14);
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 80;
  font-family: Lato, "Segoe UI", sans-serif;
  pointer-events: none;
}
.res-assist * { box-sizing: border-box; }
.res-assist-panel,
.res-assist-launch {
  pointer-events: auto;
}

.res-assist-launch {
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  background: var(--ra-yellow);
  color: var(--ra-ink);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 8px;
}
.res-assist-launch svg {
  width: 52px;
  height: 36px;
}
.res-assist-launch:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.res-assist-panel {
  width: min(340px, calc(100vw - 24px));
  margin-bottom: 10px;
  background: var(--ra-panel);
  color: #f6f1e4;
  border: 1px solid var(--ra-line);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
  overflow: hidden;
}
.res-assist-panel[hidden],
.res-assist-launch[hidden] { display: none !important; }

.res-assist-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem .85rem .55rem;
  border-bottom: 1px solid var(--ra-line);
}
.res-assist-head-ico {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ra-yellow);
  display: grid;
  place-items: center;
}
.res-assist-head-ico svg { width: 38px; height: 26px; }
.res-assist-head strong {
  display: block;
  font-size: .95rem;
  letter-spacing: .01em;
}
.res-assist-head span {
  display: block;
  font-size: .75rem;
  color: #c8c0b0;
}
.res-assist-min {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #c8c0b0;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: .15rem .35rem;
}

.res-assist-body {
  padding: .85rem;
  font-size: .95rem;
  line-height: 1.45;
}
.res-assist-body p { margin: 0 0 .75rem; }
.res-assist-body p:last-child { margin-bottom: 0; }

.res-assist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 0 .85rem .9rem;
}
.res-assist-actions .ra-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: .55rem .95rem;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
}
.res-assist-actions .ra-btn-yes,
.res-assist-actions .ra-btn-next {
  background: var(--ra-yellow);
  color: var(--ra-ink);
}
.res-assist-actions .ra-btn-no,
.res-assist-actions .ra-btn-back {
  background: #2c2c2c;
  color: #f6f1e4;
  border: 1px solid var(--ra-line);
}

.res-assist-progress {
  padding: 0 .85rem .35rem;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #c8c0b0;
}

.res-assist-spot {
  outline: 3px solid var(--ra-yellow) !important;
  outline-offset: 3px;
  border-radius: 6px;
  scroll-margin-bottom: 180px;
}

@media (max-width: 520px) {
  .res-assist-launch { width: 60px; height: 60px; }
  .res-assist-panel { width: min(100vw - 20px, 340px); }
}
