/* Opulance Driver App — matches client app visual system */

:root {
  --black:       #0D0D0D;
  --navy:        #0A1F44;
  --navy-dark:   #071429;
  --navy-light:  #0F2A5C;
  --gold:        #8B6914;
  --gold-accent: #C8A84B;
  --gold-light:  #E0C97A;
  --white:       #FFFFFF;
  --gray:        #A8A8A8;
  --gray-light:  #E8E8E8;
  --gray-mid:    #D0D0D0;
  --danger:      #C0392B;
  --success:     #1A6B3C;
  --online:      #1DB954;
  --warn:        #E67E22;
  --radius:      16px;
  --radius-sm:   10px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; -webkit-user-select: none; user-select: none; }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--navy-dark);
  font-family: Arial, Helvetica, sans-serif;
  color-scheme: dark;
}
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
button { touch-action: manipulation; }
input, select, textarea { font-size: 16px; -webkit-user-select: text; user-select: text; }

@media (min-width: 480px) {
  body {
    background: radial-gradient(ellipse at 50% 40%, var(--navy) 0%, var(--navy-dark) 100%);
  }
  #app {
    border-radius: 44px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 40px 120px rgba(0,0,0,0.9);
  }
}

#page-curtain {
  position: fixed; inset: 0;
  background: var(--navy-dark);
  z-index: 99999;
  transition: opacity 0.25s ease;
}

/* ── APP SHELL ─────────────────────────────────── */
#app {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 430px;
  height: 100vh;
  height: 100dvh;
  max-height: 932px;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overscroll-behavior: none;
}

/* ── STATUS BAR ─────────────────────────────────── */

/* ── HOME INDICATOR ─────────────────────────────── */

#screens-wrap { flex: 1; position: relative; overflow: hidden; }

/* ── SCREENS ───────────────────────────────────── */
.screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--navy-dark);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity   0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  z-index: 0;
}
.screen.active { transform: translateX(0); opacity: 1; z-index: 1; }
.screen.prev   { transform: translateX(-28%); opacity: 0; pointer-events: none; z-index: 0; }

/* ── BOTTOM NAV ─────────────────────────────────── */
.bottom-nav {
  height: calc(68px + env(safe-area-inset-bottom, 0px));
  background: var(--navy-dark);
  border-top: 1px solid rgba(200,168,75,0.2);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px max(8px, env(safe-area-inset-bottom, 0px));
  flex-shrink: 0;
}
.bottom-nav.hidden { display: none; }

.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 3px;
  padding: 10px 4px;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 0.2s;
  color: var(--gray);
  background: none;
  border: none;
}
.nav-tab.active { color: var(--gold-accent); }
.nav-tab-icon { display: flex; align-items: center; }
.nav-tab-label { font-size: 10px; font-weight: bold; letter-spacing: 0.05em; }

/* ── BACK HEADER ───────────────────────────────── */
.screen-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: max(52px, calc(env(safe-area-inset-top, 0px) + 12px)) 24px 20px;
  flex-shrink: 0;
}

.back-btn {
  width: 40px; height: 40px;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.back-btn:hover { background: rgba(200,168,75,0.22); }

.screen-header-title {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--white);
}

/* ── SHARED ────────────────────────────────────── */
.section-label {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 10px;
  margin-top: 20px;
  display: block;
}

.btn-primary {
  width: 100%;
  padding: 16px;
  background: var(--gold-accent);
  color: #0D0D0D;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  transition: all 0.2s;
}
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  width: 100%;
  padding: 15px;
  background: transparent;
  color: var(--gold-accent);
  border: 1px solid rgba(200,168,75,0.5);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  transition: all 0.2s;
}

/* ── SPLASH ─────────────────────────────────────── */
#screen-splash {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px 40px;
  overflow: hidden;
}

