/* Native app parity shell. Android BeanDesignTokens.kt is the source of truth. */
:root {
  --rb-app-navy: #08243e;
  --rb-app-navy-deep: #03182c;
  --rb-app-blue: #137fd0;
  --rb-app-cyan: #22b8f2;
  --rb-app-tagline-blue: #45c6f4;
  --rb-app-cream: #fff6e8;
  --rb-app-gold: #ffd58d;
  --rb-app-gold-strong: #e6ae55;
  --rb-app-ink: #102d49;
  --rb-app-green: #1d7842;
  --rb-app-red: #b53a3a;
  --rb-app-muted: #c7dae8;
  --rb-app-space-1: 4px;
  --rb-app-space-2: 8px;
  --rb-app-space-3: 12px;
  --rb-app-space-4: 16px;
  --rb-app-space-5: 24px;
  --rb-app-radius-compact: 12px;
  --rb-app-radius-button: 16px;
  --rb-app-radius-panel: 18px;
  --rb-app-radius-card: 20px;
  --rb-app-radius-nav: 24px;
  --rb-app-radius-hero: 28px;
  --rb-app-nav-height: 72px;
  --rb-app-touch-target: 48px;
  --rb-app-motion-fast: 160ms;
  --rb-app-motion-standard: 220ms;
  --rb-app-motion-emphasis: 240ms;
  --rb-app-shadow-card: 0 8px 22px rgba(0, 0, 0, .26);
  --rb-app-shadow-raised: 0 10px 30px rgba(0, 0, 0, .32);
  --rb-app-shadow-nav: 0 16px 38px rgba(0, 0, 0, .48);
  --rb-app-wavy-surface: url("assets/schedule-wavy-stripes.webp");
  --rb-app-safe-top: env(safe-area-inset-top, 0px);
  --rb-app-safe-right: env(safe-area-inset-right, 0px);
  --rb-app-safe-bottom: env(safe-area-inset-bottom, 0px);
  --rb-app-safe-left: env(safe-area-inset-left, 0px);
  --rb-app-nav-bottom-gap: max(8px, var(--rb-app-safe-bottom));
  --rb-app-bottom-clearance: calc(var(--rb-app-nav-height) + var(--rb-app-nav-bottom-gap));
}

html {
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden !important;
  overscroll-behavior: none;
  background: var(--rb-app-navy-deep) url("assets/epic-coffee-beans-bg.webp") center / cover no-repeat !important;
  color-scheme: dark;
}

body.rb-app-parity {
  position: fixed !important;
  inset: 0 !important;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden;
  background: transparent !important;
  color: var(--rb-app-cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: contain;
}

body.rb-app-parity .bean-photo-bg {
  position: fixed;
  inset: calc(-1 * var(--rb-app-safe-top)) calc(-1 * var(--rb-app-safe-right)) calc(-1 * var(--rb-app-safe-bottom)) calc(-1 * var(--rb-app-safe-left)) !important;
  width: auto;
  height: auto;
  min-height: calc(100dvh + var(--rb-app-safe-top) + var(--rb-app-safe-bottom));
  opacity: .96;
  background-color: var(--rb-app-navy-deep);
  background-position: center;
  background-size: cover;
}

body.rb-app-parity .ambient-glow,
body.rb-app-parity .grain {
  display: none;
}

body.rb-app-parity .app-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 720px) !important;
  max-width: 720px !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  margin: 0 auto;
  padding: 0 12px var(--rb-app-bottom-clearance);
  padding-top: 0 !important;
  padding-bottom: var(--rb-app-bottom-clearance) !important;
  overflow: hidden;
  box-sizing: border-box;
}

.rb-app-screen {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: max(12px, var(--rb-app-safe-top)) 0 8px;
  scroll-padding-top: max(12px, var(--rb-app-safe-top));
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  overscroll-behavior: contain;
  scrollbar-width: none;
  outline: none;
  animation: rb-screen-enter 240ms cubic-bezier(.2, .75, .24, 1) both;
}

.rb-app-screen::-webkit-scrollbar {
  display: none;
}

.rb-app-screen[hidden] {
  display: none !important;
}

@keyframes rb-screen-enter {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.rb-bottom-nav {
  --rb-nav-index: 0;
  position: fixed;
  z-index: 800;
  left: 50%;
  bottom: var(--rb-app-nav-bottom-gap);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(calc(100% - 20px), 610px);
  height: var(--rb-app-nav-height);
  padding: 5px;
  transform: translateX(-50%);
  border: 1px solid rgba(117, 201, 241, .56);
  border-radius: var(--rb-app-radius-nav);
  background: rgba(3, 24, 44, .98);
  box-shadow: var(--rb-app-shadow-nav);
  box-sizing: border-box;
  isolation: isolate;
}

.rb-bottom-nav-selector {
  position: absolute;
  z-index: -1;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc((100% - 10px) / 5);
  transform: translateX(calc(var(--rb-nav-index) * 100%));
  border: 1px solid rgba(255, 255, 255, .84);
  border-radius: 19px;
  background: linear-gradient(180deg, var(--rb-app-gold), rgba(230, 174, 85, .96));
  box-shadow: var(--rb-app-shadow-card);
  transition: transform 240ms cubic-bezier(.2, .75, .24, 1);
}

.rb-bottom-nav-item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 62px;
  padding: 6px 2px 4px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--rb-app-muted);
  font: 800 10px/12px Inter, system-ui, sans-serif;
  letter-spacing: 0;
  cursor: pointer;
  touch-action: manipulation;
}

.rb-bottom-nav-item[aria-selected="true"] {
  color: var(--rb-app-ink);
}

.rb-bottom-nav-item:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -3px;
}

.rb-bottom-nav-item:active .rb-nav-medallion {
  transform: scale(.92);
}

.rb-nav-medallion {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--rb-app-cyan);
  border-radius: 50%;
  background: var(--rb-app-blue);
  box-shadow: 0 0 0 3px var(--rb-app-cream), 0 0 0 4px rgba(34, 184, 242, .72);
  transition: transform 160ms ease;
}

.rb-nav-medallion svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rb-nav-medallion .rb-nav-icon-cutout,
.rb-header-icon-cutout {
  fill: none;
  stroke: var(--rb-app-blue);
  stroke-width: 2.2;
}

