/* ═══════════════════════════════════════════
   MY ROUTE (mobile-first)
═══════════════════════════════════════════ */
.route-page {
  max-width: 540px;
  margin: 0 auto;
  padding: 16px;
}
.route-header {
  margin-bottom: 16px;
}
.route-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 8px;
}
.route-date-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.route-date-btn {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.12s;
  text-decoration: none;
  font-size: 13px;
}
.route-date-btn:hover {
  background: var(--surface-hi);
  color: var(--text-1);
}
.route-date-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.route-salesperson {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-3);
}

/* Summary bar */
.route-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-2);
}
.route-summary i {
  color: var(--brass);
  margin-right: 4px;
}

/* Stop list */
.route-stops {
  display: flex;
  flex-direction: column;
}

/* Stop cards */
.route-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brass);
  border-radius: var(--r-md);
  padding: 14px;
}
.route-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.route-stop-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brass);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.route-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.route-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
}
.route-contact-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Action links (phone, directions) */
.route-card-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
  padding-left: 34px;
}
.route-action-link {
  font-size: 13px;
  color: var(--brass);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.route-action-link:hover {
  color: var(--brass-lo);
}
.route-action-link i {
  width: 14px;
  text-align: center;
}

/* Service type badges */
.route-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-left: 34px;
}
.route-service-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--brass-pill);
  color: var(--brass-lo);
  font-weight: 500;
}

/* Connector between cards */
.route-connector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  margin: 0 auto;
  max-width: 200px;
}
.route-connector-line {
  flex: 1;
  border-top: 2px dotted var(--border);
}
.route-connector-label {
  font-size: 11px;
  color: var(--text-3);
  white-space: nowrap;
}

/* Empty state */
.route-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
}
.route-empty-icon {
  font-size: 28px;
  color: var(--text-3);
  margin-bottom: 8px;
}
.route-empty p {
  margin: 0;
  font-size: 14px;
  color: var(--text-3);
}

/* Sticky navigate button */
.route-nav-bar {
  position: sticky;
  bottom: 0;
  padding: 12px 0;
  background: var(--bg);
  z-index: 10;
}
.route-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--brass);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--r-md);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s;
}
.route-nav-btn:hover {
  background: var(--brass-lo);
  color: #fff;
}

/* Media queries (same file per Propshaft rule) */
@media (max-width: 768px) {
  .route-page {
    padding: 12px;
  }
}
