/* ═══════════════════════════════════════════════════════
   TAXI BELGE – Premium App UI Stylesheet
   Modern, Clean, and Professional Layout & Theme
══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* ── Color Palette ── */
  --txb-blue:          #2563eb;
  --txb-blue-hover:    #1d4ed8;
  --txb-blue-light:    #eff6ff;
  --txb-bg:            #f8f9fb;
  --txb-white:         #ffffff;
  --txb-text:          #0f172a;
  --txb-text-muted:    #64748b;
  --txb-border:        #e2e8f0;
  --txb-green:         #16a34a;
  --txb-green-bg:      #f0fdf4;
  --txb-red:           #dc2626;
  --txb-radius:        12px;
  --txb-radius-sm:     8px;
  --txb-radius-lg:     16px;
  --txb-shadow:        0 1px 4px rgba(0,0,0,0.08);
  --txb-shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --txb-shadow-lg:     0 8px 32px rgba(0,0,0,0.12);
  --txb-sidebar-w:     220px;
  --txb-trans:         all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  /* Legacy aliases (maintain full PHP compatibility) */
  --txb-blue2:         var(--txb-blue-hover);
  --txb-blue3:         var(--txb-blue-light);
  --txb-blue4:         #cfe2ff;
  --txb-blue5:         #1e3a8a;
  --txb-yellow:        #f59e0b;
  --txb-yellow2:       #fef3c7;
  --txb-bg2:           #f1f5f9;
  --txb-text2:         var(--txb-text-muted);
  --txb-text3:         #94a3b8;
  --txb-navy:          #1e3a8a;
  --txb-navy0:         #1e3a8a;
  --txb-navy2:         var(--txb-blue);
  --txb-navy3:         var(--txb-blue-hover);
  --txb-gold:          #f59e0b;
  --txb-gold2:         #fef3c7;
  --txb-gray:          var(--txb-bg);
  --txb-gray2:         var(--txb-border);
}

/* ── BASE RESET & CORE STYLES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.txb-app-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--txb-bg);
  color: var(--txb-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
.txb-hero-title { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800; line-height: 1.2; color: var(--txb-text); letter-spacing: -0.02em; }
.txb-hero-sub { font-size: clamp(0.95rem, 1.8vw, 1.1rem); color: var(--txb-text-muted); font-weight: 400; }

/* ═══════════════════════════════════════
   APP LAYOUT (NEW SYSTEM)
═══════════════════════════════════════ */
.txb-app-layout {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  width: 100%;
  background-color: var(--txb-bg);
}

/* Left Sidebar (Desktop) */
.txb-sidebar {
  width: var(--txb-sidebar-w);
  min-width: var(--txb-sidebar-w);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--txb-white);
  border-right: 1px solid var(--txb-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
  z-index: 100;
}

/* Sidebar Logo */
.txb-sidebar-logo {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  padding: 0 8px 24px 8px;
  border-bottom: 1px solid var(--txb-border);
  margin-bottom: 20px;
}
.txb-logo-bold {
  font-weight: 800;
  color: var(--txb-text);
}
.txb-logo-light {
  font-weight: 400;
  color: var(--txb-text);
}

/* Sidebar Nav */
.txb-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.txb-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--txb-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: var(--txb-trans);
}

.txb-nav-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.txb-nav-item:hover {
  background-color: var(--txb-bg);
  color: var(--txb-text);
}

.txb-nav-item.active {
  background-color: var(--txb-blue);
  color: var(--txb-white) !important;
  font-weight: 600;
}

/* Sidebar Footer */
.txb-sidebar-footer {
  padding-top: 16px;
  border-top: 1px solid var(--txb-border);
}

.txb-sidebar-footer .txb-nav-item {
  color: var(--txb-text-muted);
}
.txb-sidebar-footer .txb-nav-item:hover {
  color: var(--txb-red);
  background-color: #fef2f2;
}

/* Right Content Area */
.txb-content-area {
  flex: 1;
  margin-left: var(--txb-sidebar-w);
  padding: 40px;
  min-height: 100vh;
  overflow-y: auto;
  background-color: var(--txb-bg);
}