.rb-nav-nearby-medallion {
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.rb-nav-pin-cluster,
.rb-header-pin-cluster {
  position: relative;
  display: block;
  width: 27px;
  height: 25px;
}

.rb-nav-nearby-medallion .rb-nav-pin-cluster {
  width: 100%;
  height: 100%;
}

.rb-nav-pin-cluster img,
.rb-header-pin-cluster img {
  position: absolute;
  width: 17px;
  height: 22px;
  object-fit: contain;
}

.rb-nav-pin-cluster .rb-android-nearby-icon,
.rb-header-pin-cluster .rb-android-nearby-icon {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  transform: none !important;
}

.rb-nav-pin-cluster img:nth-child(1),
.rb-header-pin-cluster img:nth-child(1) { left: 0; top: 5px; transform: rotate(-7deg); }
.rb-nav-pin-cluster img:nth-child(2),
.rb-header-pin-cluster img:nth-child(2) { left: 5px; top: 0; z-index: 3; }
.rb-nav-pin-cluster img:nth-child(3),
.rb-header-pin-cluster img:nth-child(3) { right: 0; top: 5px; transform: rotate(7deg); }

.rb-bottom-nav-badge {
  position: absolute;
  top: 1px;
  left: calc(50% + 8px);
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 2px solid var(--rb-app-navy-deep);
  border-radius: 999px;
  background: #fff;
  color: var(--rb-app-ink);
  font-size: 10px;
  line-height: 14px;
  text-align: center;
}

.rb-bottom-nav-badge.has-notifications {
  border-color: #fff;
  background: #d82f3f;
  color: #fff;
  box-shadow: 0 3px 9px rgba(125, 12, 29, .42);
  font-weight: 900;
}

.rb-screen-header {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 12px;
  margin: 0 0 14px;
  padding: 14px 16px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(117, 201, 241, .28);
  border-radius: var(--rb-app-radius-card);
  background: linear-gradient(90deg, rgba(3, 24, 44, .94), rgba(8, 36, 62, .70), rgba(3, 24, 44, .56));
  box-shadow: var(--rb-app-shadow-card);
  backdrop-filter: blur(12px);
}

.rb-screen-header-icon,
.rb-screen-header > .rb-header-pin-cluster {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--rb-app-cyan);
  border-radius: 50%;
  background: var(--rb-app-blue);
  box-shadow: 0 0 0 5px var(--rb-app-cream), 0 0 0 7px rgba(34, 184, 242, .75);
}

.rb-screen-header > .rb-header-pin-cluster {
  position: relative;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.rb-screen-header > .rb-header-pin-cluster img {
  width: 27px;
  height: 34px;
}

.rb-screen-header > .rb-header-pin-cluster img:nth-child(1) { left: 2px; top: 19px; }
.rb-screen-header > .rb-header-pin-cluster img:nth-child(2) { left: 15px; top: 3px; }
.rb-screen-header > .rb-header-pin-cluster img:nth-child(3) { right: 2px; top: 19px; }

.rb-screen-header-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rb-screen-header-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.rb-screen-kicker,
.rb-section-title {
  margin: 0;
  color: var(--rb-app-cyan);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rb-screen-kicker {
  font-size: 12px;
  line-height: 15px;
}

.rb-screen-header h1 {
  margin: 1px 0 2px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 9vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0;
}

.rb-screen-description {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 17px;
}

.rb-section-title {
  padding: 2px 0 9px;
  font-size: 15px;
  line-height: 19px;
}

/* Home mirrors the Compose hierarchy without replacing working controls. */
body.rb-app-parity .rb-app-screen-home .hero-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  gap: 10px;
  width: 100% !important;
  margin: 0 0 12px !important;
  padding: 14px 12px 13px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 213, 141, .68) !important;
  border-radius: var(--rb-app-radius-hero) !important;
  background: linear-gradient(180deg, rgba(8, 36, 62, .98), rgba(3, 24, 44, .98)) !important;
  box-shadow: var(--rb-app-shadow-raised) !important;
}

body.rb-app-parity .hero-card::before,
body.rb-app-parity .hero-card::after,
body.rb-app-parity .hero-shine,
body.rb-app-parity .steam-wrap {
  display: none !important;
}

body.rb-app-parity .hero-lockup-zone,
body.rb-app-parity .hero-info-control,
body.rb-app-parity .hero-actions {
  display: contents !important;
}

body.rb-app-parity .hero-brand-logo {
  order: 1;
  grid-column: 1 / -1;
  justify-self: center;
  width: min(70vw, 279px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: visible !important;
}

body.rb-app-parity .hero-brand-logo .inline-brand-mark {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  border-radius: 24px !important;
  object-fit: contain !important;
}

body.rb-app-parity .hero-award-badge {
  width: 54px !important;
  height: 54px !important;
  right: 6px !important;
  top: 7px !important;
}

body.rb-app-parity .hero-lockup {
  order: 2;
  grid-column: 1 / -1;
  display: flex !important;
  width: max-content !important;
  max-width: 100% !important;
  margin: 1px 0 4px !important;
  justify-self: center !important;
  align-items: baseline;
  justify-content: center;
  gap: clamp(5px, 2vw, 10px);
  color: var(--rb-app-cream);
  font-family: Inter, system-ui, sans-serif !important;
  font-size: clamp(.87rem, 4vw, 1.08rem) !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

body.rb-app-parity .hero-lockup span {
  display: inline !important;
  width: auto !important;
  margin: 0 !important;
  font: inherit !important;
  letter-spacing: 0 !important;
}

body.rb-app-parity .hero-lockup-accent {
  color: var(--rb-app-tagline-blue) !important;
}

body.rb-app-parity #locateBtn {
  order: 3;
  grid-column: 1 / -1;
  min-height: 64px;
  border: 0 !important;
  border-radius: 17px !important;
  background: var(--rb-app-cyan) !important;
  color: var(--rb-app-ink) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22) !important;
}

body.rb-app-parity #heroMenuButton {
  order: 4;
  grid-column: 1 !important;
  width: 100% !important;
  min-height: 58px;
  margin: 0 !important;
  border: 1px solid var(--rb-app-gold) !important;
  border-radius: 17px !important;
  background: rgba(3, 24, 44, .96) !important;
  color: #fff !important;
  box-shadow: none !important;
  gap: 11px !important;
  padding-inline: 13px !important;
}

body.rb-app-parity #allMapBtn {
  order: 5;
  grid-column: 2 !important;
  width: 100% !important;
  min-height: 58px;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 17px !important;
  background: var(--rb-app-cyan) !important;
  color: var(--rb-app-ink) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 8px 12px 8px 10px !important;
}

body.rb-app-parity #allMapBtn > span:nth-child(2) {
  flex: 0 1 auto !important;
  min-width: 0 !important;
  text-align: center !important;
}

body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster {
  position: relative !important;
  width: 46px !important;
  min-width: 46px !important;
  height: 40px !important;
  overflow: visible !important;
}

body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster::before,
body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster::after {
  content: none !important;
  display: none !important;
}

body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster img {
  position: absolute !important;
  width: 22px !important;
  height: 30px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 4px 5px rgba(3, 20, 38, .22));
}

body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster img:nth-child(1) {
  left: 0 !important;
  top: 10px !important;
  z-index: 1 !important;
  transform: rotate(-10deg) !important;
}

body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster img:nth-child(2) {
  left: 12px !important;
  top: 0 !important;
  z-index: 3 !important;
  transform: none !important;
}

body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster img:nth-child(3) {
  left: 24px !important;
  top: 10px !important;
  z-index: 2 !important;
  transform: rotate(10deg) !important;
}

body.rb-app-parity #allMapBtn .btn-chevron {
  display: none !important;
}

body.rb-app-parity #heroMenuButton .hero-pill-icon {
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
  background: var(--rb-app-blue) !important;
  box-shadow: 0 0 0 3px var(--rb-app-cream), 0 0 0 4px var(--rb-app-cyan) !important;
}

body.rb-app-parity #heroMenuButton .hero-pill-label,
body.rb-app-parity #allMapBtn strong {
  font-size: 15px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  letter-spacing: 0 !important;
}

body.rb-app-parity #allMapBtn small {
  display: none;
}

body.rb-app-parity #heroInfoButton,
body.rb-app-parity #heroSaveButton {
  display: none !important;
}

body.rb-app-parity #statusText {
  order: 6;
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  padding: 2px 4px 0;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 15px;
}

