/* ── Page header ── */
.page-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 32px 0 28px;
  margin-top: 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text3);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--text3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green-dk); }
.breadcrumb i.fa-chevron-right { font-size: 0.65rem; }
.page-header h1 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800; color: var(--text); margin-bottom: 6px; }
.page-header p  { font-size: 0.95rem; color: var(--text3); }

/* ── Barre recherche flotte ── */
.fleet-search-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky; top: 68px; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.fsb-inner {
  display: flex; align-items: center;
  gap: 0; flex-wrap: wrap;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.fsb-field {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  flex: 1; min-width: 180px;
  cursor: pointer;
}
.fsb-field > i { color: var(--green-dk); font-size: 1rem; flex-shrink: 0; }
.fsb-field > div { display: flex; flex-direction: column; gap: 2px; width: 100%; }
.fsb-field label { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); }
.fsb-field input,
.fsb-field select {
  background: transparent; border: none; outline: none;
  font-family: inherit; font-size: 0.88rem; font-weight: 600;
  color: var(--text); width: 100%; padding: 0;
  appearance: none; -webkit-appearance: none;
}
.fsb-field input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.5; cursor: pointer; }
.fsb-sep { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.fsb-duration {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--green-bg);
  flex-shrink: 0;
}
.fsb-duration > i { color: var(--green-dk); }
.fsb-duration > div { display: flex; flex-direction: column; }
.fsb-duration span  { font-size: 1.1rem; font-weight: 800; color: var(--green-dk); line-height: 1; }
.fsb-duration label { font-size: 0.68rem; color: var(--green-dk); }
/* bouton supprimé — mise à jour automatique */

/* ── Banner résultat ── */
.fleet-result-banner {
  background: var(--green-bg);
  border-bottom: 1px solid rgba(37,211,102,0.2);
  padding: 10px 0;
}
.fleet-result-banner .container {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--green-dk); font-weight: 500;
}
.fleet-result-banner i { font-size: 1rem; }

/* ── Prix total sur carte ── */
.price-per-day {
  display: flex; align-items: baseline; gap: 2px;
  direction: ltr !important;
  unicode-bidi: isolate;
}
.pt-price {
  direction: ltr !important;
  unicode-bidi: isolate;
}
.price-total {
  margin-top: 8px;
  background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(37,211,102,0.05));
  border: 1.5px solid rgba(37,211,102,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pt-label {
  font-size: 0.72rem;
  color: var(--green-dk);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pt-label::before {
  content: '📅';
  font-size: 0.75rem;
}
.pt-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-dk);
  letter-spacing: -0.01em;
}

/* ── Section flotte page ── */
.fleet-page-section { padding: 48px 0 80px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .fsb-inner { flex-direction: column; border-radius: 12px; }
  .fsb-sep   { width: 100%; height: 1px; }
  .fsb-btn   { width: 100%; justify-content: center; min-height: 48px; }
  .fleet-search-bar { position: static; }
}

/* ── Mobile flotte amélioré ── */
@media (max-width: 480px) {
  .fleet-search-bar  { padding: 10px 0; }
  .fsb-field         { padding: 10px 14px; min-width: 100%; }
  .fsb-field input,
  .fsb-field select  { font-size: 0.88rem; }
  .page-header       { padding: 18px 0 16px; }
  .page-header h1    { font-size: 1.5rem; }
  .fleet-page-section { padding: 24px 0 56px; }
  .price-total       { flex-direction: column; align-items: flex-start; gap: 4px; padding: 8px 12px; }
  .pt-price          { font-size: 1rem; }
  .fleet-result-banner .container { font-size: 0.82rem; flex-wrap: wrap; gap: 6px; }
  .fsb-duration      { padding: 10px 14px; }
  .fsb-duration span { font-size: 1rem; }
}