/* ═══════════════════════════════════════
   MOBILE NAVIGATION (NEW SYSTEM)
═══════════════════════════════════════ */
.txb-mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background-color: var(--txb-white);
  border-bottom: 1px solid var(--txb-border);
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.txb-mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: var(--txb-white);
  border-top: 1px solid var(--txb-border);
  z-index: 100;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);
}

.txb-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  color: var(--txb-text-muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  gap: 4px;
  transition: var(--txb-trans);
}

.txb-bottom-nav-item i {
  font-size: 18px;
}

.txb-bottom-nav-item.active {
  color: var(--txb-blue);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   CARDS & COMMON CONTAINERS
═══════════════════════════════════════ */
.txb-card {
  background: var(--txb-white);
  border-radius: 14px;
  box-shadow: var(--txb-shadow);
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.txb-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--txb-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Badges */
.txb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.txb-badge.txb-badge-blue {
  background-color: var(--txb-blue-light);
  color: var(--txb-blue);
}

.txb-badge.txb-badge-green {
  background-color: var(--txb-green-bg);
  color: var(--txb-green);
}

.txb-badge.txb-badge-red {
  background-color: #fef2f2;
  color: var(--txb-red);
}

/* Progress Bar */
.txb-progress-bar-container {
  background-color: var(--txb-border);
  height: 6px;
  border-radius: 9999px;
  overflow: hidden;
  margin: 12px 0;
}

.txb-progress-bar {
  background-color: var(--txb-blue);
  height: 100%;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

/* ═══════════════════════════════════════
   BOOKING FLOW (STEP 1: FORM)
═══════════════════════════════════════ */
.txb-booking-form-group {
  position: relative;
  margin-bottom: 16px;
}

.txb-location-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--txb-border);
  border-radius: var(--txb-radius);
  background-color: var(--txb-white);
  transition: var(--txb-trans);
}

.txb-location-input-wrap:focus-within {
  border-color: var(--txb-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.txb-input-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--txb-text-muted);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.txb-dot-blue {
  width: 8px;
  height: 8px;
  background-color: var(--txb-blue);
  border-radius: 50%;
  display: inline-block;
}

.txb-pin-blue {
  color: var(--txb-blue);
  font-size: 14px;
}

.txb-input-field {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  color: var(--txb-text);
  font-weight: 500;
  background: transparent;
}

.txb-input-divider {
  height: 1px;
  background-color: var(--txb-border);
  margin: 16px 0;
}

/* Date / Time Row */
.txb-datetime-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.txb-passengers-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--txb-border);
  border-radius: var(--txb-radius);
  background-color: var(--txb-white);
  margin-bottom: 24px;
}

.txb-passengers-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--txb-text);
}

/* Buttons */
.txb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--txb-blue);
  color: var(--txb-white);
  border: none;
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--txb-trans);
  text-decoration: none;
}

.txb-btn-primary:hover {
  background-color: var(--txb-blue-hover);
}

.txb-btn-full {
  width: 100%;
}

.txb-align-right {
  display: flex;
  justify-content: flex-end;
}

/* ═══════════════════════════════════════
   VEHICLES LIST (STEP 2)
═══════════════════════════════════════ */
.txb-vehicle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--txb-white);
  border: 1px solid var(--txb-border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
  transition: var(--txb-trans);
  cursor: pointer;
}

.txb-vehicle-card:hover {
  border-color: var(--txb-blue);
  box-shadow: var(--txb-shadow);
}

.txb-vehicle-card.active, .txb-vehicle-card.selected {
  border-color: var(--txb-blue);
  background-color: var(--txb-blue-light);
}

.txb-vehicle-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.txb-vehicle-image {
  width: 150px;
  height: 90px;
  object-fit: contain;
}

.txb-vehicle-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.txb-vehicle-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--txb-text);
}

.txb-vehicle-amenities {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--txb-text-muted);
}

.txb-vehicle-right {
  text-align: right;
}

.txb-vehicle-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--txb-text);
}