body.rb-app-parity .rb-app-screen-home .summary-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin: 0 0 14px !important;
}

@keyframes rb-app-home-day-refresh {
  from {
    opacity: .28;
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

html:not(.rb-motion-off) body.rb-app-parity.rb-day-switching.rb-day-switch-next .rb-app-screen-home .summary-grid,
html:not(.rb-motion-off) body.rb-app-parity.rb-day-switching.rb-day-switch-prev .rb-app-screen-home .summary-grid {
  animation: rb-app-home-day-refresh 360ms cubic-bezier(.2, .82, .28, 1) both !important;
}

body.rb-app-parity .rb-app-screen-home .summary-schedule,
body.rb-app-parity .rb-app-screen-home .summary-stops {
  grid-column: auto !important;
}

body.rb-app-parity .rb-app-screen-home .summary-card {
  min-width: 0 !important;
  min-height: 118px !important;
  padding: 12px 10px 39px !important;
  border: 1px solid rgba(117, 201, 241, .34) !important;
  border-radius: var(--rb-app-radius-card) !important;
  background: linear-gradient(180deg, rgba(10, 44, 73, .97), rgba(8, 36, 62, .97)) !important;
  box-shadow: var(--rb-app-shadow-card) !important;
}

@media (hover: hover) and (pointer: fine) {
  body.rb-app-parity .rb-app-screen-home .schedule-picker-card:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.05) saturate(1.03) !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .30), inset 0 1px 0 rgba(255, 255, 255, .10) !important;
  }
}

body.rb-app-parity .rb-app-screen-home .summary-status,
body.rb-app-parity .rb-app-screen-home .closest-card,
body.rb-app-parity .rb-app-screen-home .summary-icon {
  display: none !important;
}

body.rb-app-parity .rb-app-screen-home .schedule-picker-card,
body.rb-app-parity .rb-app-screen-home .summary-stops {
  cursor: pointer;
}

body.rb-app-parity .rb-app-screen-home .schedule-picker-hint,
body.rb-app-parity .rb-app-screen-home .rb-summary-action {
  position: absolute !important;
  right: 8px !important;
  bottom: 8px !important;
  left: 8px !important;
  display: flex !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 25px !important;
  margin: 0 !important;
  padding: 4px 7px 4px 10px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, .66) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, var(--rb-app-gold), var(--rb-app-gold-strong)) !important;
  color: var(--rb-app-ink) !important;
  box-shadow: 0 4px 10px rgba(3, 24, 44, .26), inset 0 1px 0 rgba(255, 255, 255, .66) !important;
  font-size: 10px !important;
  line-height: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

body.rb-app-parity .rb-app-screen-home .schedule-picker-hint-icon,
body.rb-app-parity .rb-app-screen-home .rb-summary-action-chevron {
  display: grid !important;
  width: 15px !important;
  min-width: 15px !important;
  height: 15px !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--rb-app-blue) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

body.rb-app-parity .rb-app-screen-home .schedule-picker-hint-icon svg {
  width: 10px !important;
  height: 10px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.5 !important;
}

body.rb-app-parity .rb-app-screen-home .summary-stops:focus-visible,
body.rb-app-parity .rb-app-screen-home .schedule-picker-card:focus-visible {
  outline: 3px solid var(--rb-app-cyan) !important;
  outline-offset: 3px !important;
}

body.rb-app-parity .rb-app-screen-home .summary-card .mini-label {
  color: var(--rb-app-cyan) !important;
  font-size: 10px !important;
  line-height: 13px !important;
  font-weight: 900 !important;
}

body.rb-app-parity .rb-app-screen-home .summary-card h2 {
  margin: 4px 0 0 !important;
  color: #fff !important;
  font-size: clamp(1.35rem, 7vw, 1.8rem) !important;
  line-height: 1.05 !important;
}

body.rb-app-parity .rb-app-screen-home .summary-date {
  color: rgba(255, 255, 255, .72) !important;
  font-size: 12px !important;
}

.rb-home-featured {
  margin-top: 2px;
}

.rb-home-featured-card:empty {
  display: none;
}

body.rb-app-parity .rb-featured-stop-card {
  margin: 0 !important;
  box-shadow: var(--rb-app-shadow-card) !important;
}

/* Stops */
.rb-stops-schedule-header {
  margin: 0 0 12px;
  overflow: visible;
  border: 1px solid rgba(117, 201, 241, .32);
  border-radius: var(--rb-app-radius-card);
  background: rgba(3, 24, 44, .88);
  box-shadow: var(--rb-app-shadow-card);
}

.rb-stops-sticky-stack {
  position: sticky;
  z-index: 700;
  top: 0;
  padding: 0 0 2px;
  isolation: isolate;
}

.rb-stops-sticky-stack::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -8px -4px 0;
  background: linear-gradient(180deg, rgba(3, 24, 44, .98) 0%, rgba(3, 24, 44, .94) 88%, rgba(3, 24, 44, 0) 100%);
  pointer-events: none;
}

.rb-app-screen-nearby > .rb-screen-header,
.rb-app-screen-saved > .rb-screen-header {
  position: sticky;
  z-index: 700;
  top: 0;
}

.rb-stops-schedule-artwork-stage {
  padding: 9px 8px 3px;
  overflow: visible;
  border-radius: inherit;
}

.rb-stops-schedule-header img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 4.05 / 1;
  object-fit: contain;
  background: var(--rb-app-wavy-surface) center / cover;
  border-radius: calc(var(--rb-app-radius-card) - 5px);
}

.rb-stops-schedule-header p {
  margin: 0;
  padding: 8px 12px 10px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  line-height: 18px;
  text-align: center;
}

.rb-schedule-day-strip {
  display: flex;
  gap: 8px;
  width: 100%;
  margin: 0 0 12px;
  padding: 5px 2px 7px;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  box-sizing: border-box;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: inline proximity;
  cursor: grab;
}

.rb-schedule-day-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.rb-schedule-day-strip::-webkit-scrollbar { display: none; }

.rb-day-chip {
  display: flex;
  min-width: max-content;
  min-height: 52px;
  padding: 9px 15px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid rgba(117, 201, 241, .34);
  border-radius: var(--rb-app-radius-button);
  background: rgba(8, 36, 62, .96);
  color: #fff;
  font: inherit;
  cursor: pointer;
  transform-origin: center;
  transition: transform var(--rb-app-motion-fast) ease, border-color var(--rb-app-motion-fast) ease, box-shadow var(--rb-app-motion-fast) ease;
}

.rb-day-chip strong { font-size: 14px; line-height: 17px; }
.rb-day-chip small { color: rgba(255, 255, 255, .66); font-size: 10px; line-height: 13px; }

.rb-day-chip.active {
  border-color: #fff;
  background: linear-gradient(180deg, var(--rb-app-gold), var(--rb-app-gold-strong));
  color: var(--rb-app-ink);
  box-shadow: 0 5px 12px rgba(3, 24, 44, .24), inset 0 1px 0 rgba(255, 255, 255, .72);
  animation: rb-day-chip-selected 260ms cubic-bezier(.2, .78, .24, 1) both;
}

.rb-day-chip.active small { color: rgba(16, 45, 73, .72); }

@keyframes rb-day-chip-selected {
  from { transform: translateY(1px) scale(.98); }
  to { transform: translateY(-1px) scale(1); }
}

