/* =============================================
   BISLIG BOOKING — STYLE SYSTEM
   Palette: Warm Amber/Golden Yellow (muted)
   Aesthetic: Refined minimalism
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* --- TOKENS --- */
:root {
  --gold-50:  #FDFAF2;
  --gold-100: #F7EFCC;
  --gold-200: #EDD98A;
  --gold-300: #D9BC5A;
  --gold-400: #C09A30;
  --gold-500: #A07A18;
  --gold-600: #7A5C0E;
  --gold-700: #4E3A08;

  --ink-900: #1C1A14;
  --ink-700: #3D3929;
  --ink-500: #6B6450;
  --ink-300: #A8A090;
  --ink-100: #E8E4D8;

  --surface:  #FDFCF7;
  --surface-2: #F5F0E4;
  --surface-3: #EDE6D3;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-xs: 0 1px 3px rgba(100, 80, 20, 0.08);
  --shadow-sm: 0 2px 10px rgba(100, 80, 20, 0.10);
  --shadow-md: 0 4px 24px rgba(100, 80, 20, 0.12);

  --font-display: 'Outfit', 'DM Sans', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-700);
  background-color: var(--surface);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

/* --- LAYOUT --- */
.container {
  width: min(96%, 1280px);
  margin-inline: auto;
  padding-block: 2.5rem;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h3 { font-size: 1.2rem; }

p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.7;
}

/* --- NAVIGATION / HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 247, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-100);
  padding: 0.9rem 0;
}

.site-header .container {
  padding-block: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink-900);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-logo span {
  color: var(--gold-400);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-500);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--ink-900); }

.header-nav .logout-link { color: #C0392B !important; font-weight: 600 !important; }
.header-nav .logout-link:hover { color: #fff !important; background: #C0392B !important; }

/* --- BUTTONS --- */
button,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

/* Primary */
button,
.btn-primary {
  background: var(--gold-400);
  color: var(--ink-900);
  border-color: var(--gold-400);
}

button:hover,
.btn-primary:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(160, 122, 24, 0.28);
}

button:active,
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--ink-700);
  border-color: var(--ink-100);
}

.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--ink-300);
}

/* --- FORM ELEMENTS --- */
input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-900);
  background: var(--surface);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--ink-300);
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--ink-300);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-300);
  box-shadow: 0 0 0 3px rgba(193, 154, 48, 0.15);
}

input[readonly] {
  background: var(--surface-2);
  color: var(--ink-500);
  cursor: default;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6450' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 6px;
}

.form-group {
  margin-bottom: 1.2rem;
}

/* --- CARD --- */
.card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-sm);
}

/* --- MAP --- */
#map {
  height: calc(100vh - 220px);
  min-height: 500px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Leaflet popup override */
.leaflet-popup-content-wrapper {
  font-family: var(--font-body);
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--ink-100);
  padding: 0;
}

.leaflet-popup-content {
  margin: 16px 18px !important;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-700);
}

.leaflet-popup-content b {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink-900);
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}

.leaflet-popup-content img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin: 8px 0;
  display: block;
}

.leaflet-popup-content button {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

.leaflet-popup-tip-container {
  display: none;
}

/* --- PAGE TITLE SECTION --- */
.page-hero {
  padding-block: 3.5rem 2.5rem;
  border-bottom: 1px solid var(--ink-100);
  margin-bottom: 2.5rem;
}

.page-hero h2 {
  margin-bottom: 0.4rem;
}

.page-hero p {
  font-size: 15px;
  max-width: 480px;
}

/* --- BOOKING PAGE --- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 680px) {
  .booking-layout { grid-template-columns: 1fr; }
}

.booking-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}

.booking-card h2 {
  margin-bottom: 0.3rem;
}

.booking-card > p {
  margin-bottom: 2rem;
}

.booking-divider {
  border: none;
  border-top: 1px solid var(--ink-100);
  margin: 1.5rem 0;
}

/* Destination badge */
.destination-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 1.8rem;
  border: 1px solid var(--gold-200);
}

.destination-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
}