.splash-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 150% 120% at 50% 50%, transparent 36%, rgba(0,0,0,0.9) 100%),
    radial-gradient(circle 140px at 50% 28%, rgba(200,168,75,0.28) 0%, transparent 100%),
    radial-gradient(ellipse 90% 62% at 50% 28%, rgba(200,168,75,0.1) 0%, transparent 75%),
    radial-gradient(ellipse 32% 88% at 50% -8%, rgba(200,168,75,0.16) 0%, transparent 100%),
    var(--navy-dark);
}

.splash-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.splash-logo-wrap {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 0 60px rgba(200,168,75,0.15);
}

.splash-logo {
  width: 80px; height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(200,168,75,0.4));
}

.splash-title {
  font-family: Georgia, serif;
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.splash-sub {
  font-size: 12px;
  color: var(--gold-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.splash-driver-tag {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(200,168,75,0.2);
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 0;
}

.splash-loader {
  margin-top: 56px;
  display: flex;
  gap: 8px;
}
.splash-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-accent);
  opacity: 0.4;
  animation: dotPulse 1.2s infinite;
}
.splash-dot:nth-child(2) { animation-delay: 0.2s; }
.splash-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
  0%,80%,100% { opacity: 0.4; transform: scale(0.8); }
  40%          { opacity: 1;   transform: scale(1.2); }
}

/* ── LOGIN ──────────────────────────────────────── */
#screen-login { padding: 0 24px 40px; }

.login-header {
  padding: max(64px, calc(env(safe-area-inset-top, 0px) + 20px)) 0 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.login-logo {
  width: 44px; height: 44px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 16px rgba(200,168,75,0.3));
}
.login-title {
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 6px;
}
.login-sub { font-size: 13px; color: var(--gray); margin-bottom: 0; }

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 15px 18px;
  background: rgba(200,168,75,0.05);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--gold-accent); }
.form-input::placeholder { color: rgba(255,255,255,0.25); }

.login-btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: var(--gold-accent);
  border: none;
  border-radius: var(--radius-sm);
  color: #0D0D0D;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  transition: all 0.2s;
}
.login-btn:active { transform: scale(0.98); }

.login-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-top: 24px;
  line-height: 1.6;
}
.login-note span { color: var(--gold-accent); font-weight: bold; }

/* ── DASHBOARD ──────────────────────────────────── */
#screen-dashboard { overflow-y: auto; overscroll-behavior: contain; }

.dash-header {
  padding: max(52px, calc(env(safe-area-inset-top, 0px) + 8px)) 24px 20px;
  background: linear-gradient(to bottom, rgba(200,168,75,0.1) 0%, var(--navy-dark) 100%);
  border-bottom: 1px solid rgba(200,168,75,0.1);
  flex-shrink: 0;
}

.dash-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.dash-greeting {
  font-size: 11px;
  color: var(--gold-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 4px;
}
.dash-name {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: bold;
}

.driver-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  color: #0D0D0D;
  font-size: 15px;
  font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(200,168,75,0.4);
  flex-shrink: 0;
}

/* Online/Offline toggle row */
.online-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 14px;
}
.online-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray);
  flex-shrink: 0;
  transition: background 0.3s;
}
.online-status-dot.online { background: var(--online); box-shadow: 0 0 8px rgba(29,185,84,0.6); }
.online-status-label {
  font-size: 13px;
  font-weight: bold;
  color: var(--gray);
  transition: color 0.3s;
}
.online-status-label.online { color: var(--online); }

