/* Opulence Client App — Rebuilt from scratch */

/* ── DESIGN TOKENS ─────────────────────────────── */
:root {
  --bg:          #09111F;
  --surface:     #111C2E;
  --surface-2:   #182438;
  --surface-3:   #1E2D45;
  --gold:        #C8A84B;
  --gold-dark:   #8B6914;
  --gold-light:  #E0C97A;
  --gold-glow:   rgba(200,168,75,0.15);
  --gold-border: rgba(200,168,75,0.2);
  --white:       #FFFFFF;
  --gray:        #8A93A8;
  --gray-light:  #C4C9D6;
  --border:      rgba(255,255,255,0.07);
  --danger:      #C0392B;
  --danger-bg:   rgba(192,57,43,0.15);
  --success:     #1A8C4E;
  --success-bg:  rgba(26,140,78,0.15);
  --warn:        #E67E22;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   6px;
  --tab-h:       68px;
  --gold-accent: #C8A84B;
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; -webkit-user-select: none; user-select: none; }
html, body { height: 100%; overflow: hidden; overscroll-behavior: none; background: var(--bg); font-family: Arial, Helvetica, sans-serif; color: var(--white); }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; color-scheme: dark; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; touch-action: manipulation; }
input, select, textarea { font-family: inherit; font-size: 16px; color: var(--white); outline: none; -webkit-user-select: text; user-select: text; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 2px; }

/* ── PAGE CURTAIN ─────────────────────────────── */
#page-curtain {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99999;
  transition: opacity 0.3s ease;
}
#page-curtain.lifted { opacity: 0; pointer-events: none; }

/* ── APP SHELL ─────────────────────────────────── */
body {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
}

#app {
  width: 100%;
  max-width: 430px;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  overscroll-behavior: none;
  display: flex;
  flex-direction: column;
}

@media (min-width: 431px) {
  body { background: #09111F; }
  #app { height: 100vh; height: 100dvh; }
  .splash-corner { display: none; }
}

/* ── SCREENS ───────────────────────────────────── */
.screen {
  display: none;
  flex-direction: column;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg);
  z-index: 0;
}
.screen.active { display: flex; z-index: 10; animation: slideInFromRight 0.28s ease-out; }
.screen.prev { pointer-events: none; z-index: 9; animation: slideOutToLeft 0.28s ease-out forwards; }

/* ── SCREEN HEADER ───────────────────────────── */
.screen-header {
  display: flex; align-items: center; gap: 12px;
  padding: max(56px, calc(env(safe-area-inset-top, 0px) + 12px)) 20px 16px;
  background: var(--bg);
  flex-shrink: 0; position: relative; z-index: 10;
}
.screen-header::after {
  content: ''; position: absolute; bottom: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.25), transparent);
}
.back-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface); border: 1px solid rgba(200,168,75,0.2);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: background 0.15s;
}
.back-btn:active { background: var(--surface-2); }
.screen-header-title {
  position: absolute; left: 0; right: 0;
  text-align: center; pointer-events: none; padding: 0 62px;
  font-family: Georgia, serif; font-size: 1.05rem; font-weight: bold; color: var(--white);
}

.screen-tab-header { display: flex; align-items: center; justify-content: center; padding: max(56px, calc(env(safe-area-inset-top, 0px) + 12px)) 20px 12px; flex-shrink: 0; position: relative; }
.screen-tab-header::after {
  content: ''; position: absolute; bottom: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.25), transparent);
}
.screen-tab-title { font-family: Georgia, serif; font-size: 1.2rem; font-weight: bold; color: var(--white); }

/* ── BOOKING PROGRESS BAR ───────────────────────── */
.progress-bar { height: 2px; background: var(--border); flex-shrink: 0; overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% 100%;
  animation: progressShimmer 2.5s ease-in-out infinite;
  transition: width 0.4s ease;
}
@keyframes progressShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── BOTTOM TAB NAV ────────────────────────────── */
.bottom-nav {
  display: flex; height: var(--tab-h);
  background: rgba(7,13,26,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
  overflow: hidden;
}
.bottom-nav.hidden { display: none; }
.nav-tab {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 6px 2px; color: rgba(255,255,255,0.32);
  transition: color 0.15s; position: relative;
}
.nav-tab.active { color: var(--gold); }
.nav-tab.active::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 28px; height: 2px; background: var(--gold); border-radius: 0 0 3px 3px;
}
.nav-tab-icon {
  width: 44px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-tab.active .nav-tab-icon { background: rgba(200,168,75,0.12); }
.nav-tab-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.nav-tab-label { font-size: 9px; font-weight: 600; letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

/* ── SPLASH ─────────────────────────────────────── */
#screen-splash {
  background: #0d1b35;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.splash-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 15%, rgba(30,60,110,0.6) 0%, transparent 70%), #0d1b35;
  z-index: 0;
}
.splash-corner {
  position: absolute; width: 44px; height: 44px; z-index: 2;
}
.splash-corner-tl {
  top: 28px; left: 28px;
  border-top: 1.5px solid rgba(200,168,75,0.7);
  border-left: 1.5px solid rgba(200,168,75,0.7);
}
.splash-corner-br {
  bottom: 28px; right: 28px;
  border-bottom: 1.5px solid rgba(200,168,75,0.7);
  border-right: 1.5px solid rgba(200,168,75,0.7);
}
.splash-rays { display: none; }
.splash-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  width: 100%; height: 100%;
  padding: 28px 28px 40px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
}
.splash-logo-wrap { margin-bottom: 24px; flex-shrink: 0; display: flex; justify-content: center; width: 100%; }
.splash-logo { width: 220px; height: 220px; object-fit: contain; display: block; margin: 0 auto; }
.splash-brand {
  font-family: Georgia, serif; font-size: 1.25rem; font-weight: 400;
  color: #fff; letter-spacing: 0.35em;
  margin-bottom: 0; white-space: nowrap;
}
.splash-divider {
  width: 75%; height: 1px;
  background: rgba(200,168,75,0.55);
  margin: 10px auto 8px;
}
.splash-divider-dot { display: none; }
.splash-title {
  font-family: Georgia, serif; font-size: 1.5rem; font-weight: 400;
  font-style: italic; color: var(--gold);
  letter-spacing: 0.04em; margin-bottom: 0; text-align: center;
}
.splash-tagline {
  font-family: Arial, sans-serif;
  font-size: 0.72rem; font-weight: 400; font-style: normal;
  color: rgba(200,168,75,0.6); line-height: 1.3; letter-spacing: 0.14em;
  text-transform: uppercase; white-space: normal;
  margin-top: 10px; margin-bottom: 0;
  text-align: center; width: 100%;
}
.splash-sep {
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.12);
  margin-top: 32px; margin-bottom: 16px;
}
.splash-actions { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.splash-sub { font-size: 13px; color: rgba(255,255,255,0.6); }
.splash-sub span { color: var(--gold); font-weight: 600; }

/* ── AUTH SCREEN ────────────────────────────────── */
#screen-auth { background: var(--bg); }
.auth-hero {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: max(72px, calc(env(safe-area-inset-top, 0px) + 28px)) 32px 40px;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(200,168,75,0.1) 0%, transparent 70%), var(--bg);
  border-bottom: 1px solid var(--border); text-align: center;
}
.auth-hero-overlay { display: none; }
.auth-hero-logo img { width: 64px; height: 64px; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(200,168,75,0.35)); margin-bottom: 20px; }
.auth-hero-logo p { font-family: Georgia, serif; font-size: 1rem; color: var(--gray); font-weight: 400; font-style: italic; letter-spacing: 0.06em; margin-bottom: 6px; }
.auth-body { flex: 1; display: flex; flex-direction: column; padding: 32px 24px 24px; gap: 14px; overflow-y: auto; overscroll-behavior: contain; }
.auth-title { font-family: Georgia, serif; font-size: 1.55rem; color: var(--white); text-align: center; margin-bottom: 4px; }
.auth-subtitle { font-size: 13px; color: var(--gray); text-align: center; margin-bottom: 8px; }
.auth-btn-apple {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px; background: var(--white); color: #000;
  border-radius: var(--radius); font-size: 14px; font-weight: bold; transition: opacity 0.15s;
}
.auth-btn-apple:active { opacity: 0.85; }
.auth-btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px; background: var(--surface); color: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-weight: bold;
}
.auth-btn-google:active { background: var(--surface-2); }
.auth-btn-email {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px; background: transparent; color: var(--gold);
  border: 1px solid var(--gold-border); border-radius: var(--radius); font-size: 14px; font-weight: bold;
}
.auth-btn-email:active { background: var(--gold-glow); }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--gray); font-size: 12px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-footer { text-align: center; font-size: 12px; color: var(--gray); margin-top: auto; padding-top: 8px; }
.auth-footer span { color: var(--gold); cursor: pointer; }

/* ── FORMS ──────────────────────────────────────── */
.auth-form-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: max(52px, calc(env(safe-area-inset-top, 0px) + 8px)) 16px 0;
  flex-shrink: 0;
}
.auth-form-logo { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 2px 10px rgba(200,168,75,0.35)); }
.auth-form-hero {
  text-align: center; padding: 16px 24px 8px; flex-shrink: 0;
  background: radial-gradient(ellipse 140% 120% at 50% 0%, rgba(200,168,75,0.09) 0%, transparent 65%);
}
.auth-form-title { font-family: Georgia, serif; font-size: 1.55rem; font-weight: bold; color: var(--white); margin: 0 0 6px; }
.auth-form-sub { font-size: 13px; color: var(--gray); margin: 0; }
.form-body { flex: 1; padding: 8px 24px max(32px, env(safe-area-inset-bottom, 0px)); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 10px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-label-hint { font-weight: normal; text-transform: none; letter-spacing: 0; font-size: 11px; margin-left: 4px; }
.form-input {
  width: 100%; padding: 13px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--white); font-size: 16px;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: rgba(200,168,75,0.45); box-shadow: 0 0 0 3px rgba(200,168,75,0.07); outline: none; }
.form-input::placeholder { color: rgba(255,255,255,0.2); }
textarea.form-input { resize: none; line-height: 1.5; }
select.form-input {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A84B' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-input-icon { position: relative; }
.form-input-icon .form-input { padding-right: 44px; }
.input-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--gray); cursor: pointer; padding: 4px; }
.form-field-error { display: block; font-size: 11px; color: #e05555; margin-top: 5px; min-height: 14px; }
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }
.form-forgot { float: right; font-size: 11px; color: var(--gold); cursor: pointer; margin-top: -14px; margin-bottom: 14px; }
.section-title-sm { font-family: Georgia, serif; font-size: 1rem; font-weight: bold; color: var(--white); margin-bottom: 4px; text-align: center; }
.section-sub { font-size: 13px; color: var(--gray); margin-bottom: 20px; text-align: center; }
.terms { font-size: 11px; color: var(--gray); text-align: center; line-height: 1.6; margin-top: 8px; }
.terms a { color: var(--gold); }

/* ── BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px; background: var(--gold); color: #09111F;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: bold;
  letter-spacing: 0.1em; text-transform: uppercase; transition: opacity 0.15s;
}
.btn-primary:active { opacity: 0.85; }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-outline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; background: transparent; color: var(--gold);
  border: 1px solid var(--gold-border); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: bold; letter-spacing: 0.08em; text-transform: uppercase;
}
.btn-outline:active { background: var(--gold-glow); }

/* ── HOME SCREEN ────────────────────────────────── */
#screen-home { background: var(--bg); }
.home-wrap { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: calc(var(--tab-h) + max(20px, env(safe-area-inset-bottom, 0px))); overscroll-behavior: contain; }
.svc-page-wrap { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: 16px; overscroll-behavior: contain; }
.home-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }

