/* ============================================================
   KHUMO — Passenger App CSS
   Mobile-first · Max-width 480px phone shell
   ============================================================ */

/* ── App Shell ──────────────────────────────────────────────── */
body.passenger-body {
  background: var(--black);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
}

.app-shell {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* ── Page Header ────────────────────────────────────────────── */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--dark-3);
}

/* White logo header variant */
.page-header.page-header-logo {
  background: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  justify-content: center;
}

.page-header.page-header-logo .logo-img {
  height: 44px;
  object-fit: contain;
  margin: 0 auto;
}

.page-header.page-header-logo > div {
  position: absolute;
  right: 20px;
}

.page-header .logo-img {
  height: 36px;
  object-fit: contain;
}

.page-header .page-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  flex: 1;
  text-align: center;
}

.page-header .header-action {
  width: 36px;
  height: 36px;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.1rem;
  text-decoration: none;
}
.page-header .header-action:hover { background: var(--dark-3); }

/* ── Page Content ───────────────────────────────────────────── */
.page-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 100px;
  -webkit-overflow-scrolling: touch;
}

.page-content.no-pad { padding: 0 0 100px; }

/* ── Bottom Navigation ──────────────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--dark);
  border-top: 1px solid var(--dark-3);
  padding: 10px 8px env(safe-area-inset-bottom, 8px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 200;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--gray);
  position: relative;
}

.nav-item:hover { color: var(--white); }

.nav-item.active { color: var(--yellow); }

.nav-item .nav-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.nav-item .nav-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-item .nav-badge {
  position: absolute;
  top: 2px;
  right: 8px;
  background: var(--danger);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ── Login / Splash Screen ──────────────────────────────────── */
.splash-bg {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px 48px;
  position: relative;
  overflow: hidden;
}

.splash-top-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45vh;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(245,197,24,0.18) 0%, transparent 70%),
    var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.splash-logo-wrap img {
  width: 220px;
  filter: drop-shadow(0 8px 32px rgba(245,197,24,0.4));
  animation: pulse 3s ease-in-out infinite;
}

.splash-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.splash-bottom {
  width: 100%;
  max-width: 400px;
}

.splash-heading {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}

.splash-heading span { color: var(--yellow); }

.splash-sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ── OTP Input ──────────────────────────────────────────────── */
.otp-input-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.otp-digit {
  width: 50px;
  height: 56px;
  background: var(--dark-2);
  border: 2px solid var(--dark-3);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  font-family: var(--font-main);
}

.otp-digit:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}

/* ── Home Screen ────────────────────────────────────────────── */
.home-hero {
  background: var(--dark);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 20px 16px 24px;
  border-bottom: 1px solid var(--dark-3);
  border-left: 1px solid var(--dark-3);
  border-right: 1px solid var(--dark-3);
}

.greeting {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
  margin-bottom: 2px;
}

.greeting-name {
  font-size: 1.4rem;
  font-weight: 800;
}

.greeting-name span { color: var(--yellow); }

/* Station selector */
.route-selector-card {
  background: var(--dark-2);
  border: 1.5px solid var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-top: 18px;
  position: relative;
}

.station-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.station-row:first-child { padding-top: 0; }
.station-row:last-child  { padding-bottom: 0; }

.station-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.station-dot.origin {
  background: var(--yellow);
  box-shadow: 0 0 8px rgba(245,197,24,0.5);
}

.station-dot.destination {
  background: var(--dark-3);
  border: 2px solid var(--white);
}

.station-connector {
  width: 2px;
  height: 20px;
  background: var(--dark-3);
  margin-left: 6px;
  border-left: 2px dashed var(--dark-3);
}

/* Searchable station input */
.station-search-wrap {
  flex: 1;
  position: relative;
}

.station-input-field {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.05rem;
  font-family: var(--font-main);
  font-weight: 500;
  cursor: text;
  outline: none;
}

.station-input-field::placeholder { color: var(--gray-dark); font-size: 1.05rem; }