/* Toggle switch (reuse client app pattern) */
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  transition: background 0.25s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--online); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* Dashboard map (Leaflet) */
.dash-map {
  margin: 0 24px;
  height: 190px;
  border-radius: var(--radius);
  border: 1px solid rgba(200,168,75,0.15);
  overflow: hidden;
  position: relative;
}
.leaflet-container { background: #111 !important; }
.leaflet-control-zoom a { background: #1a1a2e !important; color: #fff !important; border-color: rgba(255,255,255,0.1) !important; }

/* Trip list helpers */
.rtrip-loading, .rtrip-empty {
  text-align: center; padding: 24px; font-size: 13px; color: var(--gray);
}

/* Stats */
.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 16px 24px;
}
.stat-card {
  background: rgba(200,168,75,0.05);
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.stat-icon { color: var(--gold-accent); display: flex; align-items: center; justify-content: center; margin-bottom: 2px; }
.stat-val { font-size: 15px; font-weight: bold; color: var(--gold-accent); line-height: 1; }
.stat-lbl { font-size: 9px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }

/* Recent trips */
.dash-section { padding: 0 24px 100px; }
.dash-section-title {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin: 20px 0 12px;
}

.recent-trip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(200,168,75,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.18s;
}
.recent-trip-item:active { border-color: rgba(200,168,75,0.3); }

.rtrip-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent); flex-shrink: 0;
}
.rtrip-info { flex: 1; }
.rtrip-name { font-size: 13px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.rtrip-route { font-size: 11px; color: var(--gray); }
.rtrip-fare { font-size: 14px; font-weight: bold; color: var(--gold-accent); font-family: Georgia, serif; }

/* ── TRIP ASSIGNMENT ─────────────────────────────── */
#screen-request {
  background: rgba(0,0,0,0.97);
  justify-content: flex-end;
}

.assignment-header {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: max(44px, env(safe-area-inset-top, 0px));
}
.assignment-badge {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.18em;
  color: var(--gold-accent);
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.3);
  padding: 6px 20px;
  border-radius: 20px;
}
.assignment-sub {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.08em;
}

.request-sheet {
  background: var(--navy-dark);
  border-radius: 24px 24px 0 0;
  padding: 20px 24px 36px;
  border-top: 1px solid rgba(200,168,75,0.2);
}
.request-client-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.request-client-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  color: #0D0D0D;
  font-size: 13px; font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.request-client-name { font-size: 16px; font-weight: bold; color: var(--white); font-family: Georgia, serif; }
.request-client-rating { font-size: 12px; color: var(--gold-accent); }
.request-type-badge {
  margin-left: auto;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.25);
  color: var(--gold-accent);
  font-size: 9px; font-weight: bold;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.request-route {
  background: rgba(200,168,75,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 12px;
}
.request-route-row {
  display: flex; align-items: flex-start; gap: 10px; padding: 6px 0;
}
.request-route-row + .request-route-row { border-top: 1px solid rgba(255,255,255,0.05); }
.route-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 3px; flex-shrink: 0; }
.route-dot.pickup  { background: var(--online); }
.route-dot.dropoff { background: var(--gold-accent); }
.route-label { font-size: 10px; color: var(--gray); margin-bottom: 1px; text-transform: uppercase; letter-spacing: 0.08em; }
.route-addr  { font-size: 12px; color: var(--white); line-height: 1.4; }

.request-meta { display: flex; gap: 10px; margin-bottom: 16px; }
.request-meta-item {
  flex: 1;
  background: rgba(200,168,75,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--radius-sm);
  padding: 12px; text-align: center;
}
.request-meta-val { font-size: 15px; font-weight: bold; color: var(--gold-accent); display: block; font-family: Georgia, serif; }
.request-meta-lbl { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

.btn-accept {
  padding: 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--gold-accent);
  color: var(--black);
  font-size: 14px; font-weight: bold;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; font-family: Arial, Helvetica, sans-serif;
  transition: all 0.2s;
}
.btn-accept:active { transform: scale(0.98); }