.rb-stops-summary {
  display: flex;
  min-height: 78px;
  margin: 0 0 12px;
  padding: 14px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(117, 201, 241, .34);
  border-radius: var(--rb-app-radius-card);
  background: linear-gradient(180deg, rgba(10, 44, 73, .98), rgba(8, 36, 62, .98));
  box-shadow: var(--rb-app-shadow-card);
}

.rb-stops-summary > span:first-child { display: flex; min-width: 0; flex-direction: column; }
.rb-stops-summary strong { color: #fff; font-size: 20px; line-height: 25px; }
.rb-stops-summary small { color: rgba(255, 255, 255, .68); font-size: 12px; line-height: 16px; }

.rb-stops-summary-count {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--rb-app-gold);
  color: var(--rb-app-ink);
  font-size: 13px;
  font-weight: 900;
}

body.rb-app-parity .rb-app-screen-stops .results {
  display: grid !important;
  gap: 12px !important;
  margin: 0 !important;
}

body.rb-app-parity .rb-app-screen-stops .results[data-schedule-art]::before,
body.rb-app-parity .rb-app-screen-stops .results[data-schedule-art]::after {
  display: none !important;
  content: none !important;
}

body.rb-app-parity #results[data-schedule-art]::before,
body.rb-app-parity #results[data-schedule-art]::after {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  content: none !important;
}

body.rb-app-parity .rb-app-screen-stops .stop-card,
body.rb-app-parity .rb-featured-stop-card {
  border: 1px solid rgba(34, 184, 242, .65) !important;
  border-radius: var(--rb-app-radius-card) !important;
  background: var(--rb-app-wavy-surface) center / cover !important;
  color: var(--rb-app-ink) !important;
}

body.rb-app-parity .stop-card.coffee-art-card:not(.cancelled-card) {
  --rb-card-art-reserve: clamp(104px, 24vw, 132px);
}

body.rb-app-parity .stop-card.coffee-art-card:not(.cancelled-card) .stop-name,
body.rb-app-parity .stop-card.coffee-art-card:not(.cancelled-card) .stop-time,
body.rb-app-parity .stop-card.coffee-art-card:not(.cancelled-card) .stop-address,
body.rb-app-parity .stop-card.coffee-art-card:not(.cancelled-card) .stop-source {
  width: auto !important;
  max-width: calc(100% - var(--rb-card-art-reserve)) !important;
  overflow: visible !important;
  overflow-wrap: anywhere !important;
  white-space: normal !important;
  text-overflow: clip !important;
}

body.rb-app-parity .rb-featured-stop-card {
  --rb-card-art-reserve: clamp(126px, 28vw, 148px) !important;
  position: relative !important;
  isolation: isolate;
}

body.rb-app-parity .rb-featured-stop-card.coffee-art-card::after {
  content: none !important;
  display: none !important;
}

body.rb-app-parity .rb-featured-stop-card > .rb-featured-cup-trio {
  position: absolute !important;
  z-index: 1 !important;
  right: 18px !important;
  top: 54px !important;
  bottom: auto !important;
  display: block !important;
  width: clamp(122px, 27vw, 146px) !important;
  height: clamp(106px, 23vw, 128px) !important;
  pointer-events: none;
}

.rb-featured-cup-trio img {
  position: absolute;
  bottom: 0;
  width: 48%;
  height: 82%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 8px 8px rgba(74, 42, 12, .18));
}

.rb-featured-cup-trio img:nth-child(1) { left: 0; transform: rotate(-4deg); }
.rb-featured-cup-trio img:nth-child(2) { right: 0; transform: rotate(4deg); }
.rb-featured-cup-trio img:nth-child(3) { left: 26%; z-index: 2; width: 52%; height: 92%; }

body.rb-app-parity .stop-card .stop-name,
body.rb-app-parity .stop-card h3 {
  color: var(--rb-app-ink) !important;
}

body.rb-app-parity .stop-card .stop-time {
  color: #8c4f12 !important;
}

body.rb-app-parity .stop-card .stop-address {
  color: #51697e !important;
}

body.rb-app-parity .stop-card .save-stop-btn,
body.rb-app-parity .stop-card .calendar-stop-btn,
body.rb-app-parity .stop-card .share-stop-btn {
  min-height: 50px !important;
  border-radius: var(--rb-app-radius-button) !important;
}

body.rb-app-parity .stop-card .stop-actions {
  grid-template-columns: minmax(94px, .9fr) 56px minmax(132px, 1.34fr) !important;
}

body.rb-app-parity .stop-card .calendar-stop-btn,
body.rb-app-parity .stop-card .share-stop-btn,
body.rb-app-parity .stop-card .stop-actions.has-share-secondary .calendar-stop-btn {
  width: 56px !important;
  min-width: 56px !important;
  padding: 0 !important;
  justify-content: center !important;
  gap: 0 !important;
}

body.rb-app-parity .stop-card .calendar-stop-copy,
body.rb-app-parity .stop-card .share-stop-copy,
body.rb-app-parity .stop-card .stop-actions.has-share-secondary .calendar-stop-copy {
  display: none !important;
}

body.rb-app-parity .stop-card .route-main {
  min-height: 50px !important;
  border-radius: var(--rb-app-radius-button) !important;
  background: var(--rb-app-cyan) !important;
  color: var(--rb-app-ink) !important;
}

/* Nearby */
.rb-nearby-map-card {
  position: relative;
  height: clamp(260px, 70vw, 330px);
  margin: 0 0 12px;
  overflow: hidden;
  border: 2px solid var(--rb-app-cyan);
  border-radius: var(--rb-app-radius-card);
  background: rgba(3, 24, 44, .92);
  box-shadow: var(--rb-app-shadow-card);
}

body.rb-app-parity .rb-nearby-map-card .all-map-preview {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #e9eef1 !important;
}

body.rb-app-parity .all-map-preview .all-map-preview-empty {
  color: var(--rb-app-ink) !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .72) !important;
}

body.rb-app-parity .rb-nearby-map-card .all-pins-leaflet-map,
body.rb-app-parity .rb-nearby-map-card .all-pins-google-map,
body.rb-app-parity .rb-nearby-map-card .all-map-svg-fallback {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
}

body.rb-app-parity .rb-nearby-map-card .rb-map-cluster-icon {
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  background: transparent !important;
}

body.rb-app-parity .rb-nearby-map-card .rb-map-cluster-count {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 4px solid var(--rb-app-cyan);
  border-radius: 50%;
  outline: 3px solid var(--rb-app-cream);
  background: var(--rb-app-navy);
  color: #fff;
  box-shadow: 0 7px 16px rgba(3, 24, 44, .38), inset 0 0 0 2px rgba(255, 255, 255, .14);
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
}

body.rb-app-parity .rb-nearby-map-card .rb-map-cluster-icon:focus-visible .rb-map-cluster-count {
  outline: 4px solid #fff;
  outline-offset: 3px;
}

html:not(.rb-motion-off) body.rb-app-parity .rb-nearby-map-card .rb-map-cluster-count {
  transition: transform var(--rb-app-motion-standard) ease, box-shadow var(--rb-app-motion-standard) ease;
}

html:not(.rb-motion-off) body.rb-app-parity .rb-nearby-map-card .rb-map-cluster-icon:hover .rb-map-cluster-count {
  transform: scale(1.06);
  box-shadow: 0 9px 20px rgba(3, 24, 44, .46), inset 0 0 0 2px rgba(255, 255, 255, .18);
}