/* Suggestion dropdown */
.station-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: -28px;
  right: -16px;
  background: var(--dark-2);
  border: 1.5px solid var(--yellow);
  border-radius: var(--radius-md);
  z-index: 300;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.station-suggestions.hidden { display: none; }

.station-suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  border-bottom: 1px solid var(--dark-3);
  transition: var(--transition);
}

.station-suggestion-item:last-child { border-bottom: none; }

.station-suggestion-item:hover,
.station-suggestion-item:active {
  background: rgba(245,197,24,0.12);
}

.swap-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--dark-3);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--yellow);
}
.swap-btn:hover {
  background: var(--yellow);
  color: var(--black);
}

.date-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.date-chip {
  flex: 1;
  background: var(--dark-2);
  border: 1.5px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.date-chip:hover { border-color: var(--yellow); }

/* ── Map Container ──────────────────────────────────────────── */
.map-container {
  height: 220px;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin: 16px 0;
  border: 1px solid var(--dark-3);
}

.map-container iframe,
.map-container #map {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Quick Stats ────────────────────────────────────────────── */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.stat-chip {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
}

.stat-chip .stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow);
}

.stat-chip .stat-label {
  font-size: 0.65rem;
  color: var(--gray);
  margin-top: 2px;
  font-weight: 500;
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 12px;
}

.section-title {
  font-size: 1rem;
  font-weight: 700;
}

.section-link {
  font-size: 0.8rem;
  color: var(--yellow);
  font-weight: 500;
}

/* ── Schedule Cards ─────────────────────────────────────────── */
.schedule-card {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.schedule-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--yellow);
  border-radius: 4px 0 0 4px;
}

.schedule-card:hover {
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.schedule-card.selected {
  border-color: var(--yellow);
  background: rgba(245,197,24,0.05);
}

.schedule-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.schedule-times {
  display: flex;
  align-items: center;
  gap: 12px;
}

.time-block { text-align: center; }
.time-block .time { font-size: 1.25rem; font-weight: 800; }
.time-block .time-label { font-size: 0.65rem; color: var(--gray); font-weight: 500; }

.time-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--gray);
  font-size: 0.7rem;
}

.time-arrow .arrow-line {
  width: 48px;
  height: 2px;
  background: var(--dark-3);
  position: relative;
}

.schedule-price {
  text-align: right;
}

.schedule-price .price-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--yellow);
}

.schedule-price .price-label {
  font-size: 0.65rem;
  color: var(--gray);
}

.schedule-info {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.info-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
}

.info-chip .chip-icon { font-size: 0.85rem; }

/* ── Booking Steps ──────────────────────────────────────────── */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 2px solid var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  transition: var(--transition);
  z-index: 1;
}

.step.active .step-circle {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 12px rgba(245,197,24,0.4);
}