.btn-decline {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(231,76,60,0.5);
  background: rgba(231,76,60,0.08);
  color: #e74c3c;
  font-size: 14px; font-weight: bold;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; font-family: Arial, Helvetica, sans-serif;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-decline:active { transform: scale(0.98); background: rgba(231,76,60,0.18); }

/* ── ACTIVE TRIP ─────────────────────────────────── */
#screen-active-trip { background: var(--navy-dark); }

.trip-map {
  height: 240px;
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(200,168,75,0.07) 28px, rgba(200,168,75,0.07) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(200,168,75,0.07) 28px, rgba(200,168,75,0.07) 29px),
    var(--navy-dark);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.trip-map-car { color: var(--gold-accent); animation: mapFloat 3s ease-in-out infinite; }
.trip-map-back {
  position: absolute; top: max(16px, env(safe-area-inset-top, 16px)); left: 16px;
  width: 40px; height: 40px;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 50%;
  color: var(--gold-accent);
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

#trip-status-label {
  font-size: 11px; font-weight: bold;
  letter-spacing: 0.06em; color: var(--gold-accent);
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(200,168,75,0.2);
  padding: 6px 14px; border-radius: 20px;
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}

/* Step progress */
.trip-steps {
  display: flex; align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(200,168,75,0.1);
  flex-shrink: 0;
}
.trip-step {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; gap: 6px; position: relative;
}
.trip-step + .trip-step::before {
  content: '';
  position: absolute; left: -50%; top: 13px;
  width: 100%; height: 2px;
  background: rgba(255,255,255,0.08); z-index: 0;
}
.trip-step.done + .trip-step::before,
.trip-step.active + .trip-step::before { background: var(--gold-accent); }
.step-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gray); z-index: 1; transition: all 0.3s;
}
.trip-step.active .step-dot { background: rgba(200,168,75,0.12); border-color: var(--gold-accent); color: var(--gold-accent); }
.trip-step.done   .step-dot { background: var(--gold-accent); border-color: var(--gold-accent); color: #0D0D0D; }
.step-lbl { font-size: 9px; color: var(--gray); text-align: center; line-height: 1.3; }
.trip-step.active .step-lbl { color: var(--gold-accent); }

/* Trip body */
.trip-body { flex: 1; overflow-y: auto; padding: 16px 24px; overscroll-behavior: contain; }

.trip-client-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(200,168,75,0.05);
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: var(--radius-sm);
  padding: 14px; margin-bottom: 12px;
}
.trip-client-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  color: #0D0D0D; font-size: 14px; font-weight: bold;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trip-client-name { font-size: 15px; font-weight: bold; color: var(--white); margin-bottom: 2px; font-family: Georgia, serif; }
.trip-client-rating { font-size: 12px; color: var(--gold-accent); }
.trip-call-btn {
  margin-left: auto;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(29,185,84,0.08);
  border: 1px solid rgba(29,185,84,0.25);
  color: var(--online); cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.trip-route-card {
  background: rgba(200,168,75,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--radius-sm);
  padding: 14px; margin-bottom: 12px;
}
.trip-route-row { display: flex; align-items: flex-start; gap: 12px; padding: 6px 0; }
.trip-route-row + .trip-route-row { border-top: 1px solid rgba(255,255,255,0.05); }

.trip-details-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 16px;
}
.trip-detail-item {
  background: rgba(200,168,75,0.05);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 8px; text-align: center;
}
.trip-detail-val { font-size: 14px; font-weight: bold; color: var(--gold-accent); display: block; margin-bottom: 2px; font-family: Georgia, serif; }
.trip-detail-lbl { font-size: 9px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }

#trip-action-btn {
  width: 100%; padding: 17px;
  border: none; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: bold;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; font-family: Arial, Helvetica, sans-serif;
  transition: all 0.2s;
  background: var(--gold-accent); color: var(--black);
}
#trip-action-btn:active { transform: scale(0.98); }