/* --- MODAL --- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28, 26, 20, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.modal[style*="block"] {
  display: flex !important;
}

.modal-content {
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: 2.4rem;
  width: min(90vw, 380px);
  box-shadow: var(--shadow-md);
  position: relative;
  animation: modal-in 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-900);
  margin-bottom: 0.3rem;
}

.modal-content > p {
  margin-bottom: 1.6rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--ink-300);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  line-height: 1;
}

.modal-close:hover {
  color: var(--ink-700);
  background: var(--surface-2);
  box-shadow: none;
  transform: none;
}

/* --- ALERT / NOTICE --- */
.alert {
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-success {
  background: #F0F8EC;
  color: #3B6D11;
  border: 1px solid #C0DD97;
}

.alert-warning {
  background: var(--gold-100);
  color: var(--gold-600);
  border: 1px solid var(--gold-200);
}

/* --- DIVIDER --- */
hr {
  border: none;
  border-top: 1px solid var(--ink-100);
  margin: 2rem 0;
}

/* --- LINK --- */
a {
  color: var(--gold-500);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold-600); }

/* --- FOOTER --- */
.site-footer {
  border-top: 1px solid var(--ink-100);
  padding: 2rem 0;
  margin-top: 5rem;
}

.site-footer p {
  font-size: 12px;
  color: var(--ink-300);
  text-align: center;
  letter-spacing: 0.02em;
}

/* --- UTILITY --- */
.text-muted { color: var(--ink-300); }
.text-sm    { font-size: 13px; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }

/* =============================================
   AUTH PAGES — Login & Register (Modal Style)
   ============================================= */

.auth-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem 1rem;
  position: relative;
  background-color: var(--surface-2);
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(192, 154, 48, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(192, 154, 48, 0.12) 0%, transparent 50%);
  overflow-x: hidden;
}

/* Subtle decorative orbs */
.auth-page::before,
.auth-page::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.auth-page::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(192, 154, 48, 0.12) 0%, transparent 70%);
  top: -140px;
  right: -100px;
}

.auth-page::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(217, 188, 90, 0.10) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
}

/* The modal card */
.auth-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-100);
  box-shadow:
    0 0 0 1px rgba(192, 154, 48, 0.06),
    0 8px 32px rgba(100, 80, 20, 0.10),
    0 2px 8px rgba(100, 80, 20, 0.06);
  padding: 2.4rem 2.2rem 2.2rem;
  animation: authModalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  box-sizing: border-box;
}

@keyframes authModalIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* Logo at top of card */
.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-900);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}

.auth-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  display: inline-block;
  flex-shrink: 0;
}

/* Divider between logo and form header */
.auth-separator {
  height: 1px;
  background: var(--ink-100);
  margin-bottom: 1.6rem;
}

.auth-box-header {
  margin-bottom: 1.6rem;
}

.auth-box-header h1 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.auth-box-header p {
  font-size: 13px;
  color: var(--ink-500);
}

.auth-box-header p a {
  color: var(--gold-500);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.auth-box-header p a:hover {
  color: var(--gold-600);
}

/* Submit button */
.auth-submit {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0.5rem;
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
}

/* Footer note below card */
.auth-footer-note {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-300);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.4rem 0;
  color: var(--ink-300);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ink-100);
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Tablet ── */
@media (max-width: 520px) {
  .auth-box {
    padding: 2rem 1.6rem 1.8rem;
    border-radius: var(--radius-lg);
  }
}

