/* ------------------------------------------------------------------
   Route landing page (/route/{city}/{from}-to-{to}-cabs)
   ------------------------------------------------------------------ */
.rt-hero { padding: 2.75rem 0 3.25rem; }
.rt-hero .rt-route { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem; font-family: var(--site-font-heading); font-weight: 800; font-size: clamp(1.5rem, 3.6vw, 2.4rem); color: #fff; line-height: 1.2; margin: 0; }
.rt-hero .rt-route i { font-size: .8em; color: var(--site-accent); }
.rt-hero .rt-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: .75rem; font-size: .92rem; color: rgba(255,255,255,.9); }
.rt-hero .rt-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.rt-hero .rt-meta i { color: var(--site-accent); }
.rt-hero .rt-price { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); border-radius: var(--site-radius); padding: 1rem 1.25rem; backdrop-filter: blur(6px); color: #fff; }
.rt-hero .rt-price small { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.rt-hero .rt-price strong { font-family: var(--site-font-heading); font-size: 1.9rem; color: var(--site-accent); line-height: 1.1; }
.rt-widget { margin-top: -2rem; position: relative; z-index: 2; }

.rt-table { background: var(--site-card-bg); border: 1px solid var(--site-border); border-radius: var(--site-radius); overflow: hidden; }
.rt-table .rt-row { display: grid; grid-template-columns: 72px 1fr auto; gap: 1rem; align-items: center; padding: .9rem 1rem; border-bottom: 1px solid var(--site-border); }
.rt-table .rt-row:last-child { border-bottom: 0; }
.rt-table .rt-row img { width: 72px; height: 48px; object-fit: contain; }
.rt-table .rt-row .name { font-weight: 700; color: var(--site-heading); }
.rt-table .rt-row .meta { font-size: .82rem; color: var(--site-muted); }
.rt-table .rt-row .price { font-family: var(--site-font-heading); font-weight: 800; color: var(--site-primary); font-size: 1.15rem; white-space: nowrap; text-align: right; }
.rt-table .rt-row .price small { display: block; font-size: .72rem; color: var(--site-muted); font-weight: 500; }
.rt-table .rt-row .btn-book { background: var(--site-btn-bg); color: var(--site-btn-text); border: 0; border-radius: var(--site-radius-sm); padding: .45rem .9rem; font-weight: 700; font-size: .85rem; white-space: nowrap; }
.rt-table .rt-row .btn-book:hover { background: var(--site-btn-hover); }
.rt-table .rt-row .price-col { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; }
.rt-table .rt-row form { margin: 0; }
@media (min-width: 576px) { .rt-table .rt-row { grid-template-columns: 90px 1fr auto; } .rt-table .rt-row img { width: 90px; height: 60px; } .rt-table .rt-row .price-col { flex-direction: row; align-items: center; gap: 1rem; } }

.rt-notes { display: grid; grid-template-columns: 1fr; gap: .75rem; }
@media (min-width: 768px) { .rt-notes { grid-template-columns: repeat(3, 1fr); } }
.rt-note { background: var(--site-soft); border-radius: var(--site-radius); padding: .9rem 1rem; display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; }
.rt-note i { color: var(--site-primary); font-size: 1.2rem; flex: 0 0 auto; }
.rt-note strong { display: block; color: var(--site-heading); font-size: .9rem; }

.rt-img { border-radius: var(--site-radius-lg); overflow: hidden; box-shadow: var(--site-shadow); }
.rt-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }


/* ============================ MOBILE APP LAYER ===========================
   Phone layout for the route landing page.
   ========================================================================= */
@media (max-width: 767.98px) {
  .rt-hero { padding: 2rem 0 2.5rem; }
  .rt-hero .rt-route { gap: .4rem .6rem; }
  .rt-hero .rt-meta { font-size: .86rem; gap: .35rem .9rem; }
  .rt-hero .rt-price { padding: .85rem 1rem; }
  .rt-hero .rt-price strong { font-size: 1.5rem; }
  .rt-widget { margin-top: -1.25rem; }
  /* car rows stack: image + name on one line, price/CTA on the next */
  .rt-table .rt-row { grid-template-columns: 64px minmax(0, 1fr); row-gap: .6rem; padding: .85rem .9rem; }
  .rt-table .rt-row img { width: 64px; height: 44px; }
  .rt-table .rt-row .price-col {
    grid-column: 1 / -1; flex-direction: row; align-items: center;
    justify-content: space-between; gap: .75rem;
  }
  .rt-table .rt-row .price { text-align: left; }
  .rt-table .rt-row .btn-book { min-height: 44px; padding: .6rem 1.1rem; }
  .rt-note { padding: .8rem .9rem; }
  .rt-img img { aspect-ratio: 16 / 10; }
}