.rb-nearby-map-count {
  position: absolute;
  z-index: 550;
  top: 14px;
  left: 58px;
  max-width: calc(100% - 72px);
  padding: 10px 14px;
  border-radius: var(--rb-app-radius-compact);
  background: rgba(8, 36, 62, .94);
  color: #fff;
  box-shadow: var(--rb-app-shadow-card);
  font-size: 13px;
  line-height: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.rb-nearby-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.rb-command-group {
  overflow: hidden;
  border: 1px solid rgba(117, 201, 241, .34);
  border-radius: var(--rb-app-radius-card);
  background: linear-gradient(180deg, rgba(10, 44, 73, .98), rgba(8, 36, 62, .98));
  box-shadow: var(--rb-app-shadow-card);
}

.rb-command-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  width: 100%;
  min-height: 76px;
  padding: 10px 14px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: transparent;
  color: #fff;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.rb-command-group .rb-command-row:last-child { border-bottom: 0; }

.rb-nearby-actions .rb-command-row {
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 68px;
  padding: 8px 10px;
  gap: 8px;
  border: 1px solid var(--rb-app-cyan);
  border-radius: var(--rb-app-radius-button);
  background: rgba(3, 24, 44, .78);
}

.rb-nearby-actions .rb-command-copy small {
  display: none;
}

.rb-nearby-actions .rb-command-copy strong {
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
}

.rb-nearby-actions .rb-command-icon {
  width: 40px;
  height: 40px;
  box-shadow: none;
}

.rb-nearby-actions .rb-command-icon-cutout {
  fill: none;
  stroke: var(--rb-app-ink);
  stroke-width: 2;
}

.rb-nearby-actions .rb-command-row-primary {
  border-color: transparent;
  background: var(--rb-app-cyan);
  color: var(--rb-app-ink);
}

.rb-command-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--rb-app-cyan);
  border-radius: 50%;
  background: var(--rb-app-blue);
  box-shadow: 0 0 0 3px var(--rb-app-cream);
}

.rb-command-icon svg,
.rb-command-icon img {
  width: 25px;
  height: 25px;
  fill: #fff;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  object-fit: contain;
}

.rb-command-copy { display: flex; min-width: 0; flex-direction: column; }
.rb-command-copy strong { font-size: 15px; line-height: 19px; }
.rb-command-copy small { margin-top: 2px; color: rgba(255, 255, 255, .66); font-size: 11px; line-height: 15px; }
.rb-command-row-primary .rb-command-copy small { color: rgba(16, 45, 73, .72); }
.rb-command-chevron { color: rgba(255, 255, 255, .58); font-size: 30px; line-height: 1; }
.rb-nearby-actions .rb-command-chevron { display: none; }

.rb-nearby-stop-list {
  display: grid;
  gap: 10px;
}

.rb-nearby-stop-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  min-height: 124px;
  padding: 14px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(34, 184, 242, .56);
  border-radius: var(--rb-app-radius-card);
  background: var(--rb-app-cream);
  color: var(--rb-app-ink);
  box-shadow: var(--rb-app-shadow-card);
}