/* ── Small phone ── */
@media (max-width: 400px) {
  .auth-page {
    padding: 1.2rem 0.8rem;
  }
  .auth-box {
    padding: 1.6rem 1.2rem 1.5rem;
    border-radius: var(--radius-md);
  }
  .auth-box-header h1 {
    font-size: 1.3rem;
  }
  .name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ── Password field with toggle icon ── */
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap input {
  padding-right: 42px;
}

.toggle-pw {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  padding: 4px;
  color: var(--ink-300);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  box-shadow: none;
  transform: none;
  width: 28px;
  height: 28px;
}

.toggle-pw:hover {
  color: var(--ink-700);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.toggle-pw svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Eye slash line — shown when password is visible */
.toggle-pw .eye-slash { display: none; }
.toggle-pw.active .eye-open  { display: none; }
.toggle-pw.active .eye-slash { display: block; }

/* ── Field error message (the text below the input) ── */
.field-error {
  display: none;
  font-size: 11px;
  color: #C03232;
  margin-top: 4px;
}

/* ── Input error state (red border on the input itself) ── */
input.field-error,
select.field-error,
textarea.field-error {
  display: block !important;
  border-color: #E05252 !important;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.13) !important;
  color: var(--ink-900) !important;
  background: var(--surface) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* ── Input error state ── */
.input-error {
  border-color: #E05252 !important;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.13) !important;
}

/* ── Password rules (hidden by default, shown red only when failing) ── */
.pw-rules {
  list-style: none;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pw-rule {
  display: none; /* hidden until typing starts */
  font-size: 11px;
  color: #C03232;
  padding-left: 14px;
  position: relative;
}

.pw-rule::before {
  content: '✕';
  position: absolute;
  left: 0;
  font-size: 10px;
}

.pw-rule.pw-rule-pass {
  display: none !important; /* hide when rule is met */
}

.pw-rule.pw-rule-fail {
  display: block; /* show in red only when failing */
}

/* ── Password strength bar ── */
.pw-strength {
  height: 3px;
  background: var(--ink-100);
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}

.pw-strength-bar {
  height: 100%;
  border-radius: 999px;
  width: 0;
  transition: width 0.3s ease, background 0.3s ease;
}

.strength-weak  { width: 33%; background: #E05252; }
.strength-fair  { width: 66%; background: var(--gold-400); }
.strength-strong { width: 100%; background: #4CAF50; }

/* =============================================
   DASHBOARD
   ============================================= */

.dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 61px);
}

@media (max-width: 768px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
}

/* Sidebar */
.dashboard-sidebar {
  border-right: 1px solid var(--ink-100);
  padding: 2rem 1.5rem;
  background: #fff;
}

.sidebar-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-100);
  border: 2px solid var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-600);
  margin-bottom: 0.6rem;
}

.sidebar-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-900);
  margin-bottom: 2px;
}

.sidebar-email {
  font-size: 12px;
  color: var(--ink-300);
  margin-bottom: 2rem;
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-500);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.sidebar-nav a:hover {
  color: var(--ink-900);
  background: var(--surface-2);
}

.sidebar-nav a.active {
  color: var(--gold-600);
  background: var(--gold-100);
}

.sidebar-nav .nav-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.sidebar-nav a.active .nav-icon { opacity: 1; }

/* Main content */
.dashboard-main {
  padding: 2.5rem 3rem;
  background: var(--surface);
}

@media (max-width: 768px) {
  .dashboard-main { padding: 1.5rem; }
}

.dashboard-greeting {
  margin-bottom: 2.5rem;
}

.dashboard-greeting h2 {
  margin-bottom: 0.25rem;
}

.dashboard-greeting p {
  font-size: 14px;
}

/* Booking cards grid */
.bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.booking-item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition), transform var(--transition);
}

.booking-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.booking-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--ink-100);
}

.booking-vehicle {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink-900);
}

.booking-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: capitalize;
}

.status-pending {
  background: var(--gold-100);
  color: var(--gold-600);
  border: 1px solid var(--gold-200);
}

.status-confirmed {
  background: #EAF3DE;
  color: #3B6D11;
  border: 1px solid #C0DD97;
}

.status-cancelled {
  background: #FCEBEB;
  color: #A32D2D;
  border: 1px solid #F7C1C1;
}

.booking-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 13px;
  margin-bottom: 6px;
}

.booking-detail-label {
  color: var(--ink-300);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-width: 56px;
}

.booking-detail-value {
  color: var(--ink-700);
  text-align: right;
  font-size: 13px;
}

.booking-route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-700);
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--ink-100);
}

.route-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
}

.route-line {
  flex: 1;
  height: 1px;
  background: var(--ink-100);
}

.route-dot-end {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  flex-shrink: 0;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--ink-300);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink-500);
  margin-bottom: 0.5rem;
}

.empty-state p {
  font-size: 13px;
  margin-bottom: 1.5rem;
}