.txb-vehicle-estimation {
  font-size: 12px;
  color: var(--txb-text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   TRAJETS PAGE
═══════════════════════════════════════ */
.txb-trip-card {
  position: relative;
  background-color: var(--txb-white);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--txb-border);
  box-shadow: var(--txb-shadow);
  margin-bottom: 16px;
  transition: var(--txb-trans);
}

.txb-trip-card.active {
  border: 1.5px solid var(--txb-blue);
  border-left: 5px solid var(--txb-blue);
}

.txb-trip-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.txb-trip-datetime {
  font-size: 13px;
  color: var(--txb-text-muted);
  font-weight: 500;
}

.txb-trip-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--txb-text);
}

/* Route display */
.txb-trip-route {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 20px;
}

.txb-trip-route::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 3px;
  bottom: 6px;
  width: 2px;
  border-left: 2px dashed var(--txb-border);
}

.txb-route-point {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--txb-text);
}

.txb-route-point::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--txb-border);
}

.txb-route-point.origin::before {
  background-color: var(--txb-text-muted);
}

.txb-route-point.destination::before {
  background-color: var(--txb-blue);
}

/* ═══════════════════════════════════════
   PROFIL PAGE
═══════════════════════════════════════ */
.txb-profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.txb-profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--txb-blue-light);
  color: var(--txb-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.txb-profile-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.txb-profile-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--txb-text);
}

.txb-profile-badge-gold {
  background-color: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 9999px;
  width: fit-content;
}

/* Stats grid */
.txb-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.txb-stat-card {
  background-color: var(--txb-white);
  border: 1px solid var(--txb-border);
  border-radius: var(--txb-radius);
  padding: 16px;
  text-align: center;
}

.txb-stat-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--txb-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.txb-stat-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--txb-text);
}

/* Addresses list */
.txb-address-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--txb-border);
}

.txb-address-item:last-child {
  border-bottom: none;
}

.txb-address-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.txb-address-icon {
  color: var(--txb-text-muted);
}

.txb-address-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--txb-text);
}

.txb-chevron {
  color: var(--txb-text-muted);
  font-size: 14px;
}

/* Payment summary */
.txb-payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--txb-border);
  border-radius: var(--txb-radius);
  background-color: var(--txb-white);
}

.txb-payment-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.txb-visa-logo {
  font-weight: 800;
  font-style: italic;
  color: #1a1f71;
  font-size: 18px;
}

.txb-payment-details {
  font-size: 14px;
  font-weight: 500;
  color: var(--txb-text);
}

.txb-payment-expiry {
  font-size: 12px;
  color: var(--txb-text-muted);
}

/* ═══════════════════════════════════════
   CONFIRMATION PAGE
═══════════════════════════════════════ */
.txb-confirm-wrapper {
  text-align: center;
  padding: 16px 0;
}

.txb-checkmark-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--txb-blue-light);
  color: var(--txb-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.txb-confirm-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--txb-text);
  margin-bottom: 24px;
}

/* Map Placeholder Card */
.txb-map-card {
  height: 180px;
  background-color: #f1f5f9;
  border: 2px dashed var(--txb-border);
  border-radius: var(--txb-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
}

.txb-map-compass {
  font-size: 32px;
  color: var(--txb-text-muted);
}

.txb-map-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 32px));
  background-color: var(--txb-blue);
  color: var(--txb-white);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--txb-shadow-md);
}

/* Driver Card */
.txb-driver-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.txb-driver-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.txb-driver-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.txb-driver-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--txb-blue-light);
  object-fit: cover;
}

.txb-driver-info {
  text-align: left;
}

.txb-driver-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--txb-text);
}

.txb-driver-sub {
  font-size: 12px;
  color: var(--txb-text-muted);
}

.txb-driver-plate {
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--txb-border);
  background-color: var(--txb-bg);
}

.txb-driver-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.txb-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--txb-white);
  border: 1px solid var(--txb-border);
  color: var(--txb-text);
  border-radius: 9999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--txb-trans);
}

.txb-btn-secondary:hover {
  background-color: var(--txb-bg);
}

/* ═══════════════════════════════════════
   LOGIN / REGISTER PAGES
═══════════════════════════════════════ */
.txb-auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: var(--txb-bg);
  padding: 24px;
}