/* ── TRIP COMPLETE ───────────────────────────────── */
#screen-trip-complete {
  align-items: center; justify-content: center;
  text-align: center;
  padding: max(40px, calc(env(safe-area-inset-top, 0px) + 20px)) 28px max(40px, calc(env(safe-area-inset-bottom, 0px) + 16px));
}
.complete-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(26,107,60,0.12);
  border: 2px solid rgba(29,185,84,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--online); margin: 0 auto 20px;
}
.complete-title { font-family: Georgia, serif; font-size: 28px; font-weight: bold; color: var(--white); margin-bottom: 8px; }
.complete-sub { font-size: 13px; color: var(--gray); margin-bottom: 28px; line-height: 1.6; }
.complete-trip-summary {
  margin-bottom: 28px;
}
.complete-summary-line { font-size: 13px; color: var(--gray); }
.rating-row { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; }
.rating-star { font-size: 32px; cursor: pointer; opacity: 0.25; color: var(--gold-accent); transition: opacity 0.2s, transform 0.15s; }
.rating-star.active { opacity: 1; }
.rating-star:hover  { transform: scale(1.15); }

/* ── TRIPS HISTORY ───────────────────────────────── */
#screen-trips { overflow-y: auto; overscroll-behavior: contain; }

.trips-header {
  padding: max(56px, calc(env(safe-area-inset-top, 0px) + 12px)) 24px 20px;
  background: linear-gradient(to bottom, rgba(200,168,75,0.1) 0%, var(--navy-dark) 100%);
  border-bottom: 1px solid rgba(200,168,75,0.1);
  flex-shrink: 0;
}
.trips-header-title { font-family: Georgia, serif; font-size: 1.6rem; font-weight: bold; color: var(--white); }

.trips-filter { display: flex; gap: 8px; padding: 16px 24px 8px; flex-shrink: 0; }
.filter-chip {
  padding: 7px 16px; border-radius: 20px;
  border: 1px solid rgba(200,168,75,0.2);
  background: transparent; color: var(--gray);
  font-size: 12px; font-weight: bold; cursor: pointer; transition: all 0.2s;
}
.filter-chip.active {
  background: rgba(200,168,75,0.1);
  border-color: var(--gold-accent); color: var(--gold-accent);
}

.trips-list { padding: 0 24px 100px; }

.trip-history-card {
  background: rgba(200,168,75,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--radius);
  padding: 16px; margin-bottom: 10px; cursor: pointer;
  transition: border-color 0.18s;
}
.trip-history-card:active { border-color: rgba(200,168,75,0.3); }

.thc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.thc-type { font-size: 11px; font-weight: bold; color: var(--gold-accent); letter-spacing: 0.08em; text-transform: uppercase; }
.thc-route { font-size: 12px; color: var(--gray); margin-bottom: 10px; line-height: 1.5; }
.thc-meta { display: flex; align-items: center; justify-content: space-between; }
.thc-date { font-size: 11px; color: var(--gray); }
.thc-status {
  font-size: 10px; font-weight: bold; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}