/* ── HOME GREETING ──────────────────────────────── */
.home-greeting-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: max(52px, calc(env(safe-area-inset-top, 0px) + 8px)) 20px 16px; flex-shrink: 0;
}
.home-greeting-line { font-size: 12px; color: var(--gray); letter-spacing: 0.04em; margin-bottom: 2px; line-height: 1.5; transition: color 0.4s; }
.home-greeting-ai   { color: rgba(200, 168, 75, 0.75); }
.home-greeting-name { font-family: Georgia, serif; font-size: 1.4rem; font-weight: bold; color: var(--white); }
.home-greeting-right { display: flex; align-items: center; gap: 10px; }
.home-loyalty-pill {
  display: flex; align-items: center; gap: 5px;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  border-radius: 20px; padding: 5px 12px;
  font-size: 11px; font-weight: 600; color: var(--gold);
  cursor: pointer;
}
.home-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface-2); border: 1.5px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: bold; color: var(--gold);
  cursor: pointer; flex-shrink: 0; letter-spacing: 0.05em;
}
.svc-hero {
  padding: max(64px, calc(env(safe-area-inset-top, 0px) + 20px)) 24px 32px;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(200,168,75,0.1) 0%, transparent 65%);
  text-align: center; border-bottom: 1px solid var(--border);
}
.svc-hero-logo { width: 48px; height: 48px; object-fit: contain; margin-bottom: 16px; filter: drop-shadow(0 4px 16px rgba(200,168,75,0.3)); }
.svc-hero-title { font-family: Georgia, serif; font-size: 1.5rem; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.svc-hero-sub { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.svc-hero-tagline { font-size: 13px; color: var(--gray); }
.home-section-label { font-size: 10px; font-weight: bold; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 20px 24px 10px; }
.svc-card-list { display: flex; flex-direction: column; gap: 12px; padding: 0 16px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; gap: 16px; align-items: flex-start;
}
.svc-card:active { background: var(--surface-2); }
.svc-card-icon {
  width: 44px; height: 44px; background: var(--gold-glow); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 20px;
}
.svc-card-body { flex: 1; }
.svc-card-title { font-family: Georgia, serif; font-size: 1rem; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.svc-card-desc { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 10px; }
.svc-card-list-items { font-size: 12px; color: var(--gray-light); line-height: 1.8; margin-bottom: 12px; padding-left: 12px; }
.svc-card-list-items li::marker { color: var(--gold); }
.svc-card-cta { font-size: 11px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 4px; }
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 16px; }
.quick-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; display: flex; flex-direction: column; gap: 8px; cursor: pointer;
}
.quick-card:active { background: var(--surface-2); }
.quick-card-icon { width: 36px; height: 36px; background: var(--gold-glow); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; }
.quick-card-title { font-size: 13px; font-weight: bold; color: var(--white); }
.quick-card-sub { font-size: 11px; color: var(--gray); }
.quick-card-arrow { color: var(--gray); font-size: 12px; align-self: flex-end; margin-top: auto; }

/* ── BOOK A SERVICE SCREEN ──────────────────────── */
.bsvc-header { padding: max(56px, calc(env(safe-area-inset-top, 0px) + 12px)) 24px 0; flex-shrink: 0; }
.bsvc-title { font-family: Georgia, serif; font-size: 2rem; font-weight: bold; color: var(--white); margin-bottom: 16px; }
.bsvc-divider { height: 1px; background: var(--border); margin-bottom: 0; }
.bsvc-grid-wrap { flex: 1; overflow-y: auto; padding: 24px 20px 88px; overscroll-behavior: contain; }
.bsvc-grid { display: grid; grid-template-columns: 1fr; gap: 16px; width: 100%; }
.bsvc-card {
  background: linear-gradient(145deg, #0e1c30 0%, #0b1826 50%, var(--surface) 100%);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 22px; padding: 28px 24px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer; transition: border-color 0.15s;
  min-height: 200px; position: relative; overflow: hidden;
}
.bsvc-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.bsvc-card:active { border-color: rgba(200,168,75,0.55); }
.bsvc-card-icon { color: var(--gold); margin-bottom: 16px; }
.bsvc-card-bottom { margin-top: auto; }
.bsvc-card-title {
  font-family: Georgia, serif; font-size: 1.55rem; font-weight: bold;
  color: var(--white); line-height: 1.2; margin-bottom: 8px;
}
.bsvc-card-sub { font-size: 13px; color: var(--gray); line-height: 1.55; }
.bsvc-card-arrow { color: var(--gold); font-size: 16px; }
/* ── ACTIVE BOOKING BANNER ──────────────────────── */
.home-active-booking {
  margin: 0 16px 16px;
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(200,168,75,0.08) 100%);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 12px;
}
.home-active-booking:active { opacity: 0.85; }
.home-active-booking-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.home-active-pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(200,168,75,0.5);
  animation: activePulse 1.8s infinite;
}
@keyframes activePulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,168,75,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(200,168,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,168,75,0); }
}
.home-active-label { font-size: 10px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.home-active-type  { font-size: 13px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.home-active-pickup { font-size: 11px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
.home-active-booking-right { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; color: var(--gold); gap: 1px; }
.home-active-eta { font-size: 16px; font-weight: bold; color: var(--gold); line-height: 1; }
.home-active-eta-label { font-size: 9px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }


.svc-why-section { padding: 40px 16px 8px; }
.svc-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.svc-why-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; }
.svc-why-icon { font-size: 24px; margin-bottom: 8px; }
.svc-why-item p:first-of-type { font-size: 12px; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.svc-why-item p:last-of-type { font-size: 11px; color: var(--gray); line-height: 1.4; }
.svc-footer-note { font-size: 11px; color: var(--gray); text-align: center; padding: 16px 24px 32px; }

/* ── SERVICE TIER SELECTION ─────────────────────── */
.tier-scroll { flex: 1; overflow-y: auto; padding: 24px 20px 100px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.tier-intro { margin-bottom: 28px; text-align: left; }
.tier-intro-title { font-family: Georgia, serif; font-size: 1.9rem; font-weight: bold; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.tier-intro-sub { font-size: 13px; color: var(--gray); }
.tier-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 22px; margin-bottom: 14px;
  cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.tier-card[data-tier="premier"] {
  background: linear-gradient(145deg, #0e1c30 0%, var(--surface) 65%);
  border-color: rgba(200,168,75,0.15);
}
.tier-card[data-tier="icon"] {
  background: linear-gradient(145deg, #0b1825 0%, var(--surface) 65%);
  border-color: rgba(200,168,75,0.12);
}
.tier-card.selected { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(200,168,75,0.18), 0 8px 32px rgba(0,0,0,0.3); }
.tier-card.selected[data-tier="signature"] { background: linear-gradient(145deg, rgba(200,168,75,0.07) 0%, var(--surface) 60%); }
.tier-card.selected[data-tier="premier"]   { background: linear-gradient(145deg, rgba(212,184,106,0.09) 0%, #0e1c30 60%); }
.tier-card.selected[data-tier="icon"]      { background: linear-gradient(145deg, rgba(232,207,128,0.09) 0%, #0b1825 60%); }
.tier-card:active { opacity: 0.9; }
.tier-recommended {
  display: inline-block; padding: 3px 12px; margin-bottom: 12px;
  background: var(--gold); color: #09111F;
  border-radius: 20px; font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.tier-ai-rec {
  display: inline-block; padding: 3px 10px; margin-bottom: 12px;
  background: rgba(200,168,75,0.12); color: var(--gold);
  border: 1px solid rgba(200,168,75,0.5); border-radius: 20px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  animation: vrec-in 0.4s ease;
}
@keyframes vrec-in { from { opacity:0; transform:scale(0.9); } to { opacity:1; transform:scale(1); } }
.tier-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.tier-card-info { flex: 1; min-width: 0; }
.tier-card-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.tier-name { font-family: Georgia, serif; font-size: 1.9rem; font-weight: bold; color: var(--white); line-height: 1.1; margin-bottom: 0; }
.tier-subtitle { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tier-vehicles { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 6px; }
.tier-price-tag { font-size: 11px; color: var(--gray); text-align: right; line-height: 1.4; }
.tier-price-tag strong { font-size: 16px; color: var(--white); font-weight: 700; display: block; }
.tier-radio {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border);
  flex-shrink: 0; position: relative; transition: border-color 0.2s;
}
.tier-card.selected .tier-radio { border-color: var(--gold); }
.tier-card.selected .tier-radio::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 11px; height: 11px; background: var(--gold); border-radius: 50%;
}
.tier-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.tier-car-photo { margin: 0 -22px 16px; height: 200px; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.tier-car-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.tier-car-photo-img {
  width: 100%; height: 100%; display: block;
  object-fit: contain; object-position: center center;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}
.tier-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.tier-pill {
  font-size: 11px; color: var(--gray);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 5px 12px; background: transparent;
  transition: color 0.2s, border-color 0.2s;
}
.tier-card.selected .tier-pill { color: rgba(200,168,75,0.85); border-color: rgba(200,168,75,0.3); background: rgba(200,168,75,0.05); }

/* ── VEHICLES ───────────────────────────────────── */
.vehicle-scroll { flex: 1; overflow-y: auto; padding: 8px 16px 100px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.vehicle-tier-header { font-size: 10px; font-weight: bold; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 20px 4px 10px; }
.vehicle-tier-header:first-child { padding-top: 8px; }
.vehicle-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; display: flex; gap: 16px; align-items: center; margin-bottom: 10px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.vehicle-card.selected { border-color: var(--gold); background: var(--surface-2); }
.vehicle-card--icon { border-color: rgba(200,168,75,0.3); }
.vehicle-img { width: 90px; height: 56px; object-fit: contain; flex-shrink: 0; }
.vehicle-info { flex: 1; }
.vehicle-class { font-size: 10px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.vehicle-name { font-size: 14px; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.vehicle-pax { font-size: 11px; color: var(--gray); margin-bottom: 6px; }
.vehicle-price { font-size: 13px; font-weight: bold; color: var(--white); }
.price-from, .price-unit { font-size: 10px; color: var(--gray); font-weight: normal; }
.vehicle-radio {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s; position: relative;
}
.vehicle-card.selected .vehicle-radio { border-color: var(--gold); }
.vehicle-card.selected .vehicle-radio::after { content: ''; position: absolute; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }

/* ── JOURNEY ────────────────────────────────────── */
.journey-body { flex: 1; overflow-y: auto; padding: 24px 20px calc(var(--tab-h) + 20px); -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.jt-screen-title {
  font-family: Georgia, serif; font-size: 2rem; font-weight: bold;
  color: var(--white); line-height: 1.2; margin-bottom: 28px;
}
.journey-type-grid { display: flex; flex-direction: column; }
.journey-type-tile {
  display: flex; flex-direction: row; align-items: center; gap: 16px;
  padding: 18px 0; cursor: pointer;
  border: none; border-bottom: 1px solid var(--border);
  background: none; border-radius: 0;
  transition: opacity 0.15s;
}
.journey-type-tile:first-child { border-top: 1px solid var(--border); }
.journey-type-tile:active { opacity: 0.7; }
.journey-type-tile.selected { background: none; }
.jt-icon {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: all 0.2s;
}
.journey-type-tile.selected .jt-icon {
  background: rgba(200,168,75,0.1); border-color: rgba(200,168,75,0.35);
  color: var(--gold);
}
.jt-text { flex: 1; min-width: 0; }
.jt-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.jt-sub { font-size: 12px; color: var(--gray); line-height: 1.4; }
.jt-check {
  color: var(--border); flex-shrink: 0; transition: color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.journey-type-tile.selected .jt-check { color: var(--gold); }
.jt-info-card { display: none !important; }
.jt-info-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.jt-info-icon { font-size: 16px; }
.jt-info-title { font-size: 13px; font-weight: bold; color: var(--gold); }
.jt-info-desc { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 8px; }
.jt-info-features { font-size: 12px; color: var(--gray-light); line-height: 1.8; }
.jt-info-text { font-size: 12px; color: var(--gray); }
.journey-map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gold-border); margin: 0 16px 16px; flex-shrink: 0; }
#journey-map { height: 200px; width: 100%; background: var(--surface); }
.leaflet-control-zoom a { background: rgba(9,17,31,0.9) !important; color: var(--gold) !important; border-color: var(--gold-border) !important; }
.leaflet-tile-pane { filter: brightness(0.85) contrast(1.1); }
.map-badge {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(9,17,31,0.92); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: 12px; font-weight: bold; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; white-space: nowrap; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

/* ── BOOKING DETAILS ────────────────────────────── */
/* ── BOOKING DETAILS INTRO ──────────────────────── */
.booking-intro { padding: 20px 0 22px; text-align: left; }
.booking-intro-title { font-family: Georgia, serif; font-size: 2rem; font-weight: bold; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.booking-intro-sub { font-size: 13px; color: var(--gray); }
.details-section-label { font-size: 10px; font-weight: bold; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; margin-top: 20px; }
.booking-footer { padding: 16px 20px max(32px, calc(env(safe-area-inset-bottom, 0px) + 16px)); flex-shrink: 0; background: linear-gradient(to top, var(--bg) 60%, transparent); position: relative; z-index: 2; }

/* ── LOCATION INPUTS ────────────────────────────── */
.location-input-wrap {
  padding: 0; margin: 0 0 4px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.location-input-wrap:focus-within {
  border-color: rgba(200,168,75,0.5);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.07);
}
.location-row {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 18px; margin: 0;
  background: none; border: none; border-radius: 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.location-row:focus-within { background: rgba(200,168,75,0.02); }
#dropoff-section .location-row { border-bottom: none; }
.location-suggestions {
  display: none; margin: 8px 0 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.location-suggestion-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.location-suggestion-item:last-child { border-bottom: none; }
.location-suggestion-item:active { background: var(--surface-2); }
.location-suggestion-icon { color: var(--gray); flex-shrink: 0; }
.location-suggestion-main { font-size: 14px; color: var(--white); margin-bottom: 2px; }
.location-suggestion-sub { font-size: 11px; color: var(--gray); }
.location-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(200,168,75,0.18); }
.location-row.dropoff .location-dot { background: rgba(255,255,255,0.3); box-shadow: none; }
.location-row input { flex: 1; background: none; border: none; font-size: 15px; color: var(--white); }
.location-row input::placeholder { color: rgba(255,255,255,0.22); }
.swap-btn { width: 34px; height: 34px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.add-stop-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gold); padding: 12px 16px; width: 100%; border-top: 1px solid var(--border); background: rgba(200,168,75,0.05); }

/* ── DATE / TIME CARDS ──────────────────────────── */
.date-time-row { display: flex; gap: 10px; padding: 0; margin-bottom: 8px; }
.dt-card { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 16px; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; }
.dt-card:focus-within { border-color: rgba(200,168,75,0.5); box-shadow: 0 0 0 3px rgba(200,168,75,0.07); }
.dt-card-label { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.dt-card-value { font-size: 16px; color: var(--white); font-weight: 600; }
.guest-counter { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; width: fit-content; }
.guest-btn { width: 28px; height: 28px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 50%; font-size: 18px; color: var(--white); display: flex; align-items: center; justify-content: center; }
.guest-val { font-size: 16px; font-weight: bold; color: var(--white); min-width: 20px; text-align: center; }
.c2c-roundtrip-toggle { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; }
.c2c-rt-left { flex: 1; }
.c2c-rt-title { font-size: 14px; font-weight: bold; color: var(--white); }
.c2c-rt-sub { font-size: 12px; color: var(--gray); }
.c2c-route-info { padding: 0 16px 16px; }
.c2c-price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.c2c-price-label { font-size: 12px; color: var(--gray); }
.c2c-price-value { font-size: 18px; font-weight: bold; color: var(--gold); }
.c2c-price-right { text-align: right; }
.c2c-disclaimer { font-size: 11px; color: var(--gray); text-align: center; padding: 8px 0; }
.c2c-distance { font-size: 11px; color: var(--gold); }
.c2c-return-label { font-size: 11px; color: var(--gray); }
.trip-stages { display: flex; align-items: center; padding: 0 16px 12px; }
.trip-stage { display: flex; align-items: center; }
.tstage-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.tstage-lbl { font-size: 11px; color: var(--gray); margin: 0 4px; }
.tstage-line { flex: 1; height: 1px; background: var(--border); min-width: 20px; }

/* ── BOOKING SUMMARY ───────────────────────────── */

/* Vehicle hero */
.sum-hero-card {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #0e1c30 0%, #0b1826 50%, var(--surface) 100%);
  border: 1px solid rgba(200,168,75,0.22);
  border-radius: 20px; padding: 22px 20px 18px;
  display: flex; align-items: flex-end; justify-content: space-between;
  min-height: 130px;
}
.sum-hero-card::before {
  content: ''; position: absolute; top: -40px; left: -20px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.sum-hero-info { z-index: 1; }
.sum-hero-badge {
  display: inline-block;
  font-size: 9px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--gold); margin-bottom: 8px;
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.28);
  border-radius: 20px; padding: 3px 10px;
}
.sum-hero-name {
  font-family: Georgia, serif; font-size: 1.9rem;
  font-weight: bold; color: var(--white); line-height: 1.1; margin-bottom: 4px;
}
.sum-hero-class { font-size: 12px; color: var(--gray); }
.sum-hero-car {
  position: absolute; right: -10px; bottom: -8px;
  width: 210px; height: auto; pointer-events: none;
  filter: drop-shadow(-4px 8px 18px rgba(0,0,0,0.6));
}

/* Route card */
.sum-route-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(200,168,75,0.4);
  border-radius: 20px; padding: 18px 20px;
}
.sum-route-row { display: flex; align-items: flex-start; gap: 14px; }
.sum-route-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px;
}
.sum-route-dot.pickup  { background: var(--gold); }
.sum-route-dot.dropoff { background: var(--white); }
.sum-route-dot.stop    { background: transparent; border: 2px solid var(--gold); }
.sum-route-text { flex: 1; }
.sum-route-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 3px; }
.sum-route-value { font-size: 14px; color: var(--white); font-weight: 500; line-height: 1.35; }
.sum-route-connector {
  width: 1px; height: 22px; background: var(--border);
  margin: 6px 0 6px 4px;
  border-left: 1px dashed rgba(200,168,75,0.3);
}

/* Details grid */
.sum-details-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.sum-detail-cell {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px;
}
.sum-detail-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 5px;
}
.sum-detail-value { font-size: 14px; color: var(--white); font-weight: 600; }

/* Total row */
.sum-total-row {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, rgba(200,168,75,0.1) 0%, rgba(200,168,75,0.03) 100%);
  border: 1px solid rgba(200,168,75,0.32);
  border-radius: 20px; padding: 20px;
  box-shadow: 0 0 28px rgba(200,168,75,0.07);
}
.sum-total-label { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.sum-total-sub   { font-size: 11px; color: var(--gray); }
.sum-total-amount { font-family: Georgia, serif; font-size: 26px; font-weight: bold; color: var(--gold); }

/* AI fare context */
.sum-fare-context {
  font-size: 12px; font-style: italic; color: rgba(200,168,75,0.65);
  text-align: center; line-height: 1.6; padding: 0 8px;
  opacity: 0; transition: opacity 0.5s;
}
.sum-fare-context--in { opacity: 1; }

/* Actions */
.sum-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; padding-bottom: 12px; }
.btn-ghost-sm {
  background: none; border: none; color: var(--gray);
  font-size: 13px; font-weight: 500; cursor: pointer; padding: 4px 8px;
}

/* Legacy hidden */
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--border); }
.summary-row:last-of-type { border-bottom: none; }
.summary-label { font-size: 12px; color: var(--gray); }
.summary-value { font-size: 13px; color: var(--white); font-weight: 600; text-align: right; max-width: 60%; }

/* ── LEAFLET MAP OVERRIDES ────────────────────────── */
.leaflet-container { background: #111 !important; }
.leaflet-control-zoom a { background: var(--surface) !important; color: var(--white) !important; border-color: var(--border) !important; }
.leaflet-control-zoom a:hover { background: var(--surface-2) !important; }

/* ── PAYMENT ─────────────────────────────────────── */
.payment-amount {
  text-align: center; padding: 28px 24px 22px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 120% 100% at 50% 0%, rgba(200,168,75,0.09) 0%, transparent 70%);
}
.payment-amount-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.payment-amount-value { font-family: Georgia, serif; font-size: 2.6rem; font-weight: bold; color: var(--gold); margin-bottom: 8px; }
.pay-amount-sub { font-size: 11px; color: var(--gray); display: flex; align-items: center; justify-content: center; gap: 5px; }
.payment-methods-label { font-size: 13px; font-weight: 700; color: var(--white); padding: 20px 20px 12px; }
.pay-section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(200,168,75,0.65); padding: 16px 20px 8px; }
.payment-methods { display: flex; flex-direction: column; gap: 0; padding: 0 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.payment-method { display: flex; align-items: center; gap: 14px; background: transparent; border: none; border-bottom: 1px solid var(--border); border-radius: 0; padding: 16px; cursor: pointer; transition: background 0.15s; }
.payment-method:last-child { border-bottom: none; }
.payment-method:active { background: rgba(200,168,75,0.05); }
.payment-method.selected { background: rgba(200,168,75,0.07); }
.payment-method-icon { width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: bold; color: var(--white); flex-shrink: 0; }
.pay-security-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; color: var(--gray); padding: 16px 24px 32px; }
.pm-mtn   { background: #FFC107; color: #000; }
.pm-voda  { background: #E60000; }
.pm-airtel{ background: #E60000; }
.pm-apple { background: #1C1C1E; }
.pm-google{ background: #FFFFFF; color: #333; }
.pm-paypal{ background: #003087; }
.pm-card  { background: var(--surface-2); color: var(--gold); }
.payment-method-info { flex: 1; }
.payment-method-name { font-size: 14px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.payment-method-sub { font-size: 12px; color: var(--gray); }
.payment-method-arrow { color: var(--gray); font-size: 18px; }
.momo-hero { text-align: center; padding: 16px 0 20px; }
.momo-icon {
  width: 72px; height: 72px; border-radius: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 16px; font-weight: 800; letter-spacing: 0.04em;
  background: #FFCC00; color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.momo-hero-sub { font-size: 13px; color: var(--gray); }
.momo-network-row { display: flex; gap: 8px; margin-bottom: 16px; }
.momo-net-btn { flex: 1; padding: 10px 8px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 12px; font-weight: bold; color: var(--gray); text-align: center; transition: border-color 0.15s, color 0.15s; }
.momo-net-btn.active { border-color: var(--gold); color: var(--white); }
.momo-steps {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 12px; margin: 4px 0 16px;
}
.momo-step { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.momo-step-num {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--gold);
}
.momo-step-label { font-size: 10px; color: var(--gray); text-align: center; line-height: 1.3; }
.momo-step-sep { color: var(--border); font-size: 14px; flex-shrink: 0; padding-bottom: 14px; }
.momo-note { display: none; }
.card-preview {
  background: linear-gradient(135deg, #0e1c30 0%, #131f35 100%);
  border: 1px solid rgba(200,168,75,0.22); border-radius: 18px;
  padding: 20px; margin-bottom: 20px; position: relative; overflow: hidden;
  min-height: 150px; display: flex; flex-direction: column; justify-content: space-between;
}
.card-preview::before {
  content: ''; position: absolute; top: -40px; right: -30px;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.card-preview-chip {
  width: 38px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, #E0C97A 0%, #C8A84B 100%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.card-preview-number {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85);
  letter-spacing: 0.18em; margin-top: 18px; font-family: 'Courier New', monospace;
}
.card-preview-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.card-preview-name { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.card-preview-exp { font-size: 11px; color: rgba(255,255,255,0.4); }
.card-icons { display: flex; gap: 8px; margin-bottom: 20px; }
.card-brand { height: 30px; padding: 0 12px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; letter-spacing: 0.04em; border: 1px solid var(--border); }
.card-brand--visa { background: #1A1F71; color: #fff; }
.card-brand--mc { background: var(--surface-2); color: var(--white); }
.card-brand--verve { background: var(--surface-2); color: var(--gray); }
.save-card { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.save-card-label { font-size: 13px; color: var(--gray); }
.add-pmethod-tabs { display: flex; margin: 0 16px 20px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.add-pmethod-tab { flex: 1; padding: 10px; background: var(--surface); font-size: 12px; font-weight: bold; color: var(--gray); text-align: center; border: none; transition: background 0.15s, color 0.15s; }
.add-pmethod-tab.active { background: var(--gold); color: #09111F; }
.toggle { width: 48px; height: 28px; background: var(--surface-2); border-radius: 14px; position: relative; cursor: pointer; transition: background 0.2s; border: 1px solid var(--border); flex-shrink: 0; }
.toggle.on { background: var(--gold); border-color: var(--gold); }
.toggle-slider { position: absolute; width: 22px; height: 22px; background: var(--white); border-radius: 50%; top: 2px; left: 2px; transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.toggle.on .toggle-slider { transform: translateX(20px); }
.toggle-switch { position: relative; display: inline-block; width: 48px; height: 28px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-switch .toggle-slider { position: absolute; inset: 0; background: var(--surface-2); border-radius: 28px; border: 1px solid var(--border); cursor: pointer; transition: background 0.2s, border-color 0.2s; top: 0; left: 0; transform: none; box-shadow: none; width: 100%; height: 100%; }
.toggle-switch .toggle-slider::before { content: ''; position: absolute; width: 22px; height: 22px; left: 2px; top: 2px; background: var(--white); border-radius: 50%; transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.35); }
.toggle-switch input:checked + .toggle-slider { background: var(--gold); border-color: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.pmethods-body { flex: 1; overflow-y: auto; padding: 8px 16px 24px; overscroll-behavior: contain; }
.pmethods-add-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; background: var(--surface); border: 1px dashed rgba(200,168,75,0.35); border-radius: var(--radius); font-size: 13px; font-weight: bold; color: var(--gold); width: 100%; margin-top: 12px; }
.pmethods-note { font-size: 11px; color: var(--gray); text-align: center; margin-top: 12px; }
.pmethods-security-card { display:flex; align-items:center; gap:12px; background:rgba(200,168,75,0.05); border:1px solid rgba(200,168,75,0.15); border-radius:var(--radius); padding:14px 16px; margin-bottom:16px; }
.pmethods-security-icon { width:38px; height:38px; border-radius:11px; background:var(--gold-glow); border:1px solid var(--gold-border); color:var(--gold); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pmethods-security-title { font-size:12px; font-weight:700; color:var(--white); margin-bottom:2px; }
.pmethods-security-text { font-size:11px; color:var(--gray); line-height:1.4; margin:0; }
.pmethod-card { display:flex; align-items:center; gap:12px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:14px 16px; margin-bottom:8px; cursor:pointer; transition:border-color 0.15s; }
.pmethod-card--tap:active { border-color:rgba(200,168,75,0.4); }
.pmethod-icon { width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pmethod-info { flex:1; display:flex; flex-direction:column; gap:2px; }
.pmethod-name { font-size:14px; font-weight:600; color:var(--white); }
.pmethod-detail { font-size:12px; color:var(--gray); }
.pmethod-badge { font-size:10px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; background:rgba(200,168,75,0.12); border:1px solid rgba(200,168,75,0.28); border-radius:20px; color:var(--gold); padding:3px 9px; white-space:nowrap; }
.pmethod-set-default { font-size:11px; color:var(--gray); text-decoration:underline; white-space:nowrap; }
.pmethod-delete-btn { background:none; border:none; color:var(--gray); padding:6px; cursor:pointer; flex-shrink:0; }
.pmethod-delete-btn:active { color:#e05555; }
.add-pmethod-security { display:flex; align-items:center; justify-content:center; gap:5px; font-size:11px; color:var(--gray); padding:14px 0 4px; }

/* ── CONFIRMATION ───────────────────────────────── */
.confirm-icon { font-size: 56px; text-align: center; margin: 32px 0 16px; }
.confirm-title { font-family: Georgia, serif; font-size: 1.4rem; font-weight: bold; color: var(--white); text-align: center; margin-bottom: 8px; }
.confirm-sub { font-size: 13px; color: var(--gray); text-align: center; margin-bottom: 24px; padding: 0 24px; }
/* Concierge confirm hero */
.cconf-hero { display:flex; flex-direction:column; align-items:center; text-align:center; padding:52px 24px 28px; background:radial-gradient(ellipse 100% 60% at 50% 0%, rgba(200,168,75,0.1) 0%, transparent 65%); position:relative; }
.cconf-icon-wrap { width:80px; height:80px; position:relative; margin:0 auto 20px; }
.cconf-icon-wrap .conf-pulse-ring { top:0; left:50%; transform:translateX(-50%); width:80px; height:80px; }
.cconf-icon-wrap .conf-pulse-ring-2 { top:0; left:50%; transform:translateX(-50%); width:80px; height:80px; }
.cconf-icon-core { position:absolute; inset:6px; border-radius:50%; background:linear-gradient(135deg, rgba(200,168,75,0.2) 0%, rgba(200,168,75,0.06) 100%); border:1.5px solid var(--gold-accent); display:flex; align-items:center; justify-content:center; color:var(--gold-accent); box-shadow:0 0 28px rgba(200,168,75,0.18); }
.cconf-eyebrow { font-size:9px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:rgba(200,168,75,0.65); margin:0 0 8px; }
.cconf-title { font-family:Georgia, serif; font-size:1.5rem; font-weight:normal; color:var(--white); margin:0 0 10px; }
.cconf-sub { font-size:13px; color:var(--gray); line-height:1.65; margin:0; }
.confirm-ref { margin: 0 16px 20px; background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 16px 20px; text-align: center; }
.confirm-ref-label { font-size: 10px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.confirm-ref-value { font-family: Georgia, serif; font-size: 1.4rem; font-weight: bold; color: var(--white); letter-spacing: 0.08em; }
.confirm-details { margin: 0 16px 24px; }
.confirm-detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.confirm-detail-label { font-size: 12px; color: var(--gray); }
.confirm-detail-value { font-size: 12px; color: var(--white); font-weight: bold; text-align: right; }
.confirm-actions { padding: 0 16px 32px; display: flex; flex-direction: column; gap: 10px; }

/* ── CONFIRMATION DRIVER CARD ───────────────────── */
.confirm-driver-card {
  margin: 0 16px 20px;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.confirm-driver-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-glow);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.confirm-driver-info { flex: 1; min-width: 0; }
.confirm-driver-name { font-size: 14px; font-weight: bold; color: var(--white); margin-bottom: 3px; }
.confirm-driver-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }
.confirm-driver-stars { display: flex; gap: 2px; color: var(--gold); }
.confirm-driver-rating { font-size: 12px; color: var(--gold); font-weight: bold; }
.confirm-driver-vehicle { font-size: 11px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.confirm-eta-badge {
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  text-align: center;
  flex-shrink: 0;
}
.confirm-eta-label { font-size: 9px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.confirm-eta-value { font-size: 16px; font-weight: bold; color: var(--white); white-space: nowrap; }

/* ── TRACKING ───────────────────────────────────── */
.track-map-container {
  height: 55vh; min-height: 200px; flex-shrink: 0;
  position: relative;
  background:
    repeating-linear-gradient(0deg,   transparent, transparent 39px, rgba(200,168,75,0.06) 40px),
    repeating-linear-gradient(90deg,  transparent, transparent 39px, rgba(200,168,75,0.06) 40px),
    linear-gradient(160deg, #0c1a2e 0%, #09111f 60%, #0d1e33 100%);
}
#track-map { width: 100%; height: 100%; }
.track-back-btn {
  position: absolute; top: max(56px, calc(env(safe-area-inset-top, 0px) + 12px)); left: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(9,17,31,0.9); border: 1px solid var(--gold-border);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  z-index: 800; cursor: pointer; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.track-back-btn:active { background: rgba(9,17,31,1); }
.track-status-pill {
  position: absolute; top: max(56px, calc(env(safe-area-inset-top, 0px) + 12px)); left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg);
  border-radius: 20px; padding: 6px 18px;
  display: flex; align-items: center; gap: 8px;
  z-index: 800; white-space: nowrap;
  font-weight: bold; font-size: 12px; letter-spacing: 0.06em;
}
.track-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bg); animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }
.track-cancel-btn { position: absolute; top: max(56px, calc(env(safe-area-inset-top, 0px) + 12px)); right: 16px; padding: 8px 14px; background: rgba(192,57,43,0.85); border-radius: 20px; font-size: 11px; font-weight: bold; color: var(--white); z-index: 800; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.track-sheet {
  background: var(--surface);
  border-radius: 20px 20px 0 0;
  padding: 8px 20px 32px;
  flex-shrink: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}
.track-sheet-handle { width: 36px; height: 4px; background: var(--border); border-radius: 2px; margin: 8px auto 16px; }
.track-driver-row { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.track-driver-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-glow); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.track-driver-name { font-size: 15px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.track-driver-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray); }
.track-driver-stars { color: var(--gold); display: flex; gap: 2px; }
.track-meta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.track-meta-item { text-align: center; background: var(--surface-2); border-radius: var(--radius-sm); padding: 10px 8px; }
.track-meta-sep { display: none; }
.track-meta-label { font-size: 10px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.track-meta-value { font-size: 14px; font-weight: bold; color: var(--white); }
.track-eta-badge {
  background: var(--gold); border-radius: var(--radius-sm);
  padding: 10px 16px; text-align: center;
  margin-left: auto; flex-shrink: 0;
}
.track-eta-label { font-size: 9px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bg); margin-bottom: 2px; }
.track-eta-value { font-size: 18px; font-weight: bold; color: var(--bg); }
.track-location-row { display: flex; flex-direction: row; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.track-loc-pin { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 3px; }
.track-loc-label { font-size: 10px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 1px; }
.track-loc-addr { font-size: 13px; color: var(--white); }
.track-divider { height: 1px; background: var(--border); margin: 4px 0; }
.track-ai-note {
  font-size: 12px; font-style: italic; color: rgba(200,168,75,0.8);
  line-height: 1.6; text-align: center; padding: 10px 4px 6px;
  animation: track-note-in 0.5s ease;
}
@keyframes track-note-in { from { opacity:0; transform:translateY(4px); } to { opacity:1; transform:translateY(0); } }
.track-share-section { margin-bottom: 14px; }
.track-share-label { font-size: 11px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.track-share-btns { display: flex; gap: 8px; }
.share-btn { flex: 1; padding: 10px 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 11px; font-weight: bold; color: var(--gray-light); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.share-btn span:first-child { font-size: 18px; }
.track-actions { display: flex; gap: 10px; margin-bottom: 16px; }
.track-action-btns { display: flex; gap: 10px; }
.track-action-btn {
  flex: 1; padding: 13px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 12px; font-weight: bold;
  color: var(--white); display: flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 48px;
}
.track-action-btn:active { background: var(--surface-3, #1e2d45); border-color: var(--gold-border); }
.track-action-icon { color: var(--gold); display: flex; align-items: center; }

/* ── TRIP ARRIVED POPUP ─────────────────────────── */
#trip-arrived-popup { display: none; position: absolute; inset: 0; z-index: 2000; flex-direction: column; justify-content: flex-end; }
#trip-arrived-popup.show { display: flex; }
.trip-arrived-backdrop { position: absolute; inset: 0; background: rgba(9,17,31,0.7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.trip-arrived-sheet { position: relative; background: var(--surface); border-radius: 24px 24px 0 0; padding: 24px 24px 40px; border-top: 1px solid var(--gold-border); }
.trip-arrived-indicator { width: 64px; height: 64px; margin: 0 auto 16px; position: relative; }
.trip-arrived-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--gold-glow); animation: trip-pulse 1.5s infinite; }
@keyframes trip-pulse { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.5);opacity:0} }
.trip-arrived-core { position: absolute; inset: 6px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--bg); }
.trip-arrived-title { font-family: Georgia, serif; font-size: 1.4rem; font-weight: bold; color: var(--white); text-align: center; margin-bottom: 6px; }
.trip-arrived-sub { font-size: 13px; color: var(--gray); text-align: center; margin-bottom: 20px; }
.trip-arrived-meta { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.trip-arrived-chip { background: var(--surface-2); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; font-size: 12px; color: var(--gray-light); }
.trip-arrived-share-row { margin-top: 16px; }
.trip-arrived-share-lbl { font-size: 11px; color: var(--gray); text-align: center; margin-bottom: 10px; }
.trip-arrived-share-btns { display: flex; gap: 8px; justify-content: center; }
.arrived-share-btn { padding: 8px 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 11px; font-weight: bold; color: var(--gray-light); display: flex; align-items: center; gap: 6px; }

/* ── MY RIDES ───────────────────────────────────── */
.my-rides-list { flex: 1; overflow-y: auto; padding: 8px 16px 100px; display: flex; flex-direction: column; gap: 10px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.my-rides-body { flex: 1; overflow-y: auto; padding: 8px 16px 100px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.rides-section-label {
  font-size: 10px; font-weight: bold; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin: 20px 0 10px;
}
#rides-upcoming, #rides-previous { display: flex; flex-direction: column; gap: 10px; }
.rides-section-empty {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 36px 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); gap: 6px;
}
.rides-section-empty--slim {
  padding: 20px 24px; gap: 8px; flex-direction: row; justify-content: center;
}
.rides-empty { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 32px; gap: 12px; }
.rides-empty-icon {
  width: 64px; height: 64px; border-radius: 20px;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 8px;
}
.rides-empty-title { font-family: Georgia, serif; font-size: 1.15rem; font-weight: bold; color: var(--white); margin: 0; }
.rides-empty-sub { font-size: 13px; color: var(--gray); line-height: 1.55; max-width: 240px; margin: 0; }
.rides-empty-cta { margin-top: 12px; max-width: 200px; width: 100%; }
.ride-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; cursor: pointer; transition: border-color 0.15s; }
.ride-card:active { border-color: var(--gold-border); }
.ride-card-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-glow); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.ride-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.ride-ref { font-size: 11px; font-weight: bold; color: var(--gold); letter-spacing: 0.08em; }
.ride-status { font-size: 10px; font-weight: bold; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.ride-status.completed  { background: var(--success-bg); color: #2ecc71; }
.ride-status.confirmed  { background: rgba(200,168,75,0.12); color: var(--gold); border: 1px solid rgba(200,168,75,0.25); }
.ride-status.en_route   { background: rgba(200,168,75,0.12); color: var(--gold); border: 1px solid rgba(200,168,75,0.25); }
.ride-status.in_progress { background: rgba(200,168,75,0.12); color: var(--gold); border: 1px solid rgba(200,168,75,0.25); }
.ride-status.pending    { background: rgba(230,126,34,0.15); color: var(--warn); }
.ride-status.cancelled  { background: var(--danger-bg); color: #e74c3c; }
.ride-ai-label  { font-size: 13px; font-weight: 700; color: var(--white); margin: 0 0 3px; }
.ride-card-route { font-size: 13px; color: var(--gray); margin: 2px 0 4px; display: flex; align-items: center; gap: 5px; }
.ride-card-meta { font-size: 12px; color: var(--gray); display: flex; gap: 12px; }
.ride-card-left { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.ride-card-svc  { font-size: 13px; font-weight: 600; color: var(--white); }
.ride-card-when { font-size: 12px; color: var(--gray); margin-top: 2px; }
.ride-ref       { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; margin: 2px 0 6px; }
.ride-driver-row { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 5px; margin: 4px 0; }
.ride-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.ride-card-amount { font-size: 14px; font-weight: 700; color: var(--white); }
.ride-card-btns { display: flex; gap: 8px; }
.ride-btn { font-size: 12px; font-weight: 700; padding: 7px 16px; border-radius: 8px; cursor: pointer; border: none; background: var(--gold); color: #09111F; letter-spacing: 0.03em; transition: opacity 0.15s; }
.ride-btn:active { opacity: 0.8; }
.ride-btn--ghost { background: transparent; border: 1px solid var(--border); color: var(--gray); }
.ride-btn--rate  { background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.4); color: var(--gold); }
.rides-loading { display: flex; gap: 8px; padding: 20px; justify-content: center; }
.rides-loading span { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: 0.4; animation: rides-pulse 1.2s ease-in-out infinite; }
.rides-loading span:nth-child(2) { animation-delay: 0.2s; }
.rides-loading span:nth-child(3) { animation-delay: 0.4s; }
@keyframes rides-pulse { 0%,100%{opacity:0.2;transform:scale(0.85)} 50%{opacity:1;transform:scale(1)} }

/* ── Skeleton loaders ───────────────────────── */
@keyframes skel-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skel {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 800px 100%;
  animation: skel-shimmer 1.5s infinite linear;
  border-radius: 6px;
}
.skel-ride { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--surface); border-radius: var(--radius); margin-bottom: 10px; border: 1px solid var(--border); }
.skel-ride-badge { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; }
.skel-ride-body { flex: 1; display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.skel-ride-line-lg { height: 13px; width: 75%; border-radius: 4px; }
.skel-ride-line-sm { height: 11px; width: 90%; border-radius: 4px; }

/* ── PROFILE ────────────────────────────────────── */
#screen-profile { background: var(--bg); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; padding-bottom: calc(var(--tab-h) + max(16px, env(safe-area-inset-bottom, 0px))); }
.prof-banner {
  padding: max(52px, calc(env(safe-area-inset-top, 0px) + 8px)) 24px 28px;
  background:
    radial-gradient(ellipse 180% 120% at 50% -10%, rgba(200,168,75,0.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(200,168,75,0.04) 0%, transparent 80%);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; flex-shrink: 0;
}
.prof-edit-btn {
  position: absolute; top: max(52px, calc(env(safe-area-inset-top, 0px) + 8px)); right: 16px;
  width: 36px; height: 36px; border-radius: 50%; padding: 0;
  background: var(--surface); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.prof-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, #E0C97A 0%, #C8A84B 45%, #8B6914 100%);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.3), 0 0 0 6px rgba(200,168,75,0.08), 0 8px 24px rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 1.8rem; font-weight: bold;
  color: #09111F; margin-bottom: 14px; flex-shrink: 0;
  letter-spacing: 0.04em;
}
.prof-name { font-family: Georgia, serif; font-size: 1.35rem; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.prof-email { font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.prof-tier-badge {
  display: inline-block; padding: 5px 20px;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  border-radius: 20px; font-size: 11px; font-weight: bold;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}
.prof-stats-row {
  display: flex; align-items: center;
  margin: 0 16px; padding: 18px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); flex-shrink: 0;
}
.prof-stat { flex: 1; text-align: center; }
.prof-stat-val { display: block; font-family: Georgia, serif; font-size: 1.5rem; font-weight: bold; color: var(--gold); }
.prof-stat-lbl { display: block; font-size: 9px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: 3px; }
.prof-stat-sep { width: 1px; height: 32px; background: var(--border); }
.loyalty-card {
  margin: 12px 16px 4px;
  background: linear-gradient(135deg, rgba(200,168,75,0.1) 0%, var(--surface) 55%);
  border: 1px solid var(--gold-border); border-radius: var(--radius);
  padding: 18px 20px; cursor: pointer;
}
.loyalty-card:active { background: rgba(200,168,75,0.12); }
.loyalty-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.loyalty-tier-info { display: flex; align-items: center; gap: 10px; }
.loyalty-tier-icon { font-size: 26px; }
.loyalty-tier-name { font-size: 14px; font-weight: bold; color: var(--white); }
.loyalty-pts-label { font-size: 11px; color: var(--gray); margin-top: 2px; }
.loyalty-badge { background: var(--gold-glow); border: 1px solid var(--gold-border); color: var(--gold); font-size: 10px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.loyalty-progress-wrap { margin-top: 4px; }
.loyalty-progress-bar { height: 6px; background: var(--surface-2); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.loyalty-progress-fill { height: 100%; background: linear-gradient(90deg, #C8A84B, #E0C97A); border-radius: 3px; transition: width 0.5s; box-shadow: 0 0 8px rgba(200,168,75,0.45); }
.loyalty-progress-label { font-size: 11px; color: var(--gray); }
.prof-section-label { font-size: 10px; font-weight: bold; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 18px 20px 6px; }
.prof-menu-wrap { display: flex; flex-direction: column; gap: 0; padding: 0 16px 8px; }
.prof-menu-item { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 0; border-top: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 15px 16px; cursor: pointer; transition: background 0.15s; }
.prof-menu-wrap .prof-menu-item:first-child { border-radius: var(--radius) var(--radius) 0 0; border-top: 1px solid var(--border); }
.prof-menu-wrap .prof-menu-item:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.prof-menu-wrap .prof-menu-item:only-child { border-radius: var(--radius); }
.prof-menu-item:active { background: var(--surface-2); }
.prof-menu-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-glow); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.prof-menu-body { flex: 1; }
.prof-menu-title { display: block; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.prof-menu-sub { display: block; font-size: 12px; color: var(--gray); }
.prof-menu-arrow { color: var(--gray); font-size: 18px; flex-shrink: 0; }
.prof-signout-btn {
  margin: 8px 16px 4px; padding: 12px 16px;
  background: transparent; border: 1px solid rgba(231,76,60,0.2);
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  color: rgba(231,76,60,0.85); width: calc(100% - 32px);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.prof-signout-btn:active { background: rgba(231,76,60,0.08); }
.prof-version { font-size: 11px; color: var(--gray); text-align: center; padding: 6px 0 16px; }
.edit-prof-body { flex: 1; overflow-y: auto; padding: 20px 16px 40px; overscroll-behavior: contain; }
.edit-prof-avatar-wrap { display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; }
.edit-prof-avatar-ring { position: relative; display: inline-flex; }
.edit-prof-camera-btn {
  position: absolute; bottom: 12px; right: -2px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); border: 2.5px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: #09111F; cursor: pointer; flex-shrink: 0;
}
.edit-prof-change-photo { margin-top: 10px; font-size: 12px; color: var(--gold); background: none; border: none; cursor: pointer; }

/* ── SETTINGS ───────────────────────────────────── */
.settings-body { flex: 1; overflow-y: auto; padding: 12px 0 calc(var(--tab-h) + max(20px, env(safe-area-inset-bottom, 0px))); -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.settings-section-label { font-size: 10px; font-weight: bold; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 20px 20px 8px; }
.settings-group { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin: 0 16px 10px; overflow: hidden; }
.settings-row { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.settings-row:last-child { border-bottom: none; }
.settings-row-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--gold-glow); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.settings-row-label { flex: 1; font-size: 14px; color: var(--white); }
.settings-row-val { font-size: 13px; color: var(--gray); max-width: 42%; text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.settings-action-row { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border); background: none; border-left: none; border-right: none; border-top: none; width: 100%; text-align: left; cursor: pointer; }
.settings-action-row:last-child { border-bottom: none; }
.settings-action-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--gold-glow); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.settings-action-body { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.settings-action-label { font-size: 14px; color: var(--white); }
.settings-action-desc { font-size: 11px; color: var(--gray); margin-top: 2px; }
.settings-action-arrow { color: var(--gray); font-size: 18px; flex-shrink: 0; }
.settings-toggle-row { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.settings-toggle-row:last-child { border-bottom: none; }
.settings-toggle-body { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.settings-toggle-desc { font-size: 11px; color: var(--gray); margin-top: 2px; }
.settings-group--danger { border-color: rgba(224,85,85,0.2); background: rgba(224,85,85,0.04); }
.settings-danger-label-section { color: #e05555; }
.settings-danger-icon { background: rgba(224,85,85,0.1) !important; border-color: rgba(224,85,85,0.25) !important; color: #e05555 !important; }
.settings-danger-label { color: #e05555 !important; }
.tier-label { font-size: 11px; color: var(--gold); }
.tier-line { font-size: 14px; color: var(--white); }

/* ── Change Password screen ─────────────────────────────────── */
.chpw-security-card { display:flex; align-items:flex-start; gap:12px; background:rgba(200,168,75,0.05); border:1px solid rgba(200,168,75,0.15); border-radius:var(--radius); padding:14px 16px; margin-bottom:24px; }
.chpw-security-icon { width:38px; height:38px; border-radius:11px; background:var(--gold-glow); border:1px solid var(--gold-border); color:var(--gold); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
.chpw-intro { font-size:13px; color:var(--gray); line-height:1.55; margin:0; }
.chpw-error-bar { display: none; background: rgba(224,85,85,0.1); border: 1px solid rgba(224,85,85,0.3); border-radius: 10px; color: #e05555; font-size: 13px; padding: 10px 14px; margin-bottom: 18px; }

/* ── Delete Account sheet ───────────────────────────────────── */
.del-acct-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.del-acct-overlay.visible { opacity: 1; pointer-events: all; }
.del-acct-sheet { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%) translateY(100%); width: 100%; max-width: 430px; background: var(--surface); border-radius: 20px 20px 0 0; padding: 24px 20px 40px; z-index: 201; transition: transform 0.35s cubic-bezier(0.34,1.1,0.64,1); }
.del-acct-sheet.visible { transform: translateX(-50%) translateY(0); }
.del-acct-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.del-acct-title { font-size: 17px; font-weight: 700; color: #e05555; }
.del-acct-close { background: none; border: none; font-size: 22px; color: var(--gray); cursor: pointer; padding: 4px 8px; }
.del-acct-warning { font-size: 13px; color: var(--gray); line-height: 1.55; margin-bottom: 20px; }
.del-acct-warning strong { color: var(--white); }
.del-acct-error-bar { display: none; background: rgba(224,85,85,0.1); border: 1px solid rgba(224,85,85,0.3); border-radius: 10px; color: #e05555; font-size: 13px; padding: 10px 14px; margin-bottom: 14px; }
.del-acct-btn { width: 100%; padding: 14px; background: #e05555; border: none; border-radius: 12px; color: #fff; font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 8px; }
.del-acct-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── HOTELS & RESTAURANTS ────────────────────────── */
.concierge-hero { padding: 56px 20px 20px; background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(200,168,75,0.08) 0%, transparent 70%); flex-shrink: 0; }
.concierge-hero-label { font-size: 10px; font-weight: bold; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.concierge-hero-title { font-family: Georgia, serif; font-size: 1.3rem; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.concierge-hero-sub { font-size: 13px; color: var(--gray); }
.concierge-search-row { padding: 12px 16px; }
.concierge-search-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; padding: 0 14px; }
.concierge-search-input { flex: 1; background: none; border: none; padding: 12px 0; font-size: 16px; color: var(--white); }
.concierge-search-input::placeholder { color: rgba(255,255,255,0.25); }
.concierge-filter-tabs { display: flex; gap: 8px; padding: 0 16px 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.concierge-tab { padding: 7px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; font-weight: bold; color: var(--gray); white-space: nowrap; flex-shrink: 0; transition: all 0.15s; }
.concierge-tab.active { background: var(--gold-glow); border-color: var(--gold-border); color: var(--gold); }
.concierge-list { flex: 1; overflow-y: auto; padding: 0 16px 100px; display: flex; flex-direction: column; gap: 12px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.hotel-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.hotel-card-img { height: 160px; background: var(--surface-2); position: relative; background-size: cover; background-position: center; }
.hotel-card-img--business { background: linear-gradient(135deg, #0f1f2d 0%, #1a2d3f 50%, #243855 100%); }
.hotel-badge { position: absolute; top: 10px; left: 10px; background: rgba(9,17,31,0.85); border: 1px solid var(--gold-border); color: var(--gold); font-size: 10px; font-weight: bold; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 20px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.hotel-card-body { padding: 14px 16px; }
.hotel-top-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.hotel-name { font-size: 15px; font-weight: bold; color: var(--white); }
.hotel-area { font-size: 11px; color: var(--gray); margin-top: 2px; }
.hotel-stars { font-size: 12px; color: var(--gold); }
.hotel-amenities { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.hotel-amenity { padding: 3px 10px; background: var(--surface-2); border-radius: 20px; font-size: 11px; color: var(--gray-light); }
.hotel-footer { display: flex; align-items: center; justify-content: space-between; }
.hotel-price { font-size: 16px; font-weight: bold; color: var(--gold); }
.hotel-price-sub { font-size: 11px; color: var(--gray); }
.hotel-book-btn { padding: 8px 18px; background: var(--gold); color: var(--bg); border-radius: var(--radius-sm); font-size: 12px; font-weight: bold; }
.resto-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.resto-img { height: 140px; background: var(--surface-2); position: relative; background-size: cover; background-position: center; }
.resto-img--default { background: linear-gradient(135deg, #111827 0%, #1f2d3d 50%, #2d3f55 100%); }
.resto-badge { position: absolute; top: 10px; left: 10px; background: rgba(9,17,31,0.85); border: 1px solid var(--gold-border); color: var(--gold); font-size: 10px; font-weight: bold; padding: 3px 10px; border-radius: 20px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.resto-rating-pill { position: absolute; top: 10px; right: 10px; background: rgba(9,17,31,0.85); border: 1px solid var(--gold-border); color: var(--gold); font-size: 11px; font-weight: bold; padding: 3px 10px; border-radius: 20px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.resto-body { padding: 14px 16px; }
.resto-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.resto-name { font-size: 15px; font-weight: bold; color: var(--white); }
.resto-cuisine { font-size: 11px; color: var(--gray); margin-top: 2px; }
.resto-price { font-size: 12px; color: var(--gold); font-weight: bold; }
.resto-desc { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 12px; }
.resto-slots-label { font-size: 10px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.resto-slots { display: flex; gap: 6px; flex-wrap: wrap; }
.resto-slot { padding: 6px 12px; background: var(--surface-2); border: 1px solid var(--gold-border); border-radius: var(--radius-sm); font-size: 12px; font-weight: bold; color: var(--gold); cursor: pointer; }
.resto-slot:active { background: var(--gold-glow); }
.resto-slot--full { opacity: 0.4; cursor: not-allowed; color: var(--gray); border-color: var(--border); }
.concierge-booking-body { flex: 1; overflow-y: auto; padding: 8px 16px 32px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.cbook-summary { display: flex; gap: 14px; background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 14px; margin-bottom: 20px; }
.cbook-img { width: 72px; height: 56px; border-radius: var(--radius-sm); background: var(--surface-2); object-fit: cover; flex-shrink: 0; }
.cbook-info { flex: 1; }
.cbook-name { font-size: 14px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.cbook-sub { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.cbook-time-badge { display: inline-block; padding: 2px 8px; background: var(--gold-glow); border: 1px solid var(--gold-border); border-radius: 20px; font-size: 11px; color: var(--gold); margin-bottom: 4px; }
.cbook-price { font-size: 15px; font-weight: bold; color: var(--gold); }

/* ── ABOUT / LEGAL ──────────────────────────────── */
.about-body { flex: 1; overflow-y: auto; padding-bottom: 40px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.about-hero { padding: 48px 24px 28px; background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(200,168,75,0.1) 0%, transparent 65%); border-bottom: 1px solid var(--border); text-align: center; }
.about-hero-logo { width: 64px; height: 64px; object-fit: contain; margin-bottom: 14px; filter: drop-shadow(0 4px 16px rgba(200,168,75,0.4)); }
.about-hero-name { font-family: Georgia, serif; font-size: 1.5rem; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.about-hero-tagline { font-size: 11px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }
.about-section { margin: 12px 16px 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.about-section-title { font-family: Georgia, serif; font-size: 0.95rem; font-weight: bold; color: var(--white); margin-bottom: 10px; }
.about-section-text { font-size: 13px; color: var(--gray); line-height: 1.75; }
.about-list { font-size: 13px; color: var(--gray); line-height: 2; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 0; }
.about-list li { display: flex; align-items: center; gap: 10px; }
.about-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.about-contact-list { display: flex; flex-direction: column; gap: 12px; }
.about-contact-row { display: flex; gap: 14px; align-items: center; font-size: 13px; color: var(--white); }
.about-contact-icon { width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0; background: var(--gold-glow); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.about-version { font-size: 11px; color: var(--gray); text-align: center; padding: 20px; letter-spacing: 0.04em; }

/* ── TRIP REVIEW ─────────────────────────────────── */
.review-inner { flex: 1; overflow-y: auto; padding: 32px 20px 40px; display: flex; flex-direction: column; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.review-header { text-align: center; margin-bottom: 24px; }
.review-icon-wrap { width: 72px; height: 72px; margin: 0 auto 16px; position: relative; }
.review-icon-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--gold-glow); animation: trip-pulse 2s infinite; }
.review-icon-core { position: absolute; inset: 6px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--bg); }
.review-title { font-family: Georgia, serif; font-size: 1.3rem; font-weight: bold; color: var(--white); margin-bottom: 6px; }
.review-sub { font-size: 13px; color: var(--gray); }
.review-booking-ref { font-size: 12px; color: var(--gold); margin-top: 6px; display: flex; align-items: center; gap: 6px; justify-content: center; }
.review-ref-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 14px; }
.review-card-label { font-size: 11px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.review-card-sub { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.star-row { display: flex; gap: 8px; justify-content: center; margin-bottom: 4px; }
.star-btn { font-size: 28px; color: var(--border); transition: color 0.15s; background: none; border: none; cursor: pointer; }
.star-btn.lit { color: var(--gold); }
.star-hint { font-size: 11px; color: var(--gray); text-align: center; min-height: 16px; }
.tip-preset-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.tip-btn { padding: 8px 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 12px; font-weight: bold; color: var(--gray-light); transition: all 0.15s; }
.tip-btn.active { background: var(--gold-glow); border-color: var(--gold); color: var(--gold); }
.tip-btn--no { color: var(--gray); }
.tip-custom-wrap { display: flex; align-items: center; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 12px; }
.tip-custom-prefix { font-size: 14px; color: var(--gold); margin-right: 6px; font-weight: bold; }
.tip-custom-input { flex: 1; background: none; border: none; padding: 12px 0; font-size: 16px; color: var(--white); }
.review-textarea { min-height: 80px; }
.review-optional { font-size: 11px; color: var(--gray); margin-bottom: 4px; }
.review-ai-suggestion {
  background: rgba(200,168,75,0.06); border: 1px solid rgba(200,168,75,0.22);
  border-left: 3px solid var(--gold); border-radius: var(--radius-sm);
  padding: 10px 12px; margin-bottom: 10px; cursor: pointer;
  transition: background 0.15s; animation: rcpt-note-in 0.35s ease;
}
.review-ai-suggestion:active { background: rgba(200,168,75,0.12); }
.review-ai-badge { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,168,75,0.7); display: block; margin-bottom: 5px; }
.review-ai-text { font-family: Georgia, serif; font-style: italic; font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.55; margin: 0; }
.review-submit-btn { margin-top: auto; }
.review-skip-btn { text-align: center; margin-top: 12px; font-size: 12px; color: var(--gray); cursor: pointer; }

/* ── AUTH LOADING & TOAST ────────────────────────── */
#auth-loading { display: none; position: absolute; inset: 0; z-index: 9999; background: rgba(9,17,31,0.93); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
#auth-loading.show { display: flex; }
.auth-spinner { width: 44px; height: 44px; border: 3px solid var(--border); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
#auth-loading-msg { font-size: 14px; color: var(--gray); }
#auth-toast { position: absolute; bottom: 100px; left: 16px; right: 16px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 13px; color: var(--white); z-index: 9000; box-shadow: 0 8px 32px rgba(0,0,0,0.4); transform: translateY(20px); opacity: 0; transition: transform 0.25s, opacity 0.25s; pointer-events: none; }
#auth-toast.show, #auth-toast.visible { transform: translateY(0); opacity: 1; }
#auth-toast.error { border-color: rgba(192,57,43,0.4); }
#auth-toast.success { border-color: rgba(26,140,78,0.4); }
.auth-provider-badges { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.auth-provider-badge { font-size: 10px; color: var(--gray); padding: 2px 8px; }

/* ── UTILITIES ──────────────────────────────────── */
.hidden      { display: none !important; }
.text-center { text-align: center; }
.mt-8        { margin-top: 8px; }
.mt-16       { margin-top: 16px; }
.mt-24       { margin-top: 24px; }
.mb-24       { margin-bottom: 24px; }
.px-0        { padding-left: 0; padding-right: 0; }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeIn  { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideUp { from{transform:translateY(100%)} to{transform:translateY(0)} }
@keyframes slideIn { from{transform:translateX(100%)} to{transform:translateX(0)} }
@keyframes slideInFromRight { from{opacity:0;transform:translateX(32px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideOutToLeft   { from{opacity:1;transform:translateX(0)}     to{opacity:0;transform:translateX(-32px)} }
@keyframes pinPulse { 0%,100%{transform:translate(-50%,-100%) scale(1);opacity:1} 50%{transform:translate(-50%,-100%) scale(1.25);opacity:0.7} }

/* ── HOME SEARCH (Uber-style) ───────────────────── */
.home-search-card {
  margin: 8px 16px 16px;
  background: var(--surface);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: border-color 0.2s;
}
.home-search-card:focus-within { border-color: rgba(200,168,75,0.45); }
.home-search-wrap {
  display: flex; align-items: center; gap: 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 20px;
  min-height: 54px;
  cursor: text;
  box-shadow: none;
  transition: none;
}
.home-search-wrap:focus-within { border-color: var(--gold); box-shadow: none; }
.home-search-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(200,168,75,0.5);
}
.home-search-field {
  flex: 1; background: none; border: none; outline: none;
  font-size: 16px; font-weight: 600; color: var(--white);
  font-family: inherit; caret-color: var(--gold);
}
.home-search-field::placeholder { color: rgba(255,255,255,0.32); font-weight: 600; }
.home-search-field.home-search-loading { opacity: 0.5; }
.home-search-wrap:has(.home-search-loading) { animation: home-search-pulse 0.9s ease-in-out infinite; }
@keyframes home-search-pulse { 0%,100%{ border-color:rgba(200,168,75,0.35); } 50%{ border-color:rgba(200,168,75,0.9); } }
.home-suggestions {
  display: none; margin: 0 16px 12px;
  background: var(--surface);
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
.home-suggestion-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px; cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.home-suggestion-item:last-child { border-bottom: none; }
.home-suggestion-item:active { background: var(--surface-2); }
.home-suggestion-icon { color: var(--gray); flex-shrink: 0; }
.home-suggestion-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.home-suggestion-main { font-size: 14px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-suggestion-sub { font-size: 11px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-suggestion-loading { padding: 14px 20px; font-size: 13px; color: var(--gray); }

/* ── SAVE PLACE BOTTOM SHEET ────────────────────── */
.save-place-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.save-place-overlay.visible { opacity: 1; pointer-events: all; }
.save-place-sheet {
  position: fixed; bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%; max-width: 430px;
  background: var(--surface); border-radius: 24px 24px 0 0;
  border: 1px solid var(--border); border-bottom: none;
  padding: 12px 20px 44px; z-index: 201;
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
}
.save-place-sheet.visible { transform: translateX(-50%) translateY(0); }
.save-place-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--border); margin: 0 auto 20px;
}
.save-place-title {
  font-family: Georgia, serif; font-size: 1.2rem;
  font-weight: bold; color: var(--white); margin-bottom: 18px;
}
.save-place-search-wrap {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 8px;
  transition: border-color 0.2s;
}
.save-place-search-wrap:focus-within { border-color: var(--gold); }
.save-place-input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 15px; color: var(--white); font-family: inherit;
  caret-color: var(--gold);
}
.save-place-input::placeholder { color: rgba(255,255,255,0.3); }
.save-place-clear {
  background: none; border: none; color: var(--gray);
  font-size: 22px; line-height: 1; cursor: pointer; padding: 0; flex-shrink: 0;
}
#save-place-suggestions {
  border-radius: 14px; overflow: hidden; margin-bottom: 16px;
  border: 1px solid var(--border); display: none;
}
.save-place-suggestion-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; cursor: pointer;
  border-bottom: 1px solid var(--border);
  background: var(--bg); transition: background 0.15s;
}
.save-place-suggestion-item:last-child { border-bottom: none; }
.save-place-suggestion-item:active { background: var(--surface); }
.save-place-suggestion-main { font-size: 14px; color: var(--white); margin-bottom: 2px; }
.save-place-suggestion-sub { font-size: 11px; color: var(--gray); }
.save-place-footer { margin-top: 4px; }

/* ── HOME SAVED PLACES ──────────────────────────── */
.home-saved-row {
  display: flex; gap: 10px; padding: 10px 14px 14px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.home-saved-row::-webkit-scrollbar { display: none; }
.home-saved-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 10px 14px;
  cursor: pointer; flex-shrink: 0; min-width: 116px;
  transition: background 0.15s, border-color 0.15s;
}
.home-saved-chip:active { background: var(--surface-2); border-color: var(--gold-border); }
.home-saved-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(145deg, #131e30 0%, #0c1521 100%);
  border: 1px solid rgba(200,168,75,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.home-saved-name { font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 1px; }
.home-saved-addr { font-size: 10px; color: var(--gray); }

/* ── HOME SERVICE ROW ────────────────────────────── */
.home-svc-row {
  display: flex; justify-content: space-evenly;
  padding: 0 8px 24px;
}
.home-svc-item {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  cursor: pointer; width: 74px;
}
.home-svc-item-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: linear-gradient(145deg, #131e30 0%, #0c1521 100%);
  border: 1px solid rgba(200,168,75,0.18);
  box-shadow: inset 0 1px 0 rgba(200,168,75,0.13), 0 4px 14px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: border-color 0.2s, box-shadow 0.2s;
}
.home-svc-item:active .home-svc-item-icon {
  border-color: rgba(200,168,75,0.5);
  box-shadow: inset 0 1px 0 rgba(200,168,75,0.2), 0 2px 8px rgba(0,0,0,0.25);
}
.home-svc-item-label { font-size: 11px; color: rgba(255,255,255,0.6); text-align: center; font-weight: 500; letter-spacing: 0.01em; }

/* ── HOME RECENT ACTIVITY ───────────────────────── */
.home-recent-header { display: flex; align-items: center; justify-content: space-between; padding-right: 20px; }
.home-recent-list { padding: 0 16px; }
.home-recent-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity 0.15s;
}
.home-recent-item:last-child { border-bottom: none; }
.home-recent-item:active { opacity: 0.7; }
.home-recent-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); flex-shrink: 0;
}
.home-recent-info { flex: 1; min-width: 0; }
.home-recent-name { font-size: 14px; color: var(--white); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.home-recent-sub { font-size: 12px; color: var(--gray); }
.home-recent-arrow { color: var(--gray); flex-shrink: 0; }
.home-recent-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 32px 0 16px; }
.home-recent-empty p { font-size: 13px; color: var(--gray); text-align: center; }

/* ── SCREEN: WHERE TO? ──────────────────────────── */
#screen-where-to { background: var(--bg); }
.whereto-header {
  display: flex; align-items: center; gap: 14px;
  padding: max(52px, calc(env(safe-area-inset-top, 0px) + 8px)) 20px 16px; flex-shrink: 0;
  background: radial-gradient(ellipse 160% 100% at 50% 0%, rgba(200,168,75,0.07) 0%, transparent 70%);
}
.whereto-header-title { font-family: Georgia, serif; font-size: 1.2rem; font-weight: bold; color: var(--white); }
.whereto-body { flex: 1; overflow-y: auto; padding: 0 16px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.whereto-inputs {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(200,168,75,0.4);
  border-radius: 16px; overflow: hidden; margin-bottom: 20px;
}
.whereto-row { display: flex; align-items: center; gap: 14px; padding: 17px 18px; }
.whereto-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.whereto-dot.pickup { background: var(--gold); box-shadow: 0 0 6px rgba(200,168,75,0.5); }
.whereto-dot.dropoff { background: #e05555; box-shadow: 0 0 6px rgba(224,85,85,0.4); }
.whereto-input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 16px; color: var(--white); font-family: inherit; caret-color: var(--gold);
}
.whereto-input::placeholder { color: rgba(255,255,255,0.28); }
.whereto-divider { height: 1px; background: var(--border); margin: 0 18px; }
.whereto-recent-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.whereto-recent-item {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--border); cursor: pointer;
  transition: background 0.15s;
}
.whereto-recent-item:last-child { border-bottom: none; }
.whereto-recent-item:active { background: rgba(200,168,75,0.04); }
.whereto-recent-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.whereto-recent-name { font-size: 14px; color: var(--white); font-weight: 500; margin-bottom: 2px; }
.whereto-recent-sub { font-size: 12px; color: var(--gray); }
.whereto-footer { padding: 16px; flex-shrink: 0; border-top: 1px solid var(--border); }
@keyframes inputShake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-6px); }
  40%,80%  { transform: translateX(6px); }
}
.input-shake { animation: inputShake 0.35s ease; }

/* ── SCREEN: BOOK SERVICE ───────────────────────── */
#screen-book-service .svc-page-wrap { padding-top: 0; }

/* ── BOOKING SCREEN SHELL ───────────────────────── */
.booking-screen { background: var(--bg); }

/* ── SCREEN-INNER (trip review wrapper) ──────────── */
.screen-inner { flex: 1; display: flex; flex-direction: column; overflow: hidden; }

/* ── AIRPORT/FLIGHT INFO ────────────────────────── */
.airport-info-header { display: flex; align-items: center; gap: 8px; padding: 16px 0 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* Direction toggle (Arriving / Departing) */
.direction-toggle { display: flex; gap: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.direction-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 12px; background: transparent; border: none; color: var(--gray);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.18s, color 0.18s;
}
.direction-btn.active { background: var(--gold); color: #09111F; }
.direction-btn:first-child { border-right: 1px solid var(--border); }

/* Qty stepper (luggage) */
.qty-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--white); font-size: 18px; font-weight: 300;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, background 0.15s; flex-shrink: 0;
}
.qty-btn:active { background: rgba(200,168,75,0.12); border-color: var(--gold); }
.qty-input { padding: 8px 4px !important; }
.qty-input::-webkit-inner-spin-button, .qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.qty-input[type=number] { -moz-appearance: textfield; }

/* Passenger manifest */
.manifest-add-btn {
  display: flex; align-items: center; gap: 5px; padding: 7px 12px;
  border-radius: 20px; border: 1px solid rgba(200,168,75,0.4);
  background: transparent; color: var(--gold); font-size: 12px; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: background 0.15s;
}
.manifest-add-btn:active { background: rgba(200,168,75,0.1); }
.manifest-row {
  display: flex; gap: 8px; align-items: flex-start; margin-bottom: 10px;
}
.manifest-num {
  width: 24px; height: 24px; border-radius: 50%; background: var(--surface);
  border: 1px solid var(--border); color: var(--gray); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 10px;
}
.manifest-fields { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.manifest-input {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; color: var(--white); font-size: 14px; padding: 10px 12px;
  outline: none; caret-color: var(--gold); transition: border-color 0.15s; box-sizing: border-box;
}
.manifest-input:focus { border-color: rgba(200,168,75,0.45); }
.manifest-input::placeholder { color: rgba(255,255,255,0.2); }
.manifest-remove {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border);
  background: transparent; color: var(--gray); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 8px;
  transition: border-color 0.15s, color 0.15s;
}
.manifest-remove:active { border-color: #e05; color: #e05; }

/* ══════════════════════════════════════════════════
   LOYALTY REWARDS SCREEN
══════════════════════════════════════════════════ */
.lys-wrap { flex: 1; overflow-y: auto; padding: 16px 16px calc(var(--tab-h) + max(20px, env(safe-area-inset-bottom, 0px))); display: flex; flex-direction: column; gap: 16px; }

/* Summary card */
.lys-card {
  background: linear-gradient(145deg, #0f1e34 0%, #09142a 100%);
  border: 1px solid rgba(200,168,75,0.28); border-radius: var(--radius); padding: 22px;
  position: relative; overflow: hidden;
}
.lys-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.lys-card-tier-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.lys-tier-icon { font-size: 24px; flex-shrink: 0; }
.lys-tier-name { font-size: 15px; font-weight: 700; color: var(--white); font-family: Georgia, serif; }
.lys-tier-sub { font-size: 12px; color: var(--gray); margin-top: 2px; }
.lys-badge { margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; border: 1px solid; padding: 4px 8px; border-radius: 20px; flex-shrink: 0; }

.lys-balance-row { display: flex; align-items: center; gap: 0; margin-bottom: 20px; }
.lys-balance-box { flex: 1; text-align: center; }
.lys-balance-val { font-size: 20px; font-weight: 700; color: var(--gold); font-family: Georgia, serif; }
.lys-balance-lbl { font-size: 10px; color: var(--gray); letter-spacing: 0.06em; margin-top: 3px; text-transform: uppercase; }
.lys-balance-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

.lys-prog-wrap { }
.lys-prog-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.lys-prog-fill { height: 100%; border-radius: 3px; transition: width 0.5s ease; background: linear-gradient(90deg, #C8A84B, #E0C97A); box-shadow: 0 0 8px rgba(200,168,75,0.4); }
.lys-prog-label { font-size: 11px; color: var(--gray); }

/* Redeem button */
.lys-redeem-btn { margin: 0; }

/* AI loyalty insight */
.lys-ai-insight {
  background: linear-gradient(135deg, rgba(200,168,75,0.08) 0%, rgba(200,168,75,0.03) 100%);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  font-style: italic;
  color: rgba(200,168,75,0.9);
  line-height: 1.6;
  animation: lys-insight-in 0.4s ease;
}
@keyframes lys-insight-in { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

/* Section title */
.lys-section-title { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 0; }

/* Tier list */
.lys-tiers { display: flex; flex-direction: column; gap: 0; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.lys-tier-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.lys-tier-item:last-child { border-bottom: none; }
.lys-tier-item--active { background: rgba(200,168,75,0.08); border-left: 2px solid var(--gold); padding-left: 14px; }
.lys-tier-item-icon { font-size: 18px; flex-shrink: 0; width: 24px; text-align: center; }
.lys-tier-item-body { flex: 1; min-width: 0; }
.lys-tier-item-name { font-size: 13px; font-weight: 600; color: var(--white); }
.lys-tier-item-sub { font-size: 11px; color: var(--gray); margin-top: 2px; }
.lys-tier-item-badge { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; border: 1px solid; padding: 3px 7px; border-radius: 20px; flex-shrink: 0; }

/* How you earn card */
.lys-earn-card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.lys-earn-row { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.45; }
.lys-earn-bullet { font-size: 10px; color: var(--gold); margin-top: 4px; flex-shrink: 0; }

/* Transaction list */
.lys-tx-list { display: flex; flex-direction: column; gap: 0; background: var(--surface); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.lys-tx-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.lys-tx-item:last-child { border-bottom: none; }
.lys-tx-icon { font-size: 16px; flex-shrink: 0; width: 20px; text-align: center; }
.lys-tx-body { flex: 1; min-width: 0; }
.lys-tx-desc { font-size: 12px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lys-tx-date { font-size: 11px; color: var(--gray); margin-top: 2px; }
.lys-tx-pts { font-size: 14px; font-weight: 700; flex-shrink: 0; }
.lys-tx-empty { padding: 24px 16px; font-size: 13px; color: var(--gray); text-align: center; }

/* ── PAYMENT SCREEN loyalty toggle ───────────────── */
.pay-loyalty-row { display: flex; align-items: center; gap: 12px; margin: 0 16px 16px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--gold-border); border-radius: 12px; }
.pay-loyalty-info { flex: 1; min-width: 0; }
.pay-loyalty-pts { font-size: 13px; font-weight: 600; color: var(--white); }
.pay-loyalty-ghs { font-size: 11px; color: var(--gold); margin-top: 2px; }
.pay-loyalty-toggle { font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: 20px; border: 1px solid var(--gold); color: var(--gold); background: transparent; cursor: pointer; transition: all 0.2s; flex-shrink: 0; letter-spacing: 0.04em; }
.pay-loyalty-toggle.active { background: var(--gold); color: #09111F; }

/* ── REDEMPTION SHEET ────────────────────────────── */
.lys-redeem-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 300; }
.lys-redeem-sheet { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%) translateY(100%); width: 100%; max-width: 430px; background: var(--surface); border-radius: 20px 20px 0 0; padding: 0 20px 40px; z-index: 301; transition: transform 0.35s cubic-bezier(.32,1,.41,1); box-shadow: 0 -8px 40px rgba(0,0,0,0.5); }
.lys-redeem-sheet.open { transform: translateX(-50%) translateY(0); }
.lys-redeem-title { font-size: 17px; font-weight: 700; font-family: Georgia, serif; color: var(--white); margin: 8px 0 16px; }
.lys-redeem-info { display: flex; align-items: center; gap: 0; background: var(--bg); border-radius: 10px; padding: 14px 16px; margin-bottom: 20px; }
.lys-redeem-info-item { flex: 1; text-align: center; }
.lys-redeem-info-val { font-size: 16px; font-weight: 700; color: var(--gold); }
.lys-redeem-info-lbl { font-size: 10px; color: var(--gray); margin-top: 3px; letter-spacing: 0.06em; }
.lys-redeem-field-wrap { margin-bottom: 8px; }
.lys-redeem-field-label { font-size: 12px; color: var(--gray); display: block; margin-bottom: 8px; }
.lys-redeem-input { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 16px; color: var(--white); box-sizing: border-box; }
.lys-redeem-input:focus { outline: none; border-color: var(--gold); }
.lys-redeem-equiv { font-size: 14px; color: var(--gold); margin-top: 8px; font-weight: 600; }
.lys-redeem-note { font-size: 11px; color: var(--gray); margin-bottom: 4px; }

/* ══════════════════════════════════════════════════
   ONBOARDING FLOW
══════════════════════════════════════════════════ */
.onb-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: #09111F;
  display: flex; flex-direction: column; align-items: stretch;
  opacity: 0; transition: opacity 0.4s ease;
  max-width: 430px; margin: 0 auto;
}
.onb-overlay.onb-visible { opacity: 1; }

/* Skip */
.onb-skip-btn {
  position: absolute; top: 20px; right: 20px; z-index: 10;
  font-size: 13px; color: var(--gray); background: none; border: none;
  cursor: pointer; padding: 8px 4px; letter-spacing: 0.04em;
}

/* Slides */
.onb-slides-viewport { flex: 1; overflow: hidden; position: relative; }
.onb-track { display: flex; width: 500%; height: 100%; transition: transform 0.45s cubic-bezier(.32,1,.41,1); }
.onb-slide { width: 20%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0 32px; box-sizing: border-box; }
.onb-slide-inner { width: 100%; text-align: center; }

/* Slide 0 — Welcome */
.onb-slide--welcome .onb-slide-inner { padding-top: 20px; }
.onb-logo-diamond { font-size: 52px; color: var(--gold); margin-bottom: 28px; display: block; animation: onbPulse 2.5s ease-in-out infinite; }
@keyframes onbPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.7; transform:scale(1.08); } }
.onb-welcome-title { font-size: 30px; font-weight: 700; font-family: Georgia, serif; color: var(--white); line-height: 1.25; margin-bottom: 12px; }
.onb-welcome-name { font-size: 34px; font-weight: 700; font-family: Georgia, serif; color: var(--gold); margin-bottom: 20px; }
.onb-welcome-sub { font-size: 15px; color: var(--gray); line-height: 1.6; }

/* Slides 1-3 shared */
.onb-slide-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.onb-slide-title { font-size: 24px; font-weight: 700; font-family: Georgia, serif; color: var(--white); line-height: 1.3; margin-bottom: 28px; }
.onb-slide-sub { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 28px; }

/* Slide 1 — Services */
.onb-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.onb-svc-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 12px 16px; text-align: center; }
.onb-svc-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(200,168,75,0.12); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: var(--gold); }
.onb-svc-name { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.onb-svc-desc { font-size: 11px; color: var(--gray); line-height: 1.4; }

/* Slide 2 — Loyalty tiers */
.onb-tiers-visual { background: var(--surface); border-radius: 14px; padding: 18px 20px; margin-bottom: 18px; text-align: left; }
.onb-tier-row { display: flex; align-items: center; gap: 10px; }
.onb-tier-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--tier-color); flex-shrink: 0; box-shadow: 0 0 6px var(--tier-color); }
.onb-tier-dot--top { width: 12px; height: 12px; }
.onb-tier-label { font-size: 13px; font-weight: 600; color: var(--tier-color); flex: 1; }
.onb-tier-pts, .onb-tier-start { font-size: 11px; color: var(--gray); }
.onb-tier-start { color: var(--gold); font-weight: 600; }
.onb-tier-connector { width: 2px; height: 10px; background: var(--border); margin-left: 4px; }
.onb-earn-rule { font-size: 13px; color: var(--gray); padding: 12px 16px; background: var(--bg); border-radius: 10px; border: 1px solid var(--border); }
.onb-earn-rule strong { color: var(--gold); }

/* Slide 3 — Addresses */
.onb-addr-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.onb-addr-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); font-size: 14px; font-weight: 600; color: var(--white); cursor: pointer; transition: all 0.2s; }
.onb-addr-btn:active { opacity: 0.7; }
.onb-addr-btn--saved { border-color: var(--gold); color: var(--gold); background: rgba(200,168,75,0.08); }
.onb-addr-check { font-size: 14px; color: var(--gold); }
.onb-addr-note { font-size: 11px; color: var(--gray); }

/* Slide 4 — Finish */
.onb-slide--finish { background: radial-gradient(ellipse at center top, rgba(200,168,75,0.12) 0%, transparent 70%); }
.onb-finish-star { font-size: 64px; color: var(--gold); margin-bottom: 24px; display: block; animation: onbSpin 0.6s ease-out; }
@keyframes onbSpin { from { transform: rotate(-20deg) scale(0.5); opacity:0; } to { transform: rotate(0) scale(1); opacity:1; } }
.onb-finish-title { font-size: 30px; font-weight: 700; font-family: Georgia, serif; color: var(--white); margin-bottom: 14px; }
.onb-finish-sub { font-size: 15px; color: var(--gray); line-height: 1.65; }

/* Dots */
.onb-dots { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 0 8px; flex-shrink: 0; }
.onb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: all 0.3s; }
.onb-dot--active { width: 20px; border-radius: 3px; background: var(--gold); }

/* Nav */
.onb-nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px 36px; flex-shrink: 0; }
.onb-nav-btn { font-size: 14px; font-weight: 600; padding: 12px 24px; border-radius: 12px; border: none; cursor: pointer; transition: all 0.2s; }
.onb-nav-back { background: var(--surface); color: var(--gray); }
.onb-nav-next { background: var(--surface); color: var(--white); border: 1px solid var(--border); min-width: 110px; }
.onb-nav-next.onb-btn-gold { background: var(--gold); color: #09111F; border-color: var(--gold); font-size: 15px; padding: 14px 28px; }

/* ══════════════════════════════════════════════════
   REWARDS OVERVIEW SCREEN
══════════════════════════════════════════════════ */
.rwd-wrap { flex: 1; overflow-y: auto; padding: 16px 16px calc(var(--tab-h) + max(20px, env(safe-area-inset-bottom, 0px))); display: flex; flex-direction: column; gap: 20px; }

/* Hero status card */
.rwd-hero { background: linear-gradient(150deg, #111C2E 0%, #0a1525 100%); border: 1px solid rgba(200,168,75,0.2); border-radius: 18px; padding: 22px 20px 18px; }
.rwd-hero-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.rwd-hero-tier { display: flex; align-items: center; gap: 12px; }
.rwd-hero-icon { font-size: 28px; flex-shrink: 0; }
.rwd-hero-tier-name { font-size: 18px; font-weight: 700; color: var(--white); font-family: Georgia, serif; }
.rwd-hero-tier-sub { font-size: 12px; color: var(--gray); margin-top: 2px; }
.rwd-hero-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; border: 1px solid; padding: 4px 10px; border-radius: 20px; flex-shrink: 0; }
.rwd-hero-balance { display: flex; align-items: center; margin-bottom: 18px; }
.rwd-hero-bal-item { flex: 1; text-align: center; }
.rwd-hero-bal-val { font-size: 18px; font-weight: 700; color: var(--white); font-family: Georgia, serif; }
.rwd-hero-bal-lbl { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.rwd-hero-bal-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.rwd-hero-progress { }
.rwd-prog-bar { height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.rwd-prog-fill { height: 100%; border-radius: 3px; transition: width 0.6s ease; background: var(--gold); }
.rwd-prog-label { font-size: 11px; color: var(--gray); }

/* Quick actions */
.rwd-actions { display: flex; gap: 10px; }
.rwd-action-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 10px; border-radius: 12px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: opacity 0.15s; }
.rwd-action-primary { background: var(--gold); color: #09111F; }
.rwd-action-secondary { background: var(--surface); color: var(--white); border: 1px solid var(--border); }

/* Section title */
.rwd-section-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin: 0; }

/* Tier journey vertical timeline */
.rwd-journey { position: relative; padding-left: 36px; }
.rwd-tier-row { position: relative; padding-bottom: 0; }
.rwd-tier-row--last .rwd-tier-line { display: none; }

.rwd-tier-dot-wrap { position: absolute; left: -36px; top: 0; display: flex; flex-direction: column; align-items: center; height: 100%; }
.rwd-tier-dot { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--border); background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; z-index: 1; }
.rwd-tier-dot.rwd-dot--active { width: 30px; height: 30px; margin-left: -2px; }
.rwd-tier-line { flex: 1; width: 2px; background: var(--border); margin-top: 4px; min-height: 20px; }

.rwd-tier-content { padding: 0 0 24px 0; }
.rwd-tier-row--active .rwd-tier-content { padding-bottom: 28px; }
.rwd-tier-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; padding-top: 2px; }
.rwd-tier-name { font-size: 15px; font-weight: 700; }
.rwd-tier-mult { font-size: 12px; font-weight: 600; }
.rwd-tier-threshold { font-size: 11px; color: var(--gray); margin-bottom: 8px; }
.rwd-tier-benefits { margin: 0; padding: 0 0 0 14px; display: none; }
.rwd-tier-row--active .rwd-tier-benefits,
.rwd-tier-row--done .rwd-tier-benefits { display: block; }
.rwd-tier-benefits li { font-size: 12px; color: #c0c8d8; margin-bottom: 5px; line-height: 1.4; }
.rwd-tier-row--active .rwd-tier-name { font-size: 17px; }
.rwd-tier-row--active .rwd-tier-threshold { color: var(--white); }
.rwd-tier-row--future .rwd-tier-name,
.rwd-tier-row--future .rwd-tier-threshold { color: var(--gray); }
.rwd-tier-row--active .rwd-tier-content { background: rgba(255,255,255,0.03); border-radius: 12px; padding: 12px 14px 16px; margin-left: -4px; }

/* "How it works" cards */
.rwd-how-grid { display: flex; gap: 10px; }
.rwd-how-card { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 12px; text-align: center; }
.rwd-how-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(200,168,75,0.15); border: 1px solid var(--gold-border); color: var(--gold); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.rwd-how-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.rwd-how-desc { font-size: 11px; color: var(--gray); line-height: 1.5; }

/* Refer & earn CTA */
.rwd-refer-cta { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--gold-border); border-radius: 14px; padding: 16px; cursor: pointer; }
.rwd-refer-cta-body { flex: 1; min-width: 0; }
.rwd-refer-cta-title { font-size: 14px; font-weight: 600; color: var(--white); }
.rwd-refer-cta-sub { font-size: 11px; color: var(--gray); margin-top: 3px; }

/* ══════════════════════════════════════════════════
   REFERRAL PROGRAM
══════════════════════════════════════════════════ */
/* Signup referral toggle link */
.ref-toggle-link { font-size: 13px; color: var(--gold); cursor: pointer; }
.ref-toggle-link span:hover { text-decoration: underline; }

/* Referral code card */
.ref-code-card { background: var(--surface); border: 1px solid var(--gold-border); border-radius: 14px; padding: 18px 16px 14px; margin-bottom: 0; }
.ref-code-label { font-size: 10px; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.ref-code-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.ref-code { font-size: 26px; font-weight: 700; letter-spacing: 0.15em; color: var(--gold); font-family: Georgia, serif; flex: 1; }
.ref-copy-btn { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; padding: 8px 16px; border-radius: 20px; border: 1px solid var(--gold); color: var(--gold); background: transparent; cursor: pointer; flex-shrink: 0; transition: all 0.2s; }
.ref-copy-btn:active { background: var(--gold); color: #09111F; }
.ref-code-desc { font-size: 12px; color: var(--gray); margin-bottom: 14px; }
.ref-share-btn { display: flex; align-items: center; gap: 8px; width: 100%; justify-content: center; padding: 11px; border-radius: 10px; background: rgba(200,168,75,0.12); border: 1px solid var(--gold-border); font-size: 13px; font-weight: 600; color: var(--gold); cursor: pointer; letter-spacing: 0.03em; }

/* Referral stats */
.ref-stats-row { display: flex; align-items: center; gap: 0; background: var(--bg); border-radius: 10px; padding: 14px 16px; margin-top: 10px; }
.ref-stat { flex: 1; text-align: center; }
.ref-stat-val { font-size: 20px; font-weight: 700; color: var(--white); font-family: Georgia, serif; }
.ref-stat-lbl { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ══════════════════════════════════════════════════
   IN-APP NOTIFICATION TOAST
══════════════════════════════════════════════════ */
.notif-toast {
  position: fixed;
  top: env(safe-area-inset-top, 0px); left: 50%; transform: translateX(-50%) translateY(-110%);
  width: 100%; max-width: 430px;
  display: flex; align-items: center; gap: 12px;
  background: #111C2E;
  border-bottom: 1px solid rgba(200,168,75,0.3);
  padding: 14px 16px;
  z-index: 500;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.notif-toast.visible { transform: translateX(-50%) translateY(0); }
.notif-toast-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,168,75,0.15); border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.notif-toast-text { flex: 1; min-width: 0; }
.notif-toast-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.notif-toast-sub   { font-size: 12px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notif-toast-x {
  background: none; border: none; color: var(--gray); font-size: 18px;
  cursor: pointer; padding: 4px; line-height: 1; flex-shrink: 0; opacity: 0.7;
}

/* ══════════════════════════════════════════════════
   NOTIFICATION BADGE
══════════════════════════════════════════════════ */
.notif-badge {
  position: absolute; top: -4px; right: -6px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: #e05050; border-radius: 8px;
  font-size: 9px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; border: 1.5px solid var(--bg);
}
.notif-badge-inline {
  position: absolute; top: -3px; right: -3px;
  min-width: 14px; height: 14px; padding: 0 3px;
  background: #e05050; border-radius: 7px;
  font-size: 8px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ══════════════════════════════════════════════════
   NOTIFICATIONS SCREEN
══════════════════════════════════════════════════ */
.notif-wrap { padding: 12px 16px calc(var(--tab-h) + max(20px, env(safe-area-inset-bottom, 0px))); display: flex; flex-direction: column; gap: 8px; }
.notif-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px;
  transition: background 0.15s;
}
.notif-item:active { background: rgba(200,168,75,0.06); }
.notif-item--unread { background: rgba(200,168,75,0.05); border-color: rgba(200,168,75,0.22); }
.notif-item-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-top: 1px;
}
.notif-item-body { flex: 1; min-width: 0; }
.notif-item-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.notif-item-sub   { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 5px; }
.notif-item-time  { font-size: 11px; color: #4a5a6a; }
.notif-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 24px; text-align: center; color: var(--gray);
}
.notif-empty-icon { margin-bottom: 16px; opacity: 0.35; }
.notif-empty-title { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.notif-empty-sub   { font-size: 13px; color: var(--gray); }

/* Screen header (shared) */
.screen-hdr {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--bg); z-index: 10;
}
.screen-hdr-title { flex: 1; font-size: 17px; font-weight: 700; color: var(--white); }
.notif-clear-all {
  background: none; border: none; font-size: 12px; color: var(--gold);
  cursor: pointer; padding: 4px 0; letter-spacing: 0.02em;
}
.screen-hdr-icon-btn {
  background: none; border: none; color: var(--gray); cursor: pointer;
  padding: 8px; display: flex; align-items: center; justify-content: center;
  position: relative; margin-right: -4px;
}
/* Override tab header justify for my-rides (has bell icon) */
#screen-my-rides .screen-tab-header { justify-content: space-between; }


/* ── Booking Amendment Sheet ─────────────────────────────────────────────── */

.amend-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.amend-overlay.visible { opacity: 1; pointer-events: all; }

.amend-sheet {
  position: fixed; bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%; max-width: 430px;
  background: var(--surface); border-radius: 24px 24px 0 0;
  border: 1px solid var(--border); border-bottom: none;
  padding: 12px 20px 48px; z-index: 201;
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
  max-height: 85vh; overflow-y: auto;
}
.amend-sheet.visible { transform: translateX(-50%) translateY(0); }

.amend-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--border); margin: 0 auto 20px;
}

.amend-hdr { margin-bottom: 20px; }
.amend-title {
  font-family: Georgia, serif; font-size: 1.15rem;
  font-weight: bold; color: var(--white); margin-bottom: 4px;
}
.amend-ref { font-size: 12px; color: var(--gold); letter-spacing: .04em; font-weight: 600; }

.amend-fields { display: flex; flex-direction: column; gap: 14px; }

.amend-field-row { display: flex; flex-direction: column; gap: 6px; }
.amend-label {
  font-size: 12px; color: var(--gray); text-transform: uppercase;
  letter-spacing: .06em; font-weight: 600;
}
.amend-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: #4a5a6a; }

.amend-input {
  background: var(--bg); color: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .2s; width: 100%;
}
.amend-input:focus { border-color: var(--gold); }
.amend-input--short { max-width: 80px; }
.amend-textarea { resize: none; line-height: 1.5; }

.amend-footer {
  display: flex; gap: 10px; margin-top: 24px;
}
.amend-cancel-btn { flex: 1; }
.amend-save-btn   { flex: 2; }

/* ══════════════════════════════════════════════════
   VISUAL POLISH — v47
══════════════════════════════════════════════════ */

/* Forgot / Reset password auth wrapper (previously unstyled) */
.auth-screen-inner {
  flex: 1; overflow-y: auto;
  padding: 60px 28px 40px;
  display: flex; flex-direction: column;
}
.auth-logo-wrap {
  display: flex; justify-content: center; margin-bottom: 28px;
}
.auth-logo {
  width: 60px; height: 60px; object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(200,168,75,0.3));
}
.auth-sub { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* Book-Service screen: use standard header */
.bsvc-hero-header {
  display: flex; align-items: center; gap: 12px;
  padding: max(56px, calc(env(safe-area-inset-top, 0px) + 12px)) 20px 16px;
  background: var(--bg); flex-shrink: 0; position: relative; z-index: 10;
}
.bsvc-hero-header::after {
  content: ''; position: absolute; bottom: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.25), transparent);
}

/* Splash sep spacing */
.splash-sep { margin-top: 28px !important; margin-bottom: 20px !important; }

/* My rides tab header — title centered between left edge and bell btn */
#screen-my-rides .screen-tab-header .screen-tab-title {
  flex: 1; text-align: center;
}

/* ══════════════════════════════════════════════════
   ENRICHED UI — HERO, FLEET, STATS, SPLASH RINGS
══════════════════════════════════════════════════ */


/* ── Auth trust chips ─────────────────────────────── */
.auth-trust-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 4px;
}
.auth-trust-chip {
  display: flex; align-items: center; gap: 5px;
  background: rgba(200,168,75,0.07); border: 1px solid rgba(200,168,75,0.2);
  border-radius: 20px; padding: 5px 12px;
  font-size: 11px; font-weight: 600; color: rgba(200,168,75,0.85);
  letter-spacing: 0.02em;
}

/* ── Home hero booking card ──────────────────────── */
.home-hero-card {
  margin: 10px 16px 16px;
  background: linear-gradient(120deg, #0b172a 0%, #0f1e34 45%, #131f35 100%);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 22px;
  padding: 24px 20px 0 22px;
  overflow: visible;
  position: relative;
  min-height: 172px;
}
.home-hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(200,168,75,0.5) 35%, rgba(200,168,75,0.5) 65%, transparent 95%);
}
.home-hero-glow {
  position: absolute; right: -20px; top: -30px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.11) 0%, transparent 65%);
  pointer-events: none;
}
.home-hero-content { position: relative; z-index: 1; }
.home-hero-eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(200,168,75,0.75); margin-bottom: 8px;
  display: flex; align-items: center; gap: 7px;
}
.home-hero-eyebrow::before {
  content: ''; display: inline-block; width: 16px; height: 1px; background: rgba(200,168,75,0.5);
}
.home-hero-title {
  font-family: Georgia, serif; font-size: 1.5rem; font-weight: bold;
  color: var(--white); line-height: 1.25; margin-bottom: 16px;
}
.home-hero-cta-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.home-hero-cta {
  background: var(--gold); color: #09111F;
  border-radius: 20px; padding: 8px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  display: inline-block;
}
.home-hero-price {
  font-size: 12px; color: rgba(255,255,255,0.45); font-style: italic;
}
.home-hero-car {
  position: absolute; right: -14px; bottom: -60px;
  width: 270px; pointer-events: none; z-index: 10;
}
.home-hero-car-img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(-6px 12px 24px rgba(0,0,0,0.75)) drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

/* ── Fleet showcase ───────────────────────────────── */
.home-fleet-row {
  display: flex; gap: 12px; padding: 0 16px 8px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.home-fleet-row::-webkit-scrollbar { display: none; }
.home-fleet-card {
  flex-shrink: 0; width: 148px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 14px 14px 14px;
  cursor: pointer; transition: border-color 0.15s, background 0.15s;
  position: relative; overflow: hidden;
}
.home-fleet-card:active { border-color: rgba(200,168,75,0.5); background: var(--surface-2); }
.home-fleet-card--premier {
  border-color: rgba(200,168,75,0.2);
  background: linear-gradient(145deg, #0f1c2f 0%, #111b2c 100%);
}
.home-fleet-card--icon {
  border-color: rgba(200,168,75,0.28);
  background: linear-gradient(145deg, #111C2E 0%, #0d1520 100%);
}
.home-fleet-badge {
  display: inline-block; padding: 2px 8px; margin-bottom: 6px;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  border-radius: 10px; font-size: 8px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}
.home-fleet-badge--icon {
  background: rgba(200,168,75,0.15); border-color: rgba(200,168,75,0.35);
}
.home-fleet-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); margin-bottom: 8px;
  box-shadow: 0 0 8px rgba(200,168,75,0.5);
}
.home-fleet-card--premier .home-fleet-dot { background: #D4B86A; box-shadow: 0 0 8px rgba(212,184,106,0.5); }
.home-fleet-card--icon .home-fleet-dot { background: #E8CF80; box-shadow: 0 0 10px rgba(232,207,128,0.6); }
.home-fleet-name {
  font-family: Georgia, serif; font-size: 0.95rem; font-weight: bold;
  color: var(--white); margin-bottom: 2px;
}
.home-fleet-sub {
  font-size: 9px; color: var(--gray); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 8px;
}
.home-fleet-car-svg {
  width: 100%; height: 42px; display: block; margin-bottom: 8px;
}
.home-fleet-car-img {
  width: 100%; height: 130px; object-fit: contain;
  display: block; margin-bottom: 8px;
}
.home-fleet-price {
  font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 0.02em;
}

/* ── Stats / trust bar ────────────────────────────── */
.home-stats-bar {
  display: flex; align-items: center;
  margin: 8px 16px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 0; overflow: hidden;
}
.home-stat-item { flex: 1; text-align: center; padding: 0 4px; }
.home-stat-val {
  font-family: Georgia, serif; font-size: 1.1rem; font-weight: bold;
  color: var(--gold); line-height: 1;
}
.home-stat-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray); margin-top: 3px;
}
.home-stat-sep {
  width: 1px; height: 30px; background: var(--border); flex-shrink: 0;
}
/* ── Hourly duration stepper ─────────────────────── */
.hourly-duration-row {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin: 8px 0 10px;
}
.duration-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--gold-border); background: var(--surface);
  color: var(--gold); font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s;
}
.duration-btn:active { background: var(--gold-glow); }
.duration-btn:disabled { opacity: 0.3; cursor: default; }
.duration-display { text-align: center; min-width: 60px; }
.duration-val { font-family: Georgia, serif; font-size: 2.6rem; font-weight: bold; color: var(--white); line-height: 1; display: block; }
.duration-unit { font-size: 11px; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.hourly-min-note { font-size: 12px; color: var(--gray); text-align: center; margin-bottom: 16px; }

/* ── Rides filter tabs ───────────────────────────── */
.rides-filter-row { display: flex; gap: 8px; padding: 16px 16px 4px; }
.rides-filter-tab {
  padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600;
  border: 1px solid var(--border); background: transparent; color: var(--gray);
  cursor: pointer; transition: all 0.15s;
}
.rides-filter-tab--active {
  background: var(--gold-glow); border-color: var(--gold-border); color: var(--gold);
}

.home-invite-card {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 16px 8px; padding: 14px 18px;
  background: linear-gradient(135deg, rgba(200,168,75,0.12), rgba(200,168,75,0.04));
  border: 1px solid rgba(200,168,75,0.28); border-radius: 14px;
  cursor: pointer; transition: opacity 0.15s;
}
.home-invite-card:active { opacity: 0.7; }
.home-invite-info { flex: 1; min-width: 0; }
.home-invite-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.home-invite-sub { font-size: 11px; color: var(--gray); }
.home-invite-card > svg { color: var(--gold); flex-shrink: 0; margin-left: 12px; }

/* ── AI Suggestions ─────────────────────────────── */
.home-ai-sugg-list { display: flex; flex-direction: column; gap: 8px; padding: 0 16px 4px; }
.home-ai-sugg-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--gold); border-radius: var(--radius);
  padding: 12px 14px; cursor: pointer; transition: border-color 0.15s, background 0.15s;
}
.home-ai-sugg-card:active { background: rgba(200,168,75,0.06); border-color: rgba(200,168,75,0.5); }
.home-ai-sugg-body { flex: 1; min-width: 0; }
.home-ai-sugg-route { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-ai-sugg-reason { font-size: 11px; color: var(--gray); }
.home-ai-sugg-btn {
  display: flex; align-items: center; gap: 3px; flex-shrink: 0;
  font-size: 11px; font-weight: 700; color: var(--gold);
  background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.3);
  border-radius: 20px; padding: 5px 10px; cursor: pointer;
  font-family: inherit; letter-spacing: 0.02em;
}
.home-ai-sugg-skeleton {
  height: 60px; background: var(--surface); border-radius: var(--radius);
  border-left: 3px solid rgba(200,168,75,0.25);
  animation: sugg-shimmer 1.2s ease-in-out infinite;
}
.home-ai-sugg-skeleton + .home-ai-sugg-skeleton { margin-top: 8px; }
@keyframes sugg-shimmer { 0%,100%{ opacity:0.5; } 50%{ opacity:1; } }

/* ── Package nav arrows & dots ───────────────────── */
.pkg-nav-arrows {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
}
.pkg-nav-btn {
  background: none; border: none; padding: 4px;
  color: var(--white); cursor: pointer; line-height: 0;
  transition: opacity 0.2s;
}
.pkg-dots { display: flex; gap: 5px; align-items: center; }
.pkg-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gray); transition: background 0.2s, transform 0.2s;
}
.pkg-dot.active { background: var(--gold-accent); transform: scale(1.3); }

/* ── Package Detail Screen ────────────────────────── */
.pkg-detail-hero { height: 52vh; min-height: 280px; }
.pkg-hero-badge {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--gold-accent);
  border: 1px solid rgba(200,168,75,0.5);
  border-radius: 20px; padding: 4px 14px;
  background: rgba(200,168,75,0.08);
}
.pkg-hero-class {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}
.pkg-hero-img {
  width: 100%; max-width: 280px;
  object-fit: contain; margin: 0 auto 16px;
  display: block;
}
.pkg-hero-price {
  font-family: Georgia, serif; font-size: 1.2rem;
  color: var(--gold-accent);
}

.pkg-body { padding: 24px 20px; }

.pkg-section-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 14px;
}

.pkg-features-list { display: flex; flex-direction: column; gap: 10px; }

.pkg-feature-row {
  display: flex; align-items: flex-start; gap: 12px;
}
.pkg-feature-check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent);
}
.pkg-feature-row span {
  font-size: 14px; color: var(--white); line-height: 1.4; padding-top: 3px;
}

.pkg-vehicle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.pkg-vehicle-img {
  width: 100%; object-fit: contain;
  background: var(--surface-2, #111c2e);
  padding: 16px; max-height: 160px;
}
.pkg-vehicle-info { padding: 16px; }
.pkg-vehicle-name {
  font-family: Georgia, serif; font-size: 1.05rem;
  color: var(--white); margin-bottom: 2px;
}
.pkg-vehicle-class {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-accent); margin-bottom: 10px;
}
.pkg-vehicle-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

.pkg-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pkg-tag {
  font-size: 12px; font-weight: 600;
  color: var(--white);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 14px;
}

/* ── Home journey type tiles ─────────────────────── */
.home-jt-row {
  display: flex; gap: 10px; padding: 0 16px 4px;
  overflow-x: auto; scrollbar-width: none;
}
.home-jt-row::-webkit-scrollbar { display: none; }
.home-jt-tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  flex-shrink: 0; cursor: pointer;
  padding: 16px 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; width: 128px;
  transition: border-color 0.2s, background 0.2s;
}
.home-jt-tile:active { border-color: rgba(200,168,75,0.5); background: #111c2e; }
.home-jt-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.home-jt-label {
  font-size: 13px; font-weight: 700; color: var(--white); white-space: nowrap;
}
.home-jt-desc {
  font-size: 10px; color: var(--gray); line-height: 1.4; white-space: normal;
}

/* ── Book a Journey Screen ────────────────────────── */
.bj-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: max(56px, calc(env(safe-area-inset-top, 0px) + 12px)) 16px 8px;
}
.bj-title {
  font-family: Georgia, serif; font-size: 1.35rem;
  color: var(--white); font-weight: normal; margin: 0;
}

.bj-pills-row {
  display: flex; gap: 10px; padding: 12px 16px 20px;
}
.bj-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50px; padding: 9px 14px;
  color: var(--white); font-size: 13px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
}
.bj-pill:active { background: var(--surface-2, #111c2e); }

.bj-locations {
  padding: 0 20px;
}
.bj-field { padding: 4px 0 2px; }
.bj-field-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 6px; display: block;
}
.bj-field-input {
  width: 100%; background: none; border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white); font-size: 16px; padding: 8px 0 12px;
  outline: none; caret-color: var(--gold-accent);
}
.bj-field-input::placeholder { color: rgba(255,255,255,0.25); }
.bj-field-input:focus { border-bottom-color: var(--gold-accent); }

.bj-swap-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
}
.bj-field-line {
  flex: 1; height: 1px; background: transparent;
}
.bj-swap-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; margin-left: auto;
}
.bj-swap-btn:active { background: var(--surface-2, #111c2e); }

.bj-suggestions.location-suggestions {
  position: static; box-shadow: none; border: none;
  background: none; margin: 0 16px; border-radius: 0;
}

.bj-recents { padding: 24px 20px 0; }
.bj-recents-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.bj-recents-empty {
  font-size: 13px; color: var(--gray); line-height: 1.5;
}
.bj-recent-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border); cursor: pointer;
}
.bj-recent-item:last-child { border-bottom: none; }
.bj-recent-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gray);
}
.bj-recent-name { font-size: 14px; color: var(--white); }
.bj-recent-sub  { font-size: 12px; color: var(--gray); margin-top: 2px; }

.bj-footer {
  position: sticky; bottom: 0; padding: 16px 20px max(32px, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, var(--bg) 70%, transparent);
  margin-top: auto;
}
.bj-continue-btn { width: 100%; }

/* ── Journey/Pax bottom sheets ───────────────────── */
.bj-sheet-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 200;
}
.bj-sheet-overlay.visible { display: block; }
.bj-sheet {
  position: fixed; bottom: -100%; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: #C9A84C; border-radius: 20px 20px 0 0;
  border-top: none;
  z-index: 201; padding: 12px 0 max(40px, env(safe-area-inset-bottom, 0px));
  transition: bottom 0.3s cubic-bezier(0.4,0,0.2,1);
}
.bj-sheet.visible { bottom: 0; }
.bj-sheet-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: rgba(0,0,0,0.25); margin: 0 auto 16px;
}
.bj-sheet-title {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(0,0,0,0.5);
  padding: 0 20px 8px;
}
.bj-sheet-options { display: flex; flex-direction: column; }
.bj-sheet-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.bj-sheet-option:last-child { border-bottom: none; }
.bj-sheet-option:active { background: rgba(0,0,0,0.07); }
.bj-option-name { font-size: 15px; color: #1a1000; font-weight: 500; }
.bj-option-sub  { font-size: 12px; color: rgba(0,0,0,0.5); margin-top: 2px; }
.bj-option-check {
  margin-left: auto; color: #1a1000;
  font-size: 16px; font-weight: bold; flex-shrink: 0;
}

/* Guest sheet — gold style */
.bj-sheet--guest {
  background: #C9A84C;
  border-radius: 24px 24px 0 0;
  padding-bottom: max(56px, env(safe-area-inset-bottom, 0px));
}
.bj-sheet--guest .bj-sheet-handle { background: rgba(0,0,0,0.25); }
.bj-guest-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 4px 20px 20px; gap: 16px;
}
.bj-guest-title {
  font-size: 1.25rem; font-weight: 700;
  color: #1a1000; margin: 0 0 10px; line-height: 1.3;
}
.bj-guest-sub { font-size: 14px; color: rgba(0,0,0,0.55); line-height: 1.5; margin: 0; }
.bj-guest-close {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,0,0,0.12); border: none;
  color: #1a1000; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.bj-sheet--guest .bj-sheet-options { border-top: 1px solid rgba(0,0,0,0.1); }
.bj-sheet--guest .bj-sheet-option {
  color: #1a1000; padding: 20px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.bj-sheet--guest .bj-sheet-option:last-child { border-bottom: none; }
.bj-sheet--guest .bj-sheet-option:active { background: rgba(0,0,0,0.07); }
.bj-sheet--guest .bj-option-name { font-size: 16px; color: #1a1000; font-weight: 500; }
.bj-sheet--guest .bj-option-check { color: #1a1000; }
.bj-guest-form { padding: 16px 20px 0; }
.bj-guest-form-field { display: flex; flex-direction: column; }
.bj-guest-form .bj-field-label { color: rgba(0,0,0,0.5); }
.bj-guest-form .bj-field-input { color: #1a1000; border-bottom-color: rgba(0,0,0,0.25); }
.bj-guest-form .bj-field-input::placeholder { color: rgba(0,0,0,0.3); }
.bj-guest-form .bj-field-input:focus { border-bottom-color: #1a1000; }

/* ── Details screen route summary ────────────────── */
.details-route-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(200,168,75,0.4);
  border-radius: 14px; overflow: hidden; margin: 0 0 16px;
}
.details-route-row {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px;
}
.details-route-val {
  flex: 1; font-size: 14px; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.details-route-edit {
  background: none; border: none; color: var(--gold-accent);
  font-size: 13px; font-weight: 600; cursor: pointer; flex-shrink: 0;
}

/* ── Journey Type Detail ─────────────────── */
.jt-detail-screen {
  display: flex; flex-direction: column; overflow: hidden;
}
.jt-hero {
  position: relative; flex-shrink: 0;
  height: 58vh; min-height: 300px;
  display: flex; flex-direction: column; overflow: hidden;
}
.jt-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.jt-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,12,22,0.25) 0%, rgba(5,12,22,0.78) 100%);
}
.jt-hero-header {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: max(52px, calc(env(safe-area-inset-top, 0px) + 8px)) 16px 0;
}
.jt-hero-back {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.35); border: none; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; flex-shrink: 0;
}
.jt-hero-label {
  font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500;
}
.jt-hero-headline {
  position: relative; z-index: 2;
  margin-top: auto; padding: 0 20px 22px;
  font-family: Georgia, serif; font-size: 30px; font-weight: normal;
  color: #fff; line-height: 1.25; white-space: pre-line;
}
.jt-detail-content {
  flex: 1; overflow-y: auto; padding: 24px 20px 0;
}
.jt-detail-desc {
  font-size: 15px; color: var(--gray); line-height: 1.75; margin: 0 0 8px;
}
.jt-detail-features { display: flex; flex-direction: column; }
.jt-detail-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.07);
}
.jt-detail-feature-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent);
}
.jt-detail-feature-icon svg { width: 20px; height: 20px; }
.jt-detail-feature-text { flex: 1; padding-top: 2px; }
.jt-detail-feature-title {
  font-size: 15px; font-weight: 600; color: var(--white); margin: 0 0 5px;
}
.jt-detail-feature-desc {
  font-size: 13px; color: var(--gray); line-height: 1.6; margin: 0;
}

/* ── Corporate Enquiry Form ──────────────── */
.corp-form-body { padding: 20px 20px 0; overflow-y: auto; flex: 1; }
.corp-hero-card { display:flex; align-items:flex-start; gap:12px; background:rgba(200,168,75,0.05); border:1px solid rgba(200,168,75,0.15); border-radius:var(--radius); padding:14px 16px; margin-bottom:24px; }
.corp-hero-icon { width:40px; height:40px; border-radius:11px; background:var(--gold-glow); border:1px solid var(--gold-border); color:var(--gold); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.corp-hero-title { font-size:13px; font-weight:700; color:var(--white); margin-bottom:4px; }
.corp-form-intro {
  font-size:13px; color: var(--gray); line-height: 1.55;
  margin: 0;
}
.corp-field-group { margin-bottom: 20px; }
.corp-label {
  display: block; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 8px;
}
.corp-req { color: var(--gold-accent); }
.corp-input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 13px 14px; font-size: 15px; color: var(--white);
  outline: none; box-sizing: border-box; font-family: inherit;
  transition: border-color 0.2s;
}
.corp-input:focus { border-color: var(--gold-accent); }
.corp-input::placeholder { color: rgba(255,255,255,0.25); }
.corp-textarea { resize: none; min-height: 84px; }
.corp-error {
  font-size: 13px; color: #ff6b6b;
  background: rgba(255,107,107,0.1); border-radius: 8px;
  padding: 10px 12px; margin-bottom: 14px;
}
.corp-success {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 32px; text-align: center;
}
.corp-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent); margin-bottom: 24px;
}
.corp-success-title {
  font-family: Georgia, serif; font-size: 24px; font-weight: normal;
  color: var(--white); margin: 0 0 14px;
}
.corp-success-desc {
  font-size: 15px; color: var(--gray); line-height: 1.7; margin: 0;
}

/* ── FAQ Screen ──────────────────────────── */
.faq-body { padding: 12px 16px calc(var(--tab-h) + 20px); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.faq-category {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin: 24px 0 8px; padding-left: 4px;
}
.faq-group {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border); cursor: pointer;
  padding: 16px;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--white);
}
.faq-chevron {
  color: var(--gray); font-size: 18px; flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-answer {
  font-size: 14px; color: var(--gray); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 200px; padding-top: 10px; }

/* ── Push Notification Prompt ────────────── */
.push-prompt-sheet {
  background: var(--surface); border-radius: 24px 24px 0 0;
  padding: 28px 24px 48px; width: 100%; text-align: center;
  border-top: 1px solid var(--border);
}
.push-prompt-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent); margin: 0 auto 20px;
}
.push-prompt-title {
  font-family: Georgia, serif; font-size: 22px; font-weight: normal;
  color: var(--white); margin: 0 0 10px;
}
.push-prompt-sub {
  font-size: 14px; color: var(--gray); line-height: 1.7; margin: 0 0 24px;
}
.push-prompt-btn { width: 100%; margin-bottom: 12px; }
.push-prompt-skip {
  background: none; border: none; color: var(--gray);
  font-size: 14px; cursor: pointer; padding: 4px;
}

/* ── Confirmation Screen ─────────────────── */
@keyframes conf-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(2.2); opacity: 0;   }
  100% { transform: scale(2.2); opacity: 0;   }
}
.conf-hero {
  display: flex; flex-direction: column; align-items: center;
  padding: max(56px, env(safe-area-inset-top, 0px)) 24px 28px; text-align: center; position: relative;
  background: radial-gradient(ellipse 100% 70% at 50% 0%, rgba(200,168,75,0.12) 0%, transparent 65%);
}
.conf-pulse-ring {
  position: absolute; top: 56px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 88px; border-radius: 50%;
  border: 2px solid rgba(200,168,75,0.7);
  animation: conf-pulse 2.2s ease-out infinite;
}
.conf-pulse-ring-2 {
  position: absolute; top: 56px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 88px; border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.35);
  animation: conf-pulse 2.2s ease-out 0.7s infinite;
}
.conf-check-circle {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,168,75,0.2) 0%, rgba(200,168,75,0.06) 100%);
  border: 1.5px solid var(--gold-accent);
  box-shadow: 0 0 36px rgba(200,168,75,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent); margin-bottom: 22px; position: relative; z-index: 1;
}
.conf-eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(200,168,75,0.65); margin: 0 0 8px;
}
.conf-title {
  font-family: Georgia, serif; font-size: 28px; font-weight: normal;
  color: var(--white); margin: 0 0 10px;
}
.conf-sub {
  font-size: 13px; color: var(--gray); line-height: 1.65; margin: 0;
}
.conf-ref-card {
  margin: 0 20px 14px;
  background: linear-gradient(135deg, rgba(200,168,75,0.12) 0%, rgba(200,168,75,0.04) 100%);
  border: 1px solid rgba(200,168,75,0.4); border-radius: 16px;
  padding: 18px 20px; text-align: center;
}
.conf-ref-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 8px;
}
.conf-ref-value {
  font-family: Georgia, serif; font-size: 24px; color: var(--white);
  letter-spacing: 0.06em; margin: 0;
}
.conf-summary-card {
  margin: 0 20px 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px;
}
.conf-summary-row {
  display: flex; align-items: flex-start; gap: 14px;
}
.conf-summary-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px;
}
.conf-dot-pickup  { background: var(--gold-accent); }
.conf-dot-dropoff { background: transparent; border: 2px solid var(--gray); }
.conf-summary-line {
  width: 2px; height: 20px; background: var(--border);
  margin: 4px 0 4px 4px;
}
.conf-summary-label {
  font-size: 11px; font-weight: 600; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 3px;
}
.conf-summary-val {
  font-size: 14px; color: var(--white); margin: 0; line-height: 1.4;
}
.conf-details-card {
  margin: 0 20px 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.conf-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 18px; border-bottom: 1px solid var(--border);
}
.conf-detail-row:last-child { border-bottom: none; }
.conf-detail-label { font-size: 13px; color: var(--gray); }
.conf-detail-val   { font-size: 13px; color: var(--white); font-weight: 500; text-align: right; }
.conf-countdown-card {
  margin: 0 20px 14px; background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.3); border-radius: 14px;
  padding: 16px 20px; text-align: center;
}
.conf-countdown-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-accent); margin: 0 0 6px;
}
.conf-countdown-value {
  font-family: Georgia, serif; font-size: 28px; color: var(--white); margin: 0;
}
.conf-driver-card {
  margin: 0 20px 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 18px; display: flex; align-items: center; gap: 14px;
}
.conf-driver-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--gold-accent);
}
.conf-driver-info { flex: 1; min-width: 0; }
.conf-driver-name {
  font-size: 15px; font-weight: 600; color: var(--white); margin: 0 0 3px;
}
.conf-driver-vehicle { font-size: 13px; color: var(--gray); margin: 0; }
.conf-driver-status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray); flex-shrink: 0;
}
.conf-driver-status-dot.active { background: #4ade80; }
.conf-actions {
  margin: 0 20px 40px; display: flex; flex-direction: column; gap: 12px;
}

/* ── Points Earned Toast ─────────────────── */
@keyframes pts-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes pts-slide-down {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(100%); opacity: 0; }
}
.pts-earned-overlay {
  position: fixed; bottom: max(32px, calc(env(safe-area-inset-bottom, 0px) + 16px)); left: 50%; transform: translateX(-50%) translateY(120%);
  z-index: 600; pointer-events: none; transition: none;
  width: calc(100% - 48px); max-width: 380px;
}
.pts-earned-overlay.visible {
  animation: pts-slide-up 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards,
             pts-slide-down 0.35s ease 3.15s forwards;
}
.pts-earned-inner {
  background: var(--surface); border: 1px solid rgba(200,168,75,0.4);
  border-radius: 16px; padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.pts-earned-icon {
  font-size: 28px; flex-shrink: 0; line-height: 1;
}
.pts-earned-body { min-width: 0; }
.pts-earned-val {
  font-family: Georgia, serif; font-size: 22px; color: var(--gold-accent);
  margin: 0 0 2px; font-weight: normal;
}
.pts-earned-lbl {
  font-size: 13px; color: var(--gray); margin: 0;
}

/* ── Rewards Benefits Card ───────────────── */
.rwd-benefits-card {
  margin: 0 20px 8px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 16px; padding: 18px 18px 14px;
}
.rwd-benefits-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.rwd-benefits-icon { font-size: 18px; line-height: 1; }
.rwd-benefits-title {
  font-size: 14px; font-weight: 600; color: var(--white);
}
.rwd-benefits-list {
  margin: 0; padding: 0 0 0 0; list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.rwd-benefits-list li {
  font-size: 13px; color: var(--gray); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 8px;
}
.rwd-benefits-list li::before {
  content: '◇'; font-size: 9px; color: var(--gold-accent);
  flex-shrink: 0; margin-top: 3px;
}

/* ── LIVE CHAT ───────────────────────────────── */
#screen-chat { display: flex; flex-direction: column; }

.chat-header-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.chat-header-avatar img { width: 26px; height: 26px; object-fit: contain; filter: drop-shadow(0 1px 4px rgba(200,168,75,0.3)); }
.chat-header-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.chat-header-title { font-family: Georgia, serif; font-size: 1.05rem; font-weight: bold; color: var(--white); }
.chat-status-row { display: flex; align-items: center; gap: 6px; }
.chat-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #1DB954; box-shadow: 0 0 6px rgba(29,185,84,0.5); flex-shrink: 0; animation: chat-pulse 2.5s ease infinite; }
@keyframes chat-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }
.chat-status-text { font-size: 11px; color: var(--gray); letter-spacing: 0.02em; }

/* Messages area */
.chat-messages {
  flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  padding: 20px 16px 12px;
  display: flex; flex-direction: column; gap: 6px;
}

/* Empty / welcome state */
.chat-welcome {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px 28px; gap: 16px;
  background: radial-gradient(ellipse 140% 60% at 50% 20%, rgba(200,168,75,0.07) 0%, transparent 70%);
}
.chat-welcome-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 32px rgba(200,168,75,0.15);
}
.chat-welcome-title { font-family: Georgia, serif; font-size: 1.25rem; color: var(--white); margin: 0; }
.chat-welcome-sub { font-size: 13px; color: var(--gray); line-height: 1.7; max-width: 260px; margin: 0; }
.chat-quick-replies { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 4px; }
.chat-quick-chip {
  font-size: 12px; font-weight: 600; color: var(--gold);
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  border-radius: 20px; padding: 6px 14px; cursor: pointer;
  transition: background 0.15s;
}
.chat-quick-chip:active { background: rgba(200,168,75,0.18); }

/* Bubble wrappers */
.chat-bubble-wrap {
  display: flex; flex-direction: column; max-width: 80%; gap: 3px;
}
.chat-bubble-wrap.client   { align-self: flex-end; align-items: flex-end; }
.chat-bubble-wrap.dispatch { align-self: flex-start; align-items: flex-start; }

/* Bubbles */
.chat-bubble {
  padding: 10px 14px;
  font-size: 14px; line-height: 1.5; word-break: break-word;
  transition: opacity 0.25s;
}
.chat-bubble.client {
  background: var(--gold); color: #09111F; font-weight: 500;
  border-radius: 18px 18px 4px 18px;
}
.chat-bubble.dispatch {
  background: var(--surface); border: 1px solid var(--border); color: var(--white);
  border-radius: 18px 18px 18px 4px;
}
.chat-bubble.chat-sending { opacity: 0.5; }
.chat-time { font-size: 10px; color: var(--gray); padding: 0 4px; letter-spacing: 0.02em; }

/* Date dividers between messages */
.chat-date-divider {
  align-self: center; font-size: 10px; color: var(--gray);
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 3px 12px; margin: 8px 0;
}

/* Input bar */
.chat-input-bar {
  flex-shrink: 0;
  padding: 10px 12px calc(var(--tab-h) + max(8px, env(safe-area-inset-bottom, 0px)));
  background: var(--bg); border-top: 1px solid var(--border);
}
.chat-input-wrap {
  display: flex; align-items: flex-end; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 8px 8px 8px 16px;
  transition: border-color 0.15s;
}
.chat-input-wrap:focus-within { border-color: rgba(200,168,75,0.4); }
.chat-textarea {
  flex: 1; background: none; border: none; outline: none; resize: none;
  color: var(--white); font-family: Arial, Helvetica, sans-serif;
  font-size: 16px; line-height: 1.45;
  max-height: 120px; overflow-y: auto;
  -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  padding: 0; -webkit-user-select: text; user-select: text;
}
.chat-textarea::placeholder { color: rgba(255,255,255,0.22); }
.chat-send-btn {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: #09111F;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.15s, transform 0.1s; touch-action: manipulation;
}
.chat-send-btn:active { opacity: 0.8; transform: scale(0.93); }

/* ── Driver intro card ───────────────────────────────────────── */
.driver-intro-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.55); z-index:1100; opacity:0; pointer-events:none; transition:opacity 0.3s; }
.driver-intro-overlay.visible { opacity:1; pointer-events:auto; }
.driver-intro-card {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%) translateY(100%);
  width: min(430px, 100vw); z-index: 1101;
  background: var(--surface); border-top: 1px solid var(--border);
  border-radius: 24px 24px 0 0; padding: 28px 24px 36px;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.driver-intro-card::before {
  content:''; position:absolute; inset:0; border-radius:24px 24px 0 0; pointer-events:none;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(200,168,75,0.1) 0%, transparent 70%);
}
.driver-intro-card.visible { transform: translateX(-50%) translateY(0); }
.driver-intro-close { position:absolute; top:16px; right:20px; background:none; border:none; color:var(--gray); font-size:22px; cursor:pointer; line-height:1; padding:4px; }
.driver-intro-eyebrow { display:flex; align-items:center; gap:7px; font-size:10px; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:rgba(200,168,75,0.7); margin-bottom:14px; }
.driver-intro-name { font-family:Georgia, serif; font-size:22px; color:var(--white); margin:0 0 8px; }
.driver-intro-meta { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--gray); margin-bottom:16px; flex-wrap:wrap; }
.driver-intro-stars { color:var(--gold); }
.driver-intro-dot { color:var(--border); margin:0 2px; }
.driver-intro-note { font-family:Georgia, serif; font-style:italic; font-size:14px; color:rgba(255,255,255,0.8); line-height:1.65; margin:0; padding:14px 16px; background:rgba(200,168,75,0.06); border:1px solid rgba(200,168,75,0.18); border-left:3px solid var(--gold); border-radius:var(--radius); }

/* ── Typing indicator ────────────────────────────────────────── */
.chat-typing-dots { display: flex; align-items: center; gap: 5px; padding: 14px 16px !important; }
.chat-typing-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); opacity: 0.35; animation: chat-dot-bounce 1.2s ease-in-out infinite; }
.chat-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chat-dot-bounce { 0%, 80%, 100% { transform: scale(0.7); opacity: 0.35; } 40% { transform: scale(1); opacity: 1; } }

/* ── Stop rows (dynamically inserted by addStop) ────────────── */
.bj-stop-row {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 0 2px;
}
.bj-stop-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-accent, #C8A84B); flex-shrink: 0;
  border: 2px solid rgba(200,168,75,0.25);
}
.bj-stop-row .bj-field-input { flex: 1; }
.bj-stop-remove {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--gray); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
.bj-stop-remove:active { background: var(--surface-2, #111c2e); }

/* ── GPS locate button ───────────────────────────────────────── */
.bj-locate-btn {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--gold-accent, #C8A84B);
  padding: 11px 20px; width: 100%;
  background: none; cursor: pointer;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.01em;
}
.bj-locate-btn:active { opacity: 0.7; }
.bj-locate-btn.loading { opacity: 0.5; pointer-events: none; }

/* ── Price estimator ─────────────────────────────────────────── */
.bj-price-est { padding: 20px 20px 0; }
.bj-price-est-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.bj-price-est-loading {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--gray); padding: 8px 0 12px;
}
.bj-est-spinner {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid rgba(200,168,75,0.2);
  border-top-color: var(--gold-accent, #C8A84B);
  animation: bj-spin 0.75s linear infinite;
}
@keyframes bj-spin { to { transform: rotate(360deg); } }
.bj-est-tiers { display: flex; gap: 8px; }
.bj-est-tier {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 8px; cursor: pointer;
  text-align: center; transition: border-color 0.15s; touch-action: manipulation;
}
.bj-est-tier:active { border-color: var(--gold-accent, #C8A84B); }
.bj-est-tier-name {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 6px;
}
.bj-est-tier-price {
  font-size: 15px; font-weight: 700; color: var(--white);
}
.bj-price-est-note {
  font-size: 12px; color: var(--gray); margin-top: 10px; line-height: 1.45;
}

/* ── Settings profile header ─────────────────────────────────── */
.settings-prof-header {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, rgba(200,168,75,0.08) 0%, var(--surface) 60%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 16px;
  margin: 0 16px 6px; cursor: pointer;
  transition: background 0.15s;
}
.settings-prof-header:active { background: rgba(200,168,75,0.12); }
.settings-prof-av {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #E0C97A 0%, #C8A84B 45%, #8B6914 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 1.1rem; font-weight: bold;
  color: #09111F; letter-spacing: 0.04em;
  background-size: cover; background-position: center;
  box-shadow: 0 0 0 2px rgba(200,168,75,0.35);
}
.settings-prof-info { flex: 1; min-width: 0; }
.settings-prof-name {
  font-size: 16px; font-weight: 600; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.settings-prof-sub {
  font-size: 12px; color: var(--gray); margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.settings-prof-edit-btn {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}

/* ── Booking summary breakdown & wait note ───────────────────── */
.sum-breakdown {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  margin: 0 0 12px;
}
.sum-breakdown-rate {
  font-size: 13px; color: var(--gray); line-height: 1.5;
}
.sum-breakdown-km {
  font-size: 12px; color: var(--gray); margin-top: 4px;
}
.sum-wait-text {
  font-size: 12px; color: var(--gold-accent, #C8A84B);
  padding: 0 0 12px;
  display: flex; align-items: center; gap: 6px;
}
.sum-wait-text:empty { display: none; }

/* ── Booking notes textarea ──────────────────────────────────── */
.dt-notes-wrap { padding: 0 0 8px; }
.dt-notes-input {
  width: 100%; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  color: var(--white); font-family: Arial, Helvetica, sans-serif;
  font-size: 16px; padding: 14px 16px; resize: none; outline: none;
  caret-color: var(--gold-accent); line-height: 1.5;
  transition: border-color 0.15s;
}
.dt-notes-input::placeholder { color: rgba(255,255,255,0.22); }
.dt-notes-input:focus { border-color: rgba(200,168,75,0.5); box-shadow: 0 0 0 3px rgba(200,168,75,0.07); }

/* ── Payment screen shared styles ────────────────────────────── */
.pay-screen-body {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 32px 24px;
}
.pay-screen-icon {
  width: 88px; height: 88px; border-radius: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.pay-screen-icon--dark { background: #000; }
.pay-screen-icon--white { background: #fff; }
.pay-screen-icon--paypal { background: #003087; font-weight: 700; font-size: 20px; color: #fff; }
.pay-screen-title {
  font-family: Georgia, serif; font-size: 1.6rem; font-weight: normal;
  color: var(--white); margin-bottom: 10px;
}
.pay-screen-sub {
  font-size: 14px; color: var(--gray); line-height: 1.7;
  margin-bottom: 36px; max-width: 280px;
}
.pay-amount-box {
  background: rgba(200,168,75,0.07); border: 1px solid var(--gold-border);
  border-radius: 16px; padding: 18px 24px; margin-bottom: 28px; width: 100%;
}
.pay-amount-box--row { display: flex; justify-content: space-between; align-items: center; }
.pay-amount-box--col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.pay-amount-label {
  font-size: 11px; color: var(--gray); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 6px;
}
.pay-amount-value {
  font-family: Georgia, serif; font-size: 2rem; font-weight: bold; color: var(--white);
}
.pay-amount-value--sm { font-size: 1.3rem; color: var(--gold); }
.pay-security-note {
  text-align: center; font-size: 11px; color: var(--gray);
  margin-top: 14px; line-height: 1.6;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ── Receipt sheet ───────────────────────────────────────────── */
.receipt-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 600; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.receipt-overlay.visible { opacity: 1; pointer-events: auto; }
.receipt-sheet {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%) translateY(100%);
  width: 100%; max-width: 430px; background: var(--surface);
  border-radius: 24px 24px 0 0; border-top: 1px solid var(--border);
  padding: 12px 20px 48px; z-index: 601; transition: transform 0.3s ease;
}
.receipt-sheet.visible { transform: translateX(-50%) translateY(0); }
.receipt-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.receipt-title { font-family: Georgia, serif; font-size: 18px; color: var(--white); margin: 0; }
.receipt-close { background: none; border: none; color: var(--gray); font-size: 22px; cursor: pointer; padding: 4px 8px; line-height: 1; }
.receipt-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.receipt-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.receipt-row:last-child { border-bottom: none; }
.receipt-row--total { padding-top: 14px; margin-top: 4px; border-top: 1px solid var(--gold-border); border-bottom: none; }
.receipt-lbl { font-size: 12px; color: var(--gray); white-space: nowrap; }
.receipt-val { font-size: 13px; color: var(--white); text-align: right; }
.receipt-amount { font-size: 18px; font-weight: 700; color: var(--gold); font-family: Georgia, serif; }

.rcpt-ai-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: linear-gradient(135deg, rgba(200,168,75,0.08), rgba(200,168,75,0.03));
  border: 1px solid rgba(200,168,75,0.2); border-radius: var(--radius);
  padding: 12px 14px; margin-bottom: 16px; animation: rcpt-note-in 0.4s ease;
}
.rcpt-ai-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.rcpt-ai-note-text { font-family: Georgia, serif; font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0; font-style: italic; }
@keyframes rcpt-note-in { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

/* ── Redemption saving preview ───────────────────────────────── */
.lys-redeem-saving {
  display: flex; align-items: center; gap: 6px;
  background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.3);
  border-radius: 8px; padding: 10px 14px; margin-top: 12px;
  font-size: 13px; color: var(--gold); font-weight: 600;
}

/* ── Referral entry form ──────────────────────────────────────── */
.ref-enter-wrap { margin-top: 12px; }
.ref-enter-label { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.ref-enter-row { display: flex; gap: 8px; }
.ref-enter-input {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; color: var(--white); font-size: 14px;
  padding: 10px 12px; outline: none; caret-color: var(--gold);
  transition: border-color 0.15s;
}
.ref-enter-input:focus { border-color: rgba(200,168,75,0.5); }
.ref-enter-btn {
  padding: 10px 18px; border-radius: 10px; font-size: 13px; font-weight: 700;
  background: var(--gold); color: #09111F; border: none; cursor: pointer;
  white-space: nowrap; transition: opacity 0.2s;
}
.ref-enter-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ref-enter-err { font-size: 12px; color: #e05; margin-top: 6px; }
.ref-applied-row {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
  font-size: 13px; font-weight: 600; color: #4caf50; padding: 10px 14px;
  background: rgba(76,175,80,0.08); border-radius: 8px;
  border: 1px solid rgba(76,175,80,0.25);
}

/* ── Ride Preference Chips ──────────────────── */
.pref-chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pref-chip {
  padding: 7px 14px; border-radius: 20px; font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--border, rgba(255,255,255,0.12));
  background: transparent; color: var(--text, #e8e8e8);
  cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.pref-chip.active {
  background: rgba(200,168,75,0.15);
  border-color: #C8A84B;
  color: #C8A84B;
}