.txb-auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--txb-white);
  border-radius: 14px;
  box-shadow: var(--txb-shadow-md);
  padding: 32px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.txb-auth-logo {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 24px;
}

.txb-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--txb-border);
  margin-bottom: 24px;
}

.txb-auth-tab {
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--txb-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--txb-trans);
}

.txb-auth-tab:hover {
  color: var(--txb-text);
}

.txb-auth-tab.active {
  color: var(--txb-blue);
  border-bottom-color: var(--txb-blue);
}

.txb-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.txb-auth-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.txb-auth-input-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--txb-text);
}

.txb-auth-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--txb-border);
  border-radius: var(--txb-radius-sm);
  font-size: 14px;
  color: var(--txb-text);
  outline: none;
  background-color: var(--txb-white);
  transition: var(--txb-trans);
}

.txb-auth-input:focus {
  border-color: var(--txb-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.txb-auth-forgot {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--txb-blue);
  text-decoration: none;
  text-align: right;
  margin-top: -8px;
  transition: var(--txb-trans);
}

.txb-auth-forgot:hover {
  color: var(--txb-blue-hover);
  text-decoration: underline;
}

/* ═══════════════════════════════════════
   RESPONSIVE LAYOUT BREAKPOINTS
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Layout Changes */
  .txb-app-layout {
    flex-direction: column;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .txb-sidebar {
    display: none !important;
  }

  .txb-content-area {
    margin-left: 0;
    padding: 20px;
    min-height: calc(100vh - 120px);
  }

  /* Mobile Top & Bottom Navigation Activation */
  .txb-mobile-topbar {
    display: flex;
  }

  .txb-mobile-bottom-nav {
    display: flex;
  }

  /* Stat Grid responsive adjustment */
  .txb-stat-grid {
    gap: 8px;
  }
  
  .txb-stat-card {
    padding: 12px 8px;
  }
  
  .txb-stat-value {
    font-size: 14px;
  }

  /* Vehicle Card full width-ish styling for mobile */
  .txb-vehicle-card {
    flex-direction: row;
    padding: 12px;
    gap: 12px;
  }

  .txb-vehicle-image {
    width: 90px;
    height: 60px;
  }

  .txb-vehicle-name {
    font-size: 14px;
  }

  .txb-vehicle-price {
    font-size: 16px;
  }

  /* Primary Button Pill on Mobile (full-ish width) */
  .txb-align-right {
    justify-content: center;
    width: 100%;
  }

  .txb-btn-primary {
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   AUTOCOMPLETE (Nominatim fallback) + Guest contact fields
   Ajouté pour corriger : suggestions d'adresses + réservation invité
═══════════════════════════════════════ */
.txb-autocomplete-wrap,
.txb-route-row > div { position: relative; }

.txb-nomi-list,
.txb-autocomplete-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 5000;
  background: #ffffff;
  border: 1px solid var(--txb-border, #e5e7eb);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  max-height: 240px;
  overflow-y: auto;
  display: none;
}
.txb-nomi-list.open,
.txb-autocomplete-list.open { display: block; }

.txb-ac-item {
  padding: 10px 14px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111827;
}
.txb-ac-item:hover { background: #f3f4f6; }
.txb-ac-item i { color: var(--txb-blue, #2563eb); flex-shrink: 0; }

/* Google's own dropdown (.pac-container) already styled in JS, keep z-index high */
.pac-container { z-index: 999999 !important; }

/* Guest contact card (booking without login) */
.txb-guest-contact-card {
  background: #f8faff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}
.txb-guest-contact-card .txb-field-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.txb-guest-contact-card .txb-field { display: flex; flex-direction: column; gap: 6px; }
.txb-guest-contact-card .txb-field label { font-size: 12px; font-weight: 600; color: #6b7280; }
.txb-guest-contact-card .txb-field input {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  width: 100%;
}
.txb-guest-contact-card .txb-field input:focus {
  border-color: var(--txb-blue, #2563eb);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

@media (max-width: 600px) {
  .txb-guest-contact-card .txb-field-row { flex-direction: column; }
}