.thc-status.completed { background: rgba(26,107,60,0.15); border: 1px solid rgba(29,185,84,0.2); color: #4CAF50; }
.thc-status.cancelled { background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.2); color: #e05a4a; }

/* ── PAYROLL ─────────────────────────────────────── */
#screen-payroll { overflow-y: auto; overscroll-behavior: contain; }

.payroll-header {
  padding: max(56px, calc(env(safe-area-inset-top, 0px) + 12px)) 24px 20px;
  background: linear-gradient(to bottom, rgba(200,168,75,0.1) 0%, var(--navy-dark) 100%);
  border-bottom: 1px solid rgba(200,168,75,0.1);
  flex-shrink: 0;
}
.payroll-header-title { font-family: Georgia, serif; font-size: 1.6rem; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.payroll-header-sub { font-size: 12px; color: var(--gray); }

.payroll-body { padding: 16px 24px 100px; }

/* Current period card */
.payroll-period-card {
  background: rgba(200,168,75,0.06);
  border: 1px solid rgba(200,168,75,0.22);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.payroll-period-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-accent), var(--gold-light));
}
.payroll-period-top {
  display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px;
}
.payroll-period-label { font-size: 10px; color: var(--gray); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.payroll-period-range { font-size: 14px; font-weight: bold; color: var(--white); }
.payroll-payday-pill {
  background: rgba(29,185,84,0.1);
  border: 1px solid rgba(29,185,84,0.25);
  color: var(--online);
  font-size: 10px; font-weight: bold;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  white-space: nowrap;
}
.payroll-net-label { font-size: 10px; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.payroll-net-val { font-family: Georgia, serif; font-size: 38px; font-weight: bold; color: var(--gold-accent); line-height: 1; margin-bottom: 4px; }
.payroll-net-sub { font-size: 11px; color: var(--gray); }

/* Breakdown table */
.payroll-breakdown {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}
.payroll-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.payroll-row:last-child { border-bottom: none; }
.payroll-row.total {
  background: rgba(200,168,75,0.05);
  border-top: 1px solid rgba(200,168,75,0.15);
}
.payroll-row.deduction .payroll-row-val { color: #e05a4a; }
.payroll-row-label { font-size: 13px; color: var(--white); }
.payroll-row-sub { font-size: 11px; color: var(--gray); margin-top: 1px; }
.payroll-row-val { font-size: 14px; font-weight: bold; color: var(--gold-accent); font-family: Georgia, serif; }
.payroll-row.total .payroll-row-label { font-weight: bold; font-size: 14px; }
.payroll-row.total .payroll-row-val { font-size: 16px; }

/* Pay slip history */
.payslip-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px;
  background: rgba(200,168,75,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.18s;
}
.payslip-item:active { border-color: rgba(200,168,75,0.3); }
.payslip-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.payslip-info { flex: 1; }
.payslip-period { font-size: 13px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.payslip-date   { font-size: 11px; color: var(--gray); }
.payslip-amount { font-size: 15px; font-weight: bold; color: var(--gold-accent); font-family: Georgia, serif; }
.payslip-download { font-size: 11px; color: var(--gold-accent); font-weight: bold; margin-left: 4px; }

/* ── DRIVER PROFILE ──────────────────────────────── */
#screen-driver-profile { overflow-y: auto; overscroll-behavior: contain; }

.drv-banner {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #060f22 55%);
  border-bottom: 1px solid rgba(200,168,75,0.18);
  display: flex; flex-direction: column; align-items: center;
  padding: max(56px, calc(env(safe-area-inset-top, 0px) + 12px)) 24px 24px; gap: 6px; position: relative;
}
.drv-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(200,168,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.drv-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  color: #0D0D0D; font-size: 26px; font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(200,168,75,0.4);
  box-shadow: 0 4px 24px rgba(200,168,75,0.2);
  margin-bottom: 8px;
}
.drv-name { font-family: Georgia, serif; font-size: 20px; font-weight: bold; color: var(--white); }
.drv-id-tag { font-size: 12px; color: var(--gray); }
.drv-rating-pill {
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.3);
  color: var(--gold-accent);
  font-size: 11px; font-weight: bold;
  padding: 5px 16px; border-radius: 20px; margin-top: 4px;
}

.drv-stats-row {
  display: flex; align-items: center; justify-content: space-around;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drv-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1; }
.drv-stat-val { font-size: 22px; font-weight: bold; color: var(--gold-accent); line-height: 1; font-family: Georgia, serif; }
.drv-stat-lbl { font-size: 9px; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; }
.drv-stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.08); }

.drv-menu-wrap { padding: 16px 24px 8px; display: flex; flex-direction: column; gap: 10px; }
.drv-menu-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(200,168,75,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--radius);
  padding: 16px; cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  width: 100%; text-align: left;
}
.drv-menu-item:hover { background: rgba(200,168,75,0.08); border-color: rgba(200,168,75,0.25); }
.drv-menu-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent); flex-shrink: 0;
}
.drv-menu-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.drv-menu-title { font-size: 15px; font-weight: bold; color: var(--white); }
.drv-menu-sub   { font-size: 12px; color: var(--gray); }
.drv-menu-arrow { color: var(--gray); font-size: 22px; line-height: 1; }

