.roadtrip-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  position: relative;
  z-index: 1;
}

.roadtrip-card {
  background: var(--surface);
  border: 0.5px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

#rt-btn {
  width: 100%;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

#rt-btn:hover { background: #f0ff6b; transform: translateY(-1px); }
#rt-btn:disabled { background: var(--surface3); color: var(--text-muted); box-shadow: none; cursor: not-allowed; transform: none; }

/* Route header */
.rt-route-header {
  background: linear-gradient(135deg, var(--surface2), rgba(52,211,153,0.05));
  border: 0.5px solid rgba(52,211,153,0.2);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.rt-from-to {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--white);
}

.rt-arrow { color: #34d399; font-size: 20px; }

.rt-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}

.rt-stat-box {
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}

.rt-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 3px;
}

.rt-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
}

/* Stops */
.rt-stops-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.75rem;
}

.rt-stops { display: flex; flex-direction: column; gap: 0; margin-bottom: 1rem; }

.rt-stop {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--border);
  position: relative;
}

.rt-stop:last-child { border-bottom: none; }

.rt-stop-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.rt-stop-dot.start { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.4); }
.rt-stop-dot.end   { background: #ef4444; box-shadow: 0 0 8px rgba(239,68,68,0.4); }

.rt-stop-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.rt-stop-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* Tips box */
.rt-tips-box {
  background: var(--accent-dim);
  border: 0.5px solid rgba(232,255,71,0.15);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.rt-tips-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.75rem;
}

.rt-tip-item {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 6px;
}

.rt-tip-item:last-child { margin-bottom: 0; }

.reset-btn {
  width: 100%;
  background: transparent;
  border: 0.5px solid var(--border-hover);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 13px;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.reset-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

@media (max-width: 520px) {
  .two-col { grid-template-columns: 1fr; }
  .rt-stats-row { grid-template-columns: 1fr 1fr; }
  .rt-route-header { flex-direction: column; }
}

.rt-stop {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
}

.rt-stop-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.rt-stop-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rt-stop-line {
  width: 1px;
  flex: 1;
  min-height: 20px;
  background: var(--border);
  margin: 4px 0;
}

.rt-stop-content {
  padding-bottom: 16px;
  flex: 1;
}

.rt-stop-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.rt-stop-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .rt-stops { gap: 0.5rem; }
  .rt-stop { padding: 0.875rem; }
  .rt-cost-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .rt-cost-tile { padding: 1rem; }
  .rt-cost-value { font-size: 22px; }
}