.step.done .step-circle {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.step-label {
  font-size: 0.6rem;
  color: var(--gray);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.step.active .step-label { color: var(--yellow); }
.step.done  .step-label { color: var(--success); }

.step-connector {
  flex: 1;
  height: 2px;
  background: var(--dark-3);
  margin: 0 6px;
  margin-bottom: 22px;
  min-width: 24px;
  max-width: 48px;
}

.step.done + .step-connector { background: var(--success); }

/* ── Ticket ─────────────────────────────────────────────────── */
.ticket-card {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.ticket-card:hover {
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ticket-header {
  background: var(--dark-2);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-route {
  font-size: 0.95rem;
  font-weight: 700;
}

.ticket-body {
  padding: 16px 18px;
}

.ticket-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ticket-detail-row:last-child { border-bottom: none; }

.ticket-detail-label {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
}

.ticket-detail-value {
  font-size: 0.85rem;
  font-weight: 600;
}

.ticket-footer {
  border-top: 2px dashed var(--dark-3);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ticket-qr {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Barcode container in ticket */
.ticket-barcode-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 12px;
  text-align: center;
}

.ticket-barcode-wrap svg {
  max-width: 100%;
  height: 48px;
}

/* ── Tabs ───────────────────────────────────────────────────── */
.tab-bar {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 16px 0 12px;
}

.tab-bar::-webkit-scrollbar { display: none; }

.tab-pill {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--dark-2);
  border: 1.5px solid var(--dark-3);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-pill:hover { border-color: var(--yellow); color: var(--white); }
.tab-pill.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  font-weight: 700;
}

/* ── Profile ────────────────────────────────────────────────── */
.profile-hero {
  background: var(--dark);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 20px 16px 28px;
  text-align: center;
  border-bottom: 1px solid var(--dark-3);
  border-left: 1px solid var(--dark-3);
  border-right: 1px solid var(--dark-3);
}

.avatar {
  width: 72px;
  height: 72px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  margin: 0 auto 12px;
  box-shadow: 0 0 20px rgba(245,197,24,0.4);
}

.profile-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.profile-phone {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2px;
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.p-stat { text-align: center; }
.p-stat-val { font-size: 1.1rem; font-weight: 800; color: var(--yellow); }
.p-stat-lbl { font-size: 0.65rem; color: var(--gray); }

.menu-list {
  margin-top: 16px;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  border-bottom: 1px solid var(--dark-3);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--white);
}

.menu-item:last-child { border-bottom: none; }
.menu-item:hover { color: var(--yellow); }

.menu-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-icon {
  width: 38px;
  height: 38px;
  background: var(--dark-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.menu-item:hover .menu-icon {
  background: rgba(245,197,24,0.15);
}

.menu-item-label {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Chat / Support ─────────────────────────────────────────── */
.chat-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 120px);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  line-height: 1.5;
}

.chat-bubble.bot {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.user {
  background: var(--yellow);
  color: var(--black);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.chat-input-bar {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--dark-3);
}

.chat-send-btn {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Rank Locator Card ──────────────────────────────────────── */
.rank-card {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.rank-card:hover {
  border-color: rgba(245,197,24,0.3);
}

.rank-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,197,24,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.rank-info { flex: 1; }
.rank-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.rank-address { font-size: 0.75rem; color: var(--gray); }
.rank-distance {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--yellow);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Tracking Card ──────────────────────────────────────────── */
.tracking-card {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.tracking-map {
  height: 180px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.vehicle-marker {
  position: absolute;
  font-size: 1.5rem;
  animation: vehicleMove 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

@keyframes vehicleMove {
  from { transform: translateX(20px); }
  to   { transform: translateX(60px) translateY(10px); }
}

.tracking-info {
  padding: 16px;
}

.tracking-progress {
  height: 6px;
  background: var(--dark-3);
  border-radius: var(--radius-full);
  margin: 12px 0;
  overflow: hidden;
}

.tracking-progress-bar {
  height: 100%;
  background: var(--yellow);
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

/* ── Language Toggle ────────────────────────────────────────── */
.lang-toggle {
  display: flex;
  gap: 6px;
}

.lang-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--dark-2);
  border: 1.5px solid var(--dark-3);
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

/* ── Empty State ────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 48px 20px;
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.empty-sub {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── Voice Button ───────────────────────────────────────────── */
.voice-btn {
  width: 44px;
  height: 44px;
  background: rgba(245,197,24,0.12);
  border: 1.5px solid rgba(245,197,24,0.3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--yellow);
  transition: var(--transition);
}

.voice-btn:hover,
.voice-btn.listening {
  background: var(--yellow);
  color: var(--black);
  animation: pulse 1s ease-in-out infinite;
}

/* ── Search Bar ─────────────────────────────────────────────── */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-2);
  border: 1.5px solid var(--dark-3);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  transition: var(--transition);
}

.search-bar:focus-within {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-main);
}

.search-bar input::placeholder { color: var(--gray-dark); }
.search-bar .search-icon { color: var(--gray); font-size: 1rem; }

/* ── Notification Banner ────────────────────────────────────── */
.notification-banner {
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-size: 0.82rem;
  color: var(--yellow-light);
}

.notification-banner .notif-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--yellow);
}