.drv-signout-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 12px 24px 0;
  padding: 15px; border-radius: var(--radius);
  border: 1px solid rgba(192,57,43,0.35);
  background: rgba(192,57,43,0.06);
  color: #e05a4a; font-size: 14px; font-weight: bold;
  cursor: pointer; width: calc(100% - 48px);
  font-family: Arial, Helvetica, sans-serif;
  transition: background 0.18s;
}
.drv-signout-btn:hover { background: rgba(192,57,43,0.12); }
.drv-version { text-align: center; font-size: 11px; color: rgba(168,168,168,0.4); padding: 16px 0 96px; letter-spacing: 0.05em; }

/* ── VEHICLE & DOCS ──────────────────────────────── */
.vehicle-body { padding: 16px 24px 100px; }
.vehicle-card {
  background: rgba(200,168,75,0.05);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: var(--radius);
  padding: 20px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.vehicle-icon { color: var(--gold-accent); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.vehicle-make { font-family: Georgia, serif; font-size: 18px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.vehicle-plate { font-size: 12px; color: var(--gold-accent); font-weight: bold; letter-spacing: 0.12em; }
.vehicle-year  { font-size: 12px; color: var(--gray); margin-top: 2px; }

.doc-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px;
  background: rgba(200,168,75,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.doc-left { display: flex; align-items: center; gap: 12px; }
.doc-icon { color: var(--gold-accent); display: flex; align-items: center; justify-content: center; }
.doc-name   { font-size: 13px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.doc-expiry { font-size: 11px; color: var(--gray); }
.doc-status {
  font-size: 10px; font-weight: bold; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.doc-status.valid    { background: rgba(26,107,60,0.15); border: 1px solid rgba(29,185,84,0.2); color: #4CAF50; }
.doc-status.expiring { background: rgba(230,126,34,0.1);  border: 1px solid rgba(230,126,34,0.3); color: var(--warn); }
.doc-status.expired  { background: rgba(192,57,43,0.12);  border: 1px solid rgba(192,57,43,0.35); color: #e74c3c; }

/* ── TRIP DETAIL INLINE HELPERS ─────────────────── */
.detail-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.detail-row:last-child { border-bottom: none; }
.detail-label { font-size: 13px; color: var(--gray); }
.detail-value { font-size: 13px; font-weight: bold; color: var(--white); }
.detail-card {
  background: rgba(200,168,75,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

/* ── SCHEDULE / CALENDAR ─────────────────────────── */
.schedule-body {
  padding: 0 16px 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  flex: 1;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px 14px;
}
.cal-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.3);
  background: rgba(200,168,75,0.07);
  color: var(--gold-accent);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.cal-nav-btn:active { background: rgba(200,168,75,0.18); }
.cal-month-label {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.cal-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 2px 14px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}
.cal-day-header {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 0 8px;
}
.cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 2px 5px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  min-height: 46px;
  gap: 4px;
}
.cal-day:active { background: rgba(200,168,75,0.1); }
.cal-day.today {
  border-color: rgba(200,168,75,0.5);
  background: rgba(200,168,75,0.06);
}
.cal-day.selected {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
}
.cal-day.selected .cal-day-num { color: #0D0D0D; font-weight: 700; }
.cal-day.other-month { opacity: 0.25; pointer-events: none; }
.cal-day-num {
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
  line-height: 1;
}

/* shift indicator dots */
.shift-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.shift-dot.morning { background: #4A9EFF; }
.shift-dot.evening { background: var(--gold-accent); }
.shift-dot.night   { background: #9B6FDF; }
.shift-dot.off     { background: rgba(255,255,255,0.2); }

/* selected day: dot stays white/contrasting */
.cal-day.selected .shift-dot.morning { background: #1a6fa8; }
.cal-day.selected .shift-dot.evening { background: #7a5c10; }
.cal-day.selected .shift-dot.night   { background: #6042a0; }

/* ── SHIFT DETAIL CARD ───────────────────────────── */
.shift-detail-card {
  background: rgba(200,168,75,0.05);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  margin-bottom: 20px;
  animation: fadeUp 0.25s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.shift-detail-date {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-accent);
  margin-bottom: 10px;
}
.shift-type-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.shift-type-chip.morning { background: rgba(74,158,255,0.15); color: #4A9EFF; border: 1px solid rgba(74,158,255,0.25); }
.shift-type-chip.evening { background: rgba(200,168,75,0.15); color: var(--gold-accent); border: 1px solid rgba(200,168,75,0.25); }
.shift-type-chip.night   { background: rgba(155,111,223,0.15); color: #9B6FDF; border: 1px solid rgba(155,111,223,0.25); }
.shift-type-chip.off     { background: rgba(255,255,255,0.06); color: var(--gray); border: 1px solid rgba(255,255,255,0.1); }
.shift-detail-rows { display: flex; flex-direction: column; gap: 10px; }
.shift-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.shift-detail-lbl {
  font-size: 12px;
  color: var(--gray);
  width: 64px;
  flex-shrink: 0;
}
.shift-detail-val {
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
}
.shift-off-msg {
  font-size: 14px;
  color: var(--gray);
  text-align: center;
  padding: 10px 0;
}

/* ── CALENDAR SUMMARY PILLS ──────────────────────── */
.cal-summary {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 4px 0 8px;
}
.cal-summary-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: var(--white);
}
.cal-summary-pill .pill-count {
  font-weight: 700;
  font-size: 14px;
}
.cal-summary-pill.morning-pill { border-color: rgba(74,158,255,0.2); }
.cal-summary-pill.evening-pill { border-color: rgba(200,168,75,0.2); }
.cal-summary-pill.night-pill   { border-color: rgba(155,111,223,0.2); }
.cal-summary-pill.off-pill     { border-color: rgba(255,255,255,0.1); }


/* ── Personal Info & Settings ───────── */
.info-body, .settings-body {
  padding: 0 24px 100px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.info-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 28px;
}
.info-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  color: #0D0D0D; font-size: 22px; font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(200,168,75,0.4);
  box-shadow: 0 4px 20px rgba(200,168,75,0.18);
}

.form-error-bar {
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  color: #e05a4a;
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  display: none;
}

/* ── Reviews screen ─────────────────── */
.reviews-body { padding: 16px 16px 40px; }
.reviews-summary {
  background: rgba(200,168,75,0.06);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}
.reviews-avg-wrap { display: flex; align-items: center; gap: 16px; }
.reviews-avg-score { font-size: 44px; font-weight: 700; color: var(--gold); line-height: 1; }
.reviews-stars { font-size: 22px; letter-spacing: 2px; margin-bottom: 4px; }
.reviews-avg-count { font-size: 13px; color: rgba(255,255,255,0.5); }
.reviews-loading { display: flex; gap: 8px; padding: 40px; justify-content: center; }

.review-card-drv {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.review-card-drv-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.review-card-drv-client { font-size: 14px; font-weight: 600; color: var(--white); flex: 1; }
.review-card-drv-stars { font-size: 15px; letter-spacing: 1px; }
.review-card-drv-date { font-size: 11px; color: rgba(255,255,255,0.35); margin-left: auto; }
.review-card-drv-comment { font-size: 13px; color: rgba(255,255,255,0.6); font-style: italic; line-height: 1.5; margin-bottom: 6px; }
.review-card-drv-tip { font-size: 12px; color: var(--gold); font-weight: 600; }

/* ── Payout Account ── */
.payout-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
}
.payout-method-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: rgba(200,168,75,0.04);
  border: 1.5px solid rgba(200,168,75,0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.18s;
  font-family: Arial, Helvetica, sans-serif;
}
.payout-method-btn.active {
  background: rgba(200,168,75,0.10);
  border-color: var(--gold-accent);
}
.payout-method-icon { font-size: 22px; line-height: 1; }
.payout-method-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 0.02em; text-align: center; }
.payout-method-btn.active .payout-method-label { color: var(--gold-accent); }