.rb-nearby-stop-copy { display: flex; min-width: 0; grid-column: 1; grid-row: 1 / span 2; align-self: center; flex-direction: column; }
.rb-nearby-stop-copy strong { font-size: 16px; line-height: 20px; }
.rb-nearby-stop-copy small { margin-top: 3px; color: #8c4f12; font-weight: 800; }
.rb-nearby-stop-copy span { margin-top: 5px; color: #617589; font-size: 11px; line-height: 15px; }
.rb-nearby-stop-distance { grid-column: 2; grid-row: 1; align-self: start; justify-self: end; color: var(--rb-app-blue); font-weight: 900; white-space: nowrap; }
.rb-nearby-stop-row button { display: grid; width: 48px; height: 48px; grid-column: 2; grid-row: 2; place-items: center; align-self: end; justify-self: end; border: 0; border-radius: 50%; background: var(--rb-app-cyan); color: var(--rb-app-ink); }
.rb-nearby-stop-row button svg { width: 27px; height: 27px; fill: var(--rb-app-ink); }
.rb-nearby-stop-row button .rb-nearby-route-cutout { fill: none; stroke: var(--rb-app-cyan); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.rb-state-card {
  display: flex;
  min-height: 132px;
  padding: 22px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(34, 184, 242, .56);
  border-radius: var(--rb-app-radius-card);
  background: var(--rb-app-wavy-surface) center / cover;
  color: var(--rb-app-ink);
  text-align: center;
}

.rb-state-card span { margin-top: 6px; color: #617589; font-size: 12px; line-height: 17px; }

/* Saved */
.rb-saved-content {
  display: grid;
  gap: 12px;
}

body.rb-app-parity .rb-saved-content .saved-stop-notification-controls,
body.rb-app-parity .rb-saved-content .saved-stop-notification-settings,
body.rb-app-parity .rb-saved-content .saved-stop-notification-enrollment,
body.rb-app-parity .rb-saved-content .saved-stops-list > * {
  border: 1px solid rgba(34, 184, 242, .54) !important;
  border-radius: var(--rb-app-radius-card) !important;
  background: var(--rb-app-wavy-surface) center / cover !important;
  color: var(--rb-app-ink) !important;
  box-shadow: var(--rb-app-shadow-card) !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-notification-controls {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) 44px !important;
  grid-template-rows: auto !important;
  gap: 4px !important;
  min-height: 104px !important;
  margin: 0 !important;
  padding: 12px !important;
  align-items: center !important;
}

body.rb-app-parity .rb-saved-content .hero-saved-stop-alert-toggle {
  display: grid !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 76px !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 2px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  clip-path: none !important;
  contain: none !important;
  color: var(--rb-app-ink) !important;
}

body.rb-app-parity .rb-saved-content .hero-animation-toggle-copy {
  display: flex !important;
  min-width: 0 !important;
  gap: 3px !important;
  flex-direction: column !important;
}

body.rb-app-parity .rb-saved-content .hero-animation-toggle-copy strong {
  font-size: 14px !important;
  line-height: 17px !important;
  white-space: nowrap !important;
}

body.rb-app-parity .rb-saved-content .hero-animation-toggle-copy small {
  font-size: 11px !important;
  line-height: 14px !important;
}

body.rb-app-parity .rb-saved-content .hero-animation-toggle-copy strong,
body.rb-app-parity .rb-saved-content .saved-stop-notification-settings strong {
  color: var(--rb-app-ink) !important;
}

body.rb-app-parity .rb-saved-content .hero-animation-toggle-copy small,
body.rb-app-parity .rb-saved-content .saved-stop-notification-settings small,
body.rb-app-parity .rb-saved-content .saved-stop-notification-settings p {
  color: #617589 !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-notification-settings-button {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 50% !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-notification-bell-button {
  grid-column: 1 !important;
  grid-row: 1 !important;
  border: 0 !important;
  background: var(--rb-app-blue) !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.rb-app-parity .rb-saved-content #savedStopNotificationSettingsButton {
  grid-column: 3 !important;
  grid-row: 1 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--rb-app-blue) !important;
  box-shadow: none !important;
  transform: translateX(2px);
}

body.rb-app-parity .rb-saved-content .saved-stop-notification-state {
  display: none !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-notification-switch-column {
  gap: 0 !important;
  transform: translateX(8px);
}

body.rb-app-parity .rb-saved-content .saved-stop-notification-settings {
  padding: 16px !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-notification-rule {
  border-color: rgba(19, 127, 208, .22) !important;
  background: rgba(255, 255, 255, .46) !important;
}

body.rb-app-parity .rb-saved-content .saved-stops-list {
  display: grid !important;
  gap: 12px !important;
}

.rb-saved-summary {
  display: flex;
  min-height: 72px;
  padding: 12px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(34, 184, 242, .54);
  border-radius: var(--rb-app-radius-card);
  background: var(--rb-app-wavy-surface) center / cover;
  color: var(--rb-app-ink);
  box-shadow: var(--rb-app-shadow-card);
}

.rb-saved-summary strong,
.rb-saved-summary button {
  min-height: 44px;
  padding: 10px 15px;
  border: 0;
  border-radius: 999px;
  background: var(--rb-app-gold);
  color: var(--rb-app-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rb-saved-summary button {
  border: 1px solid rgba(16, 45, 73, .26);
  cursor: pointer;
}

body.rb-app-parity .rb-saved-content .saved-stops-toolbar {
  display: none !important;
}

body.rb-app-parity .rb-saved-content .saved-stops-empty,
body.rb-app-parity .rb-saved-content .saved-stops-empty-fun {
  display: flex !important;
  min-height: 255px !important;
  margin: 0 !important;
  padding: 24px 20px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  flex-direction: column !important;
  text-align: center !important;
}

body.rb-app-parity .rb-saved-content .saved-empty-cup {
  display: block !important;
  margin: 0 0 4px !important;
}

body.rb-app-parity .rb-saved-content .saved-empty-cup img {
  width: 92px !important;
  height: 92px !important;
  object-fit: contain !important;
}

body.rb-app-parity .rb-saved-content .saved-stops-empty strong {
  color: var(--rb-app-ink) !important;
  font-size: 20px !important;
  line-height: 24px !important;
}

body.rb-app-parity .rb-saved-content .saved-stops-empty span:not(.saved-empty-cup) {
  max-width: 34ch;
  color: #617589 !important;
  font-size: 13px !important;
  line-height: 18px !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
  padding: 16px !important;
  overflow: hidden !important;
  border: 1px solid rgba(34, 184, 242, .65) !important;
  border-radius: var(--rb-app-radius-card) !important;
  background: var(--rb-app-wavy-surface) center / cover !important;
  color: var(--rb-app-ink) !important;
  box-shadow: var(--rb-app-shadow-card) !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-copy {
  position: relative !important;
  display: grid !important;
  min-width: 0 !important;
  gap: 7px !important;
  padding-right: 0 !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-item.has-distance .saved-stop-copy {
  padding-right: 88px !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-copy strong,
body.rb-app-parity .rb-saved-content .saved-stop-copy small,
body.rb-app-parity .rb-saved-content .saved-stop-copy > span {
  min-width: 0 !important;
  max-width: none !important;
  overflow: visible !important;
  color: var(--rb-app-ink) !important;
  white-space: normal !important;
  text-overflow: clip !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-copy strong {
  font-size: 19px !important;
  line-height: 23px !important;
  font-weight: 900 !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-copy .saved-stop-time {
  justify-self: start !important;
  margin: 0 !important;
  padding: 5px 10px !important;
  border: 1px solid rgba(230, 174, 85, .52) !important;
  border-radius: 999px !important;
  background: rgba(255, 213, 141, .56) !important;
  color: #8c4f12 !important;
  font-size: 12px !important;
  line-height: 15px !important;
  font-weight: 900 !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-copy .saved-stop-address {
  margin: 0 !important;
  color: #617589 !important;
  font-size: 12px !important;
  line-height: 16px !important;
  font-weight: 800 !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-copy .saved-stop-distance {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: auto !important;
  max-width: 82px !important;
  margin: 0 !important;
  padding: 7px 10px !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  background: rgba(8, 36, 62, .92) !important;
  color: #fff !important;
  font-size: 11px !important;
  line-height: 14px !important;
  font-weight: 900 !important;
  text-align: center !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-actions {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: 100% !important;
  gap: 8px !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-actions button {
  min-width: 0 !important;
  min-height: 44px !important;
  padding-inline: 8px !important;
  white-space: normal !important;
  border: 1px solid rgba(19, 127, 208, .25) !important;
  background: rgba(218, 237, 246, .86) !important;
  color: var(--rb-app-ink) !important;
  font-weight: 900 !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-actions button[data-saved-route] {
  border-color: rgba(19, 127, 208, .34) !important;
  background: var(--rb-app-cyan) !important;
}

body.rb-app-parity .rb-saved-content .saved-stop-actions button[data-saved-remove] {
  border: 1px solid rgba(163, 46, 46, .42) !important;
  background: linear-gradient(135deg, #fff4ef, #ffc7bb) !important;
  color: #8a1f1f !important;
  -webkit-text-fill-color: #8a1f1f !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82), 0 7px 14px rgba(124, 31, 31, .13) !important;
  font-weight: 900 !important;
  opacity: 1 !important;
}

/* More */
.rb-more-section {
  width: 100%;
  margin-bottom: 16px;
  box-sizing: border-box;
}

body.rb-app-parity .rb-app-screen-more .rb-command-group,
body.rb-app-parity .rb-app-screen-more .hero-info-links,
body.rb-app-parity .rb-app-screen-more .map-panel,
body.rb-app-parity .rb-app-screen-more #rbMapPickerSlot,
body.rb-app-parity .rb-app-screen-more #heroInfoLocationTools,
body.rb-app-parity .rb-app-screen-more .hero-info-privacy-note,
body.rb-app-parity .rb-app-screen-more .install-footer,
body.rb-app-parity .rb-app-screen-more .developer-support-footer {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

body.rb-app-parity .rb-more-links-section .hero-info-links {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.rb-app-parity .rb-more-links-section .hero-info-link {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) 20px !important;
  width: 100% !important;
  min-height: 72px !important;
  padding: 10px 14px !important;
  align-items: center !important;
  justify-items: start !important;
  gap: 12px !important;
  border: 1px solid rgba(34, 184, 242, .54) !important;
  border-radius: var(--rb-app-radius-card) !important;
  background: var(--rb-app-wavy-surface) center / cover !important;
  color: var(--rb-app-ink) !important;
  box-shadow: var(--rb-app-shadow-card) !important;
  text-decoration: none !important;
}

body.rb-app-parity .rb-more-links-section .hero-info-link:last-child { border-bottom: 1px solid rgba(34, 184, 242, .54) !important; }
body.rb-app-parity .rb-more-links-section .hero-info-link::after { content: "\203A"; justify-self: end; color: var(--rb-app-blue); font-size: 28px; }

body.rb-app-parity .rb-more-links-section .hero-info-link-icon {
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
}

body.rb-app-parity .rb-more-links-section .hero-info-link > span:last-of-type {
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 19px !important;
}

body.rb-app-parity .rb-more-links-section .instagram-quick-tag-button {
  width: 100% !important;
  max-width: none !important;
  min-height: 72px !important;
  margin: 10px 0 0 !important;
  padding: 10px 14px !important;
  box-sizing: border-box !important;
  border: 1px solid rgba(117, 201, 241, .34) !important;
  border-radius: var(--rb-app-radius-button) !important;
  background: var(--rb-app-wavy-surface) center / cover !important;
  color: var(--rb-app-ink) !important;
  box-shadow: var(--rb-app-shadow-card) !important;
}

body.rb-app-parity .rb-more-links-section .instagram-quick-tag-copy strong {
  color: var(--rb-app-ink) !important;
  font-size: 14px !important;
  line-height: 18px !important;
}

body.rb-app-parity .rb-more-links-section .instagram-quick-tag-copy small {
  color: #617589 !important;
  font-size: 12px !important;
  line-height: 16px !important;
}

body.rb-app-parity .rb-more-links-section .instagram-quick-tag-state {
  color: var(--rb-app-blue) !important;
}

body.rb-app-parity .rb-command-row:has(.rb-command-icon img[src*="calendar-logo"]) .rb-command-icon {
  background: #fff7e7;
}

body.rb-app-parity .rb-command-row:has(.rb-command-icon img[src*="calendar-logo"]) .rb-command-icon img {
  width: 34px;
  height: 34px;
}

body.rb-app-parity .rb-more-directions-section #rbMapPickerSlot,
body.rb-app-parity .rb-more-directions-section #rbMapPickerButton {
  width: 100% !important;
  margin: 0 !important;
}

body.rb-app-parity .rb-more-directions-section .map-panel,
body.rb-app-parity .rb-more-settings-section #heroInfoLocationTools,
body.rb-app-parity .rb-more-settings-section .install-footer,
body.rb-app-parity .rb-more-settings-section .hero-info-privacy-note {
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid rgba(117, 201, 241, .34) !important;
  border-radius: var(--rb-app-radius-card) !important;
  background: linear-gradient(180deg, rgba(10, 44, 73, .98), rgba(8, 36, 62, .98)) !important;
  box-shadow: var(--rb-app-shadow-card) !important;
}

body.rb-app-parity .rb-more-directions-section .map-panel {
  padding: 14px !important;
}

body.rb-app-parity .rb-more-settings-section #heroInfoLocationTools {
  display: grid !important;
  gap: 0 !important;
  padding: 8px 14px !important;
}

body.rb-app-parity .rb-more-settings-section .hero-info-settings-heading {
  display: none !important;
}

body.rb-app-parity .rb-more-settings-section .hero-animation-toggle,
body.rb-app-parity .rb-more-settings-section .hero-info-refresh-btn {
  min-height: 64px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .10) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.rb-app-parity .rb-more-settings-section .hero-info-privacy-note {
  margin-top: 10px !important;
  padding: 14px 16px !important;
  color: rgba(255, 255, 255, .72) !important;
  font-size: 12px !important;
  line-height: 17px !important;
}

body.rb-app-parity .rb-more-settings-section .hero-info-privacy-note strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

body.rb-app-parity .rb-more-settings-section .install-footer {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 8px !important;
  margin-top: 10px !important;
  padding: 10px !important;
}

body.rb-app-parity .rb-more-settings-section .install-app-btn {
  min-height: 68px !important;
  border-radius: var(--rb-app-radius-button) !important;
}

body.rb-app-parity .rb-more-settings-section .install-home-btn {
  grid-template-columns: 42px minmax(0, 1fr) 58px !important;
  min-height: 88px !important;
  gap: 12px !important;
}

body.rb-app-parity .rb-more-settings-section .install-copy {
  min-width: 0 !important;
  padding-right: 0 !important;
  text-align: left !important;
}

body.rb-app-parity .rb-more-settings-section .install-copy strong,
body.rb-app-parity .rb-more-settings-section .install-copy small {
  max-width: none !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  white-space: normal !important;
  text-wrap: pretty;
}

body.rb-app-parity .rb-more-settings-section .install-phone-visual {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  width: 52px !important;
  height: 72px !important;
}

body.rb-app-parity .rb-more-settings-section .developer-support-footer {
  margin: 10px 0 0 !important;
}

body.rb-app-parity .rb-more-settings-section .developer-support-link {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--rb-app-gold);
  border-radius: var(--rb-app-radius-button);
  background: rgba(3, 24, 44, .86);
  color: var(--rb-app-cream);
  font-weight: 800;
}

/* Native-style dialogs and sheets sit above the persistent navigation. */
body.rb-app-parity .modal {
  z-index: 1200 !important;
}

body.rb-app-parity .modal-backdrop,
body.rb-app-parity .hero-utility-backdrop {
  background: rgba(2, 10, 18, .72) !important;
  backdrop-filter: blur(5px);
}

body.rb-app-parity .hero-info-panel {
  z-index: 5100 !important;
}

body.rb-app-parity .hero-menu-panel {
  position: fixed !important;
  inset: auto 8px max(8px, var(--rb-app-safe-bottom)) !important;
  width: min(calc(100% - 16px), 610px) !important;
  max-width: 610px !important;
  --rb-menu-sheet-max-height: calc(100dvh - var(--rb-app-safe-top) - var(--rb-app-safe-bottom) - 16px);
  --rb-menu-sheet-height: min(68dvh, 650px, var(--rb-menu-sheet-max-height));
  height: var(--rb-menu-sheet-height) !important;
  min-height: min(360px, var(--rb-menu-sheet-max-height)) !important;
  max-height: var(--rb-menu-sheet-max-height) !important;
  margin: auto !important;
  padding: 18px 14px calc(18px + var(--rb-app-safe-bottom)) !important;
  overflow-y: auto !important;
  border: 1px solid rgba(117, 201, 241, .42) !important;
  border-radius: 28px 28px 20px 20px !important;
  background: var(--rb-app-navy-deep) !important;
  color: #fff !important;
  box-shadow: 0 -14px 50px rgba(0, 0, 0, .48) !important;
  transition: height var(--rb-app-motion-emphasis) cubic-bezier(.2, .75, .24, 1) !important;
  overscroll-behavior: contain;
}

body.rb-app-parity #heroMenuPanel.hero-menu-panel[role="dialog"] {
  top: auto !important;
  right: 8px !important;
  bottom: max(8px, var(--rb-app-safe-bottom)) !important;
  left: 8px !important;
  box-sizing: border-box !important;
  transform: none !important;
}

body.rb-app-parity .hero-menu-panel.rb-menu-sheet-expanded {
  --rb-menu-sheet-height: var(--rb-menu-sheet-max-height);
}

body.rb-app-parity .hero-menu-panel.rb-menu-sheet-dragging {
  transition: none !important;
  user-select: none;
}

.rb-menu-sheet-handle {
  position: sticky;
  z-index: 6;
  top: 0;
  display: grid;
  width: 88px;
  height: 32px;
  margin: -12px auto 2px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: ns-resize;
  touch-action: none;
}

.rb-menu-sheet-handle span {
  display: block;
  width: 52px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .22);
}

.rb-menu-sheet-handle:focus-visible {
  outline: 3px solid var(--rb-app-cyan);
  outline-offset: -2px;
  border-radius: 999px;
}

html:not(.rb-motion-off) body.rb-app-parity #heroMenuPanel.hero-menu-panel[role="dialog"]:not([hidden]) {
  transform: none !important;
  animation: rb-app-menu-sheet-in var(--rb-app-motion-emphasis) cubic-bezier(.16, 1, .3, 1) both !important;
}

html.rb-motion-off body.rb-app-parity #heroMenuPanel.hero-menu-panel[role="dialog"]:not([hidden]) {
  transform: none !important;
  animation: none !important;
}

@keyframes rb-app-menu-sheet-in {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.rb-app-parity #heroMenuPanel.hero-menu-panel[role="dialog"]:not([hidden]) {
    transform: none !important;
    animation: none !important;
  }
}

body.rb-app-parity .hero-menu-panel .hero-panel-title {
  margin: 2px 58px 14px 4px !important;
  color: #fff !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 30px !important;
  text-align: left !important;
}

body.rb-app-parity .hero-menu-panel .hero-panel-close {
  top: 12px !important;
  right: 12px !important;
  width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;
  border: 1px solid rgba(117, 201, 241, .22) !important;
  border-radius: 50% !important;
  background: #1b3a55 !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 28px !important;
  line-height: 1 !important;
}

body.rb-app-parity .hero-menu-panel .hero-panel-close:focus-visible {
  outline: 3px solid var(--rb-app-cyan) !important;
  outline-offset: 3px !important;
}

body.rb-app-parity .hero-menu-panel .hero-menu-section-title {
  color: var(--rb-app-cyan) !important;
}

body.rb-app-parity .hero-menu-panel .hero-menu-availability-note,
body.rb-app-parity .hero-menu-panel .hero-menu-item {
  border: 1px solid rgba(34, 184, 242, .50) !important;
  border-radius: var(--rb-app-radius-card) !important;
  background: var(--rb-app-wavy-surface) center / cover !important;
  color: var(--rb-app-ink) !important;
}

body.rb-app-parity .hero-menu-panel .hero-menu-availability-note {
  padding: 13px 14px !important;
  font-size: 12px !important;
  line-height: 17px !important;
}

body.rb-app-parity .hero-menu-panel .hero-menu-copy strong,
body.rb-app-parity .hero-menu-panel .hero-menu-copy p {
  color: var(--rb-app-ink) !important;
}

body.rb-app-parity .hero-menu-panel .hero-menu-item.is-description-collapsible {
  cursor: pointer;
}

body.rb-app-parity .hero-menu-panel .hero-menu-item.is-description-collapsible .hero-menu-copy p {
  display: none !important;
}

body.rb-app-parity .hero-menu-panel .hero-menu-item.is-description-collapsible.is-description-expanded .hero-menu-copy p {
  display: block !important;
}

body.rb-app-parity .hero-menu-panel .hero-menu-item.is-description-collapsible .hero-menu-copy strong::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 9px;
  border-right: 2px solid var(--rb-app-blue);
  border-bottom: 2px solid var(--rb-app-blue);
  transform: rotate(45deg);
  transition: transform var(--rb-app-motion-fast) ease;
}

body.rb-app-parity .hero-menu-panel .hero-menu-item.is-description-collapsible.is-description-expanded .hero-menu-copy strong::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

body.rb-app-parity .hero-menu-panel .hero-menu-item.is-description-collapsible:focus-visible {
  outline: 3px solid var(--rb-app-cyan) !important;
  outline-offset: 3px;
}

body.rb-app-parity .modal > section {
  max-height: calc(100dvh - 24px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

body.rb-app-parity .all-map-modal,
body.rb-app-parity .day-picker-modal,
body.rb-app-parity .schedule-calendar-modal,
body.rb-app-parity .contact-modal,
body.rb-app-parity .install-modal,
body.rb-app-parity .developer-donate-modal {
  border: 1px solid rgba(117, 201, 241, .42) !important;
  border-radius: var(--rb-app-radius-hero) !important;
  background: linear-gradient(180deg, rgba(8, 36, 62, .99), rgba(3, 24, 44, .99)) !important;
  color: #fff !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .54) !important;
}

body.rb-app-parity .all-map-preview {
  border: 2px solid var(--rb-app-cyan) !important;
  border-radius: var(--rb-app-radius-card) !important;
  overflow: hidden !important;
}

body.rb-app-parity .modal-close,
body.rb-app-parity .hero-panel-close {
  display: grid !important;
  width: 48px !important;
  height: 48px !important;
  place-items: center !important;
  border: 1px solid rgba(117, 201, 241, .38) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
}

@media (min-width: 720px) {
  body.rb-app-parity .app-shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  body.rb-app-parity .rb-app-screen-stops .results {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.rb-app-parity .rb-app-screen-stops .stop-card {
    height: 100%;
  }
}

@media (max-width: 380px) {
  :root { --rb-app-nav-height: 70px; }
  body.rb-app-parity .app-shell { padding-right: 8px; padding-left: 8px; }
  body.rb-app-parity .rb-app-screen-home .hero-card {
    grid-template-columns: minmax(106px, .84fr) minmax(0, 1.32fr);
  }
  .rb-bottom-nav { width: calc(100% - 12px); }
  .rb-bottom-nav-item { font-size: 9px; }
  .rb-nav-medallion { width: 28px; height: 28px; flex-basis: 28px; }
  body.rb-app-parity #allMapBtn {
    gap: 7px !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  body.rb-app-parity #allMapBtn > span:nth-child(2) {
    width: auto !important;
    flex: 0 1 auto !important;
  }
  body.rb-app-parity #allMapBtn strong {
    width: 100% !important;
  }
  body.rb-app-parity #heroMenuButton {
    gap: 8px !important;
    padding-inline: 9px !important;
  }
  body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster {
    width: 34px !important;
    min-width: 34px !important;
    height: 32px !important;
  }
  body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster img {
    width: 17px !important;
    height: 24px !important;
  }
  body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster img:nth-child(1) { left: 0 !important; top: 7px !important; }
  body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster img:nth-child(2) { left: 8px !important; top: 0 !important; }
  body.rb-app-parity #allMapBtn .btn-spark.rb-action-pin-cluster img:nth-child(3) { left: 16px !important; top: 7px !important; }
  body.rb-app-parity .hero-lockup { font-size: .78rem !important; gap: 5px; }
  body.rb-app-parity .hero-brand-logo { width: min(68vw, 252px) !important; }
  .rb-nearby-actions { grid-template-columns: 1fr; }
  .rb-screen-header { grid-template-columns: 58px minmax(0, 1fr); padding: 12px; }
  .rb-screen-header-icon,
  .rb-screen-header > .rb-header-pin-cluster { width: 50px; height: 50px; }
}

@media (max-width: 520px) {
  body.rb-app-parity .app-shell {
    padding-right: max(4px, var(--rb-app-safe-right));
    padding-left: max(4px, var(--rb-app-safe-left));
  }

  .rb-bottom-nav {
    width: calc(100% - 12px);
  }
}

@media (orientation: landscape) and (max-height: 560px) {
  :root { --rb-app-nav-height: 64px; }
  .rb-bottom-nav { height: 64px; }
  .rb-bottom-nav-item { min-height: 54px; padding-top: 3px; }
  .rb-nav-medallion { width: 30px; height: 30px; flex-basis: 30px; }
  body.rb-app-parity .hero-brand-logo { width: min(43vw, 225px) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .rb-app-screen,
  .rb-bottom-nav-selector,
  .rb-nav-medallion {
    animation: none !important;
    transition: none !important;
  }
}

@media (display-mode: standalone) {
  body.rb-app-parity {
    overscroll-behavior-y: none;
  }
}
