/* =========================================================
   Fleet Connect — Plugin WordPress
   Design system : Cockpit Light
   Encapsul\u00e9 sous .fleet- pour cohabiter avec n'importe quel
   th\u00e8me WordPress h\u00f4te (Divi, Elementor, Astra, Gutenberg\u2026)
   ========================================================= */

/* ---------- TOKENS / VARIABLES EXPOS\u00c9ES ---------- */
.fleet-root {
  /* Couleurs principales — surchargeables par l'agence via l'API branding */
  --fleet-primary:        #06aed4;
  --fleet-primary-ink:    #057a96;     /* texte/icone sur fond primary subtle */
  --fleet-primary-soft:   #e6f7fb;
  --fleet-primary-tint:   #f4fbfd;
  --fleet-accent:         #7b8ef0;
  --fleet-accent-soft:    #eef0fd;

  /* Neutres (warm-cool blend) */
  --fleet-canvas:         #f7f8fa;
  --fleet-surface:        #ffffff;
  --fleet-surface-2:      #fafbfc;
  --fleet-ink:            #0b1220;
  --fleet-ink-2:          #1f2735;
  --fleet-muted:          #5b6478;
  --fleet-faint:          #8b94a8;
  --fleet-line:           #e6e9ef;
  --fleet-line-strong:    #d5dae3;

  /* S\u00e9mantiques */
  --fleet-success:        #10b981;
  --fleet-success-soft:   #e7f8f1;
  --fleet-warning:        #f59e0b;
  --fleet-warning-soft:   #fef4e1;
  --fleet-danger:         #ef4444;
  --fleet-danger-soft:    #fdecec;

  /* Forme */
  --fleet-radius-sm:      8px;
  --fleet-radius:         12px;
  --fleet-radius-lg:      16px;
  --fleet-radius-xl:      24px;
  --fleet-radius-pill:    999px;

  /* Ombres en couches */
  --fleet-shadow-xs:      0 1px 2px rgba(11, 18, 32, 0.04);
  --fleet-shadow-sm:      0 2px 4px rgba(11, 18, 32, 0.04), 0 1px 2px rgba(11, 18, 32, 0.04);
  --fleet-shadow:         0 8px 24px -8px rgba(11, 18, 32, 0.10), 0 2px 6px -2px rgba(11, 18, 32, 0.06);
  --fleet-shadow-lg:      0 24px 48px -16px rgba(11, 18, 32, 0.18), 0 8px 16px -8px rgba(11, 18, 32, 0.08);
  --fleet-shadow-focus:   0 0 0 4px color-mix(in srgb, var(--fleet-primary) 24%, transparent);

  /* Espacements (4pt grid) */
  --fleet-sp-1: 4px;
  --fleet-sp-2: 8px;
  --fleet-sp-3: 12px;
  --fleet-sp-4: 16px;
  --fleet-sp-5: 20px;
  --fleet-sp-6: 24px;
  --fleet-sp-8: 32px;
  --fleet-sp-10: 40px;
  --fleet-sp-12: 48px;
  --fleet-sp-16: 64px;

  /* Typographie — h\u00e9rite du th\u00e8me h\u00f4te si possible, sinon system stack */
  --fleet-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fleet-font-mono: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
}

/* ---------- RESET LOCAL ---------- */
.fleet-root, .fleet-root *, .fleet-root *::before, .fleet-root *::after {
  box-sizing: border-box;
}

.fleet-root {
  font-family: var(--fleet-font);
  color: var(--fleet-ink);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.fleet-root img { max-width: 100%; display: block; }
.fleet-root button { font: inherit; color: inherit; }
.fleet-root a { color: inherit; text-decoration: none; }
.fleet-root h1, .fleet-root h2, .fleet-root h3, .fleet-root h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fleet-ink);
  line-height: 1.2;
}
.fleet-root p { margin: 0; }
.fleet-root ul { margin: 0; padding: 0; list-style: none; }

/* ---------- TYPO ---------- */
.fleet-h1 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; letter-spacing: -0.02em; }
.fleet-h2 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 700; letter-spacing: -0.015em; }
.fleet-h3 { font-size: 18px; font-weight: 600; }
.fleet-h4 { font-size: 15px; font-weight: 600; }
.fleet-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fleet-primary-ink);
}
.fleet-lead { font-size: 17px; color: var(--fleet-muted); line-height: 1.55; }
.fleet-body { font-size: 15px; color: var(--fleet-ink-2); }
.fleet-small { font-size: 13px; color: var(--fleet-muted); }
.fleet-mono  { font-family: var(--fleet-font-mono); font-size: 13px; }

/* ---------- BUTTONS ---------- */
.fleet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fleet-sp-2);
  height: 44px;
  padding: 0 var(--fleet-sp-5);
  border-radius: var(--fleet-radius);
  border: 1px solid transparent;
  background: var(--fleet-ink);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.fleet-btn:hover { transform: translateY(-1px); box-shadow: var(--fleet-shadow); }
.fleet-btn:active { transform: translateY(0); }
.fleet-btn:focus-visible { outline: none; box-shadow: var(--fleet-shadow-focus); }

.fleet-btn--primary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--fleet-primary) 105%, white) 0%, var(--fleet-primary) 100%);
  color: white;
  box-shadow: var(--fleet-shadow-sm), inset 0 1px 0 rgba(255,255,255,0.18);
}
.fleet-btn--primary:hover {
  background: linear-gradient(180deg, var(--fleet-primary) 0%, color-mix(in srgb, var(--fleet-primary) 88%, black) 100%);
}
.fleet-btn--secondary {
  background: var(--fleet-surface);
  color: var(--fleet-ink);
  border-color: var(--fleet-line-strong);
}
.fleet-btn--secondary:hover { background: var(--fleet-surface-2); }
.fleet-btn--ghost {
  background: transparent;
  color: var(--fleet-ink);
}
.fleet-btn--ghost:hover { background: var(--fleet-surface-2); }
.fleet-btn--danger {
  background: var(--fleet-danger);
}

.fleet-btn--sm { height: 36px; padding: 0 var(--fleet-sp-3); font-size: 13px; border-radius: var(--fleet-radius-sm); }
.fleet-btn--lg { height: 52px; padding: 0 var(--fleet-sp-6); font-size: 16px; }
.fleet-btn--block { width: 100%; }
.fleet-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---------- BADGES & CHIPS ---------- */
.fleet-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--fleet-radius-pill);
  background: var(--fleet-surface);
  color: var(--fleet-ink-2);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--fleet-line);
  line-height: 1;
}
.fleet-badge--phare    { background: #fff7e0; color: #8a5800; border-color: #f3e2a4; }
.fleet-badge--primary  { background: var(--fleet-primary-soft); color: var(--fleet-primary-ink); border-color: transparent; }
.fleet-badge--accent   { background: var(--fleet-accent-soft); color: #4a52a8; border-color: transparent; }
.fleet-badge--success  { background: var(--fleet-success-soft); color: #066f4d; border-color: transparent; }
.fleet-badge--neutral  { background: #f1f3f6; color: var(--fleet-ink-2); border-color: transparent; }

.fleet-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--fleet-radius-pill);
  background: var(--fleet-surface);
  border: 1px solid var(--fleet-line);
  font-size: 14px;
  font-weight: 500;
  color: var(--fleet-ink-2);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.fleet-chip:hover { border-color: var(--fleet-line-strong); }
.fleet-chip[aria-pressed="true"] {
  background: var(--fleet-ink);
  border-color: var(--fleet-ink);
  color: white;
}
.fleet-chip[aria-pressed="true"] .fleet-chip__count { background: rgba(255,255,255,0.18); color: white; }
.fleet-chip__count {
  background: #f1f3f6;
  color: var(--fleet-muted);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  margin-left: 2px;
}

/* ---------- CARDS ---------- */
.fleet-card {
  background: var(--fleet-surface);
  border-radius: var(--fleet-radius-lg);
  border: 1px solid var(--fleet-line);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s ease, border-color 0.2s ease;
  position: relative;
}
.fleet-card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--fleet-shadow);
  border-color: transparent;
}

/* ---------- IMAGE PLACEHOLDER (striped) ---------- */
.fleet-img {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in srgb, var(--fleet-primary) 18%, white) 0 8px,
      color-mix(in srgb, var(--fleet-accent) 14%, white) 8px 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fleet-img__label {
  font-family: var(--fleet-font-mono);
  font-size: 11px;
  color: var(--fleet-ink);
  background: rgba(255,255,255,0.86);
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.fleet-img--ratio-16-9 { aspect-ratio: 16 / 9; }
.fleet-img--ratio-4-3  { aspect-ratio: 4 / 3; }
.fleet-img--ratio-1-1  { aspect-ratio: 1 / 1; }
.fleet-img--ratio-3-4  { aspect-ratio: 3 / 4; }

/* Variantes color tints pour des photos diff\u00e9rentes */
.fleet-img--desert  { background: repeating-linear-gradient(135deg, #f4d6a8 0 8px, #e8b97a 8px 16px); }
.fleet-img--sahara  { background: repeating-linear-gradient(135deg, #f0c489 0 8px, #d99457 8px 16px); }
.fleet-img--atlas   { background: repeating-linear-gradient(135deg, #cfd9e8 0 8px, #a6b6cd 8px 16px); }
.fleet-img--ocean   { background: repeating-linear-gradient(135deg, #c7e8ee 0 8px, #8cccd6 8px 16px); }
.fleet-img--medina  { background: repeating-linear-gradient(135deg, #e8c4a0 0 8px, #c89876 8px 16px); }
.fleet-img--olive   { background: repeating-linear-gradient(135deg, #d8dcb8 0 8px, #aab489 8px 16px); }
.fleet-img--night   { background: repeating-linear-gradient(135deg, #2a3654 0 8px, #1b243b 8px 16px); }
.fleet-img--night .fleet-img__label { background: rgba(255,255,255,0.92); }

/* ---------- FORM ELEMENTS ---------- */
.fleet-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fleet-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fleet-ink-2);
}
.fleet-label__hint { font-weight: 400; color: var(--fleet-faint); margin-left: 4px; }

.fleet-input, .fleet-select, .fleet-textarea {
  width: 100%;
  height: 44px;
  padding: 0 var(--fleet-sp-3);
  border: 1px solid var(--fleet-line-strong);
  border-radius: var(--fleet-radius);
  background: var(--fleet-surface);
  color: var(--fleet-ink);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.fleet-textarea { height: auto; min-height: 88px; padding: 10px 12px; resize: vertical; line-height: 1.5; }
.fleet-input::placeholder, .fleet-textarea::placeholder { color: var(--fleet-faint); }
.fleet-input:hover, .fleet-select:hover, .fleet-textarea:hover { border-color: #b8bfca; }
.fleet-input:focus, .fleet-select:focus, .fleet-textarea:focus {
  outline: none;
  border-color: var(--fleet-primary);
  box-shadow: var(--fleet-shadow-focus);
}
.fleet-input--error, .fleet-select--error, .fleet-textarea--error { border-color: var(--fleet-danger); }
.fleet-input--error:focus { box-shadow: 0 0 0 4px color-mix(in srgb, var(--fleet-danger) 18%, transparent); }

.fleet-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235b6478' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.fleet-error-msg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--fleet-danger);
  margin-top: 2px;
}

/* Stepper +/- */
.fleet-stepper {
  display: inline-flex;
  align-items: center;
  height: 44px;
  border: 1px solid var(--fleet-line-strong);
  border-radius: var(--fleet-radius);
  background: var(--fleet-surface);
  overflow: hidden;
}
.fleet-stepper__btn {
  width: 44px;
  height: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--fleet-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.fleet-stepper__btn:hover { background: var(--fleet-surface-2); }
.fleet-stepper__btn:disabled { color: var(--fleet-faint); cursor: not-allowed; }
.fleet-stepper__value {
  min-width: 36px;
  text-align: center;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Radio cards */
.fleet-radiocard {
  display: flex;
  gap: var(--fleet-sp-3);
  align-items: flex-start;
  padding: var(--fleet-sp-4);
  border: 1px solid var(--fleet-line-strong);
  border-radius: var(--fleet-radius);
  background: var(--fleet-surface);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}
.fleet-radiocard:hover { border-color: var(--fleet-line-strong); background: var(--fleet-surface-2); }
.fleet-radiocard input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--fleet-line-strong);
  border-radius: 50%;
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.15s ease;
}
.fleet-radiocard input[type="radio"]:checked {
  border-color: var(--fleet-primary);
  border-width: 6px;
}
.fleet-radiocard:has(input:checked) {
  border-color: var(--fleet-primary);
  background: var(--fleet-primary-tint);
  box-shadow: 0 0 0 1px var(--fleet-primary);
}
.fleet-radiocard__title { font-weight: 600; font-size: 15px; color: var(--fleet-ink); }
.fleet-radiocard__desc  { font-size: 13px; color: var(--fleet-muted); margin-top: 2px; }
.fleet-radiocard__meta  { margin-left: auto; align-self: center; font-size: 13px; color: var(--fleet-muted); }

/* Checkbox */
.fleet-checkbox {
  display: flex;
  gap: var(--fleet-sp-3);
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  color: var(--fleet-ink-2);
  line-height: 1.5;
}
.fleet-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--fleet-line-strong);
  border-radius: 6px;
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease;
}
.fleet-checkbox input[type="checkbox"]:checked {
  background: var(--fleet-primary);
  border-color: var(--fleet-primary);
}
.fleet-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Tel input avec prefix */
.fleet-input-group {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--fleet-line-strong);
  border-radius: var(--fleet-radius);
  background: var(--fleet-surface);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.fleet-input-group:focus-within {
  border-color: var(--fleet-primary);
  box-shadow: var(--fleet-shadow-focus);
}
.fleet-input-group .fleet-select,
.fleet-input-group .fleet-input {
  border: none;
  border-radius: 0;
  height: 42px;
}
.fleet-input-group .fleet-select:focus,
.fleet-input-group .fleet-input:focus {
  box-shadow: none;
}
.fleet-input-group__prefix {
  width: 96px;
  flex-shrink: 0;
  border-right: 1px solid var(--fleet-line) !important;
}

/* ---------- STAR RATING ---------- */
.fleet-stars { display: inline-flex; gap: 2px; color: #f5b400; }
.fleet-stars svg { width: 14px; height: 14px; }

/* ---------- DIVIDERS ---------- */
.fleet-divider { height: 1px; background: var(--fleet-line); border: 0; margin: 0; }
.fleet-divider--dashed { background: none; border-top: 1px dashed var(--fleet-line-strong); }

/* ============================================================
   COMPOSANTS \u00c9CRAN PAR \u00c9CRAN
   ============================================================ */

/* ---------- 1) GRILLE PRODUITS ---------- */
.fleet-grid-wrap { padding: var(--fleet-sp-8) var(--fleet-sp-6); max-width: 1280px; margin: 0 auto; }
.fleet-grid-header { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--fleet-sp-6); margin-bottom: var(--fleet-sp-6); flex-wrap: wrap; }
.fleet-grid-header__copy { max-width: 640px; }
.fleet-grid-header__copy .fleet-eyebrow { margin-bottom: 8px; display: block; }
.fleet-grid-header__copy .fleet-h1 { margin-bottom: 8px; }
.fleet-grid-meta { font-size: 14px; color: var(--fleet-muted); display: flex; align-items: center; gap: var(--fleet-sp-3); }
.fleet-grid-meta strong { color: var(--fleet-ink); font-weight: 600; }

.fleet-filters {
  background: var(--fleet-surface);
  border: 1px solid var(--fleet-line);
  border-radius: var(--fleet-radius-lg);
  padding: var(--fleet-sp-3);
  display: flex;
  align-items: center;
  gap: var(--fleet-sp-2);
  margin-bottom: var(--fleet-sp-6);
  box-shadow: var(--fleet-shadow-xs);
  overflow-x: auto;
  scrollbar-width: none;
}
.fleet-filters::-webkit-scrollbar { display: none; }
.fleet-filters__group { display: flex; gap: 6px; align-items: center; padding-right: var(--fleet-sp-3); border-right: 1px solid var(--fleet-line); }
.fleet-filters__group:last-of-type { border-right: 0; padding-right: 0; }
.fleet-filters__right { margin-left: auto; display: flex; gap: var(--fleet-sp-2); align-items: center; }

.fleet-search {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 340px;
}
.fleet-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--fleet-faint); }
.fleet-search .fleet-input { padding-left: 36px; height: 40px; border-color: var(--fleet-line); background: var(--fleet-surface-2); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--fleet-sp-5);
}

.fleet-product-card { cursor: pointer; }
.fleet-product-card__media { position: relative; }
.fleet-product-card__media .fleet-img { aspect-ratio: 4 / 3; }
.fleet-product-card__badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.fleet-product-card__like {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--fleet-shadow-xs);
  color: var(--fleet-ink-2);
  transition: transform 0.15s ease;
}
.fleet-product-card__like:hover { transform: scale(1.08); }
.fleet-product-card__like[aria-pressed="true"] { color: var(--fleet-danger); }
.fleet-product-card__like[aria-pressed="true"] svg { fill: currentColor; }
.fleet-product-card__body { padding: var(--fleet-sp-4); }
.fleet-product-card__meta {
  display: flex; gap: var(--fleet-sp-3); flex-wrap: wrap;
  font-size: 13px; color: var(--fleet-muted);
  margin-bottom: 8px;
}
.fleet-product-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.fleet-product-card__title { font-size: 16px; font-weight: 600; color: var(--fleet-ink); margin-bottom: 4px; }
.fleet-product-card__desc {
  font-size: 14px; color: var(--fleet-muted); margin-bottom: var(--fleet-sp-3);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 42px;
}
.fleet-product-card__footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: var(--fleet-sp-3); border-top: 1px solid var(--fleet-line);
}
.fleet-product-card__price-label { font-size: 12px; color: var(--fleet-muted); }
.fleet-product-card__price { font-size: 18px; font-weight: 700; color: var(--fleet-ink); line-height: 1.1; }
.fleet-product-card__price .fleet-unit { font-size: 12px; color: var(--fleet-muted); font-weight: 400; margin-left: 2px; }
.fleet-product-card__cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--fleet-primary-ink);
}
.fleet-product-card:hover .fleet-product-card__cta { color: var(--fleet-primary); gap: 8px; transition: gap 0.2s; }
.fleet-product-card__rating { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--fleet-ink-2); font-weight: 500; }

/* ---------- 2) FICHE PRODUIT ---------- */
.fleet-detail { max-width: 1280px; margin: 0 auto; padding: var(--fleet-sp-6); }
.fleet-breadcrumb { font-size: 13px; color: var(--fleet-muted); margin-bottom: var(--fleet-sp-4); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.fleet-breadcrumb a { color: var(--fleet-muted); }
.fleet-breadcrumb a:hover { color: var(--fleet-ink); }
.fleet-breadcrumb__sep { color: var(--fleet-faint); }
.fleet-breadcrumb__current { color: var(--fleet-ink); font-weight: 500; }

.fleet-detail__title { font-size: clamp(26px, 3vw, 36px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--fleet-sp-2); }
.fleet-detail__subtitle { font-size: 16px; color: var(--fleet-muted); margin-bottom: var(--fleet-sp-3); }
.fleet-detail__headmeta { display: flex; gap: var(--fleet-sp-4); flex-wrap: wrap; align-items: center; margin-bottom: var(--fleet-sp-5); font-size: 14px; }
.fleet-detail__headmeta > * { display: inline-flex; align-items: center; gap: 6px; color: var(--fleet-ink-2); }

/* Gallery mosaique */
.fleet-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: var(--fleet-radius-lg);
  overflow: hidden;
  margin-bottom: var(--fleet-sp-6);
  aspect-ratio: 16 / 8;
}
.fleet-gallery > :nth-child(1) { grid-row: 1 / 3; grid-column: 1; }
.fleet-gallery .fleet-img { aspect-ratio: auto; width: 100%; height: 100%; }
.fleet-gallery__more {
  position: absolute; right: 14px; bottom: 14px;
  background: rgba(11,18,32,0.78);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

/* Two-col layout */
.fleet-detail__cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: var(--fleet-sp-8);
  align-items: start;
}

.fleet-detail__section { padding-block: var(--fleet-sp-6); border-top: 1px solid var(--fleet-line); }
.fleet-detail__section:first-child { border-top: 0; padding-top: 0; }
.fleet-detail__section h2 { margin-bottom: var(--fleet-sp-4); font-size: 22px; font-weight: 700; }

.fleet-keyfacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--fleet-sp-3);
  margin-bottom: 0;
}
.fleet-keyfact {
  display: flex; gap: var(--fleet-sp-3); align-items: flex-start;
  padding: var(--fleet-sp-3) var(--fleet-sp-4);
  background: var(--fleet-surface-2);
  border: 1px solid var(--fleet-line);
  border-radius: var(--fleet-radius);
}
.fleet-keyfact__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--fleet-primary-soft);
  color: var(--fleet-primary-ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fleet-keyfact__label { font-size: 12px; color: var(--fleet-muted); }
.fleet-keyfact__value { font-size: 14px; font-weight: 600; color: var(--fleet-ink); }

/* Timeline programme */
.fleet-timeline { display: flex; flex-direction: column; gap: var(--fleet-sp-5); }
.fleet-timeline__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--fleet-sp-4);
  position: relative;
}
.fleet-timeline__step:not(:last-child)::before {
  content: ""; position: absolute;
  left: 23px; top: 48px; bottom: -20px;
  width: 2px;
  background: linear-gradient(180deg, var(--fleet-line) 0, var(--fleet-line) 100%);
}
.fleet-timeline__bullet {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--fleet-surface);
  border: 2px solid var(--fleet-primary);
  color: var(--fleet-primary-ink);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 1;
}
.fleet-timeline__step--start .fleet-timeline__bullet { background: var(--fleet-primary); color: white; }
.fleet-timeline__step--end .fleet-timeline__bullet   { background: var(--fleet-ink); color: white; border-color: var(--fleet-ink); }
.fleet-timeline__time { font-size: 12px; color: var(--fleet-muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 2px; }
.fleet-timeline__title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.fleet-timeline__desc { font-size: 14px; color: var(--fleet-muted); line-height: 1.55; }

/* Inclus / Non inclus */
.fleet-include {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--fleet-sp-6);
}
.fleet-include__list { display: flex; flex-direction: column; gap: var(--fleet-sp-3); }
.fleet-include__item { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--fleet-ink-2); line-height: 1.5; }
.fleet-include__icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fleet-include__icon--yes { background: var(--fleet-success-soft); color: var(--fleet-success); }
.fleet-include__icon--no  { background: var(--fleet-danger-soft);  color: var(--fleet-danger); }

/* Map block */
.fleet-map {
  border: 1px solid var(--fleet-line);
  border-radius: var(--fleet-radius);
  overflow: hidden;
  background: var(--fleet-surface-2);
}
.fleet-map__viewport {
  aspect-ratio: 16 / 7;
  background:
    radial-gradient(ellipse at 30% 40%, #c8e3e8 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, #e0d4b8 0%, transparent 50%),
    repeating-linear-gradient(45deg, #f0ebe0 0 22px, #ece5d4 22px 44px);
  position: relative;
}
.fleet-map__pin {
  position: absolute;
  left: 42%; top: 48%;
  width: 36px; height: 36px;
  transform: translate(-50%, -100%);
  display: inline-flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  color: var(--fleet-primary);
}
.fleet-map__pin::after {
  content: ""; position: absolute; left: 50%; bottom: -8px;
  width: 16px; height: 4px; border-radius: 50%;
  background: rgba(0,0,0,0.15); transform: translateX(-50%);
}
.fleet-map__path {
  position: absolute; left: 18%; top: 60%; width: 50%; height: 1px;
  border-top: 2.5px dashed var(--fleet-primary);
  opacity: 0.6;
  transform: rotate(-12deg);
}
.fleet-map__info { padding: var(--fleet-sp-4); display: flex; gap: var(--fleet-sp-4); align-items: flex-start; }
.fleet-map__address { flex: 1; }
.fleet-map__address strong { display: block; margin-bottom: 2px; }
.fleet-map__address span { font-size: 13px; color: var(--fleet-muted); }

/* Reviews */
.fleet-reviews-summary {
  display: flex; gap: var(--fleet-sp-6); align-items: center;
  padding: var(--fleet-sp-5);
  background: var(--fleet-surface-2);
  border: 1px solid var(--fleet-line);
  border-radius: var(--fleet-radius);
  margin-bottom: var(--fleet-sp-5);
}
.fleet-reviews-summary__score { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.fleet-reviews-summary__bars { flex: 1; display: flex; flex-direction: column; gap: 6px; max-width: 280px; }
.fleet-reviews-bar { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--fleet-muted); }
.fleet-reviews-bar__label { width: 12px; }
.fleet-reviews-bar__track { flex: 1; height: 6px; background: var(--fleet-line); border-radius: 3px; overflow: hidden; }
.fleet-reviews-bar__fill { height: 100%; background: #f5b400; }

.fleet-review {
  padding: var(--fleet-sp-4) 0;
  border-bottom: 1px solid var(--fleet-line);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--fleet-sp-4);
}
.fleet-review:last-child { border-bottom: 0; }
.fleet-review__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--fleet-primary-soft);
  color: var(--fleet-primary-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.fleet-review__head { display: flex; align-items: baseline; gap: var(--fleet-sp-2); flex-wrap: wrap; margin-bottom: 4px; }
.fleet-review__name { font-weight: 600; font-size: 14px; }
.fleet-review__date { font-size: 12px; color: var(--fleet-muted); }
.fleet-review__country { font-size: 12px; color: var(--fleet-muted); margin-left: auto; }
.fleet-review__body { font-size: 14px; color: var(--fleet-ink-2); line-height: 1.6; }

/* Trust bar */
.fleet-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--fleet-sp-3);
  padding: var(--fleet-sp-5);
  background: var(--fleet-ink);
  color: #d5dae3;
  border-radius: var(--fleet-radius-lg);
  margin: var(--fleet-sp-6) 0;
}
.fleet-trust__item { display: flex; gap: var(--fleet-sp-3); align-items: flex-start; }
.fleet-trust__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--fleet-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fleet-trust__title { color: white; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.fleet-trust__desc { font-size: 12px; color: #a8b0c0; line-height: 1.5; }

/* Booking sticky card */
.fleet-booking-card {
  background: var(--fleet-surface);
  border: 1px solid var(--fleet-line);
  border-radius: var(--fleet-radius-lg);
  padding: var(--fleet-sp-5);
  box-shadow: var(--fleet-shadow-sm);
  position: sticky;
  top: 92px;
}
.fleet-booking-card__price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: var(--fleet-sp-3); }
.fleet-booking-card__price-label { font-size: 12px; color: var(--fleet-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.fleet-booking-card__price { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; margin-top: 4px; }
.fleet-booking-card__price-sub { font-size: 13px; color: var(--fleet-muted); margin-top: 4px; }
.fleet-booking-card__rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--fleet-ink-2); }
.fleet-booking-card__form { display: flex; flex-direction: column; gap: var(--fleet-sp-3); margin: var(--fleet-sp-4) 0; }
.fleet-booking-card__divider { margin: var(--fleet-sp-4) 0; }
.fleet-booking-card__perks { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--fleet-ink-2); margin-top: var(--fleet-sp-4); }
.fleet-booking-card__perks li { display: flex; gap: 8px; align-items: center; }
.fleet-booking-card__perks svg { color: var(--fleet-success); flex-shrink: 0; }

/* Mobile sticky bottom CTA */
.fleet-booking-bottom {
  display: none;
  position: sticky; bottom: 0; left: 0; right: 0;
  background: var(--fleet-surface);
  border-top: 1px solid var(--fleet-line);
  padding: var(--fleet-sp-3) var(--fleet-sp-4);
  box-shadow: 0 -4px 16px -4px rgba(11,18,32,0.08);
  z-index: 10;
  align-items: center;
  gap: var(--fleet-sp-3);
}
.fleet-booking-bottom__price { flex: 1; }
.fleet-booking-bottom__from { font-size: 11px; color: var(--fleet-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.fleet-booking-bottom__amount { font-size: 18px; font-weight: 700; }

/* ---------- 3) FORMULAIRE R\u00c9SERVATION ---------- */
.fleet-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(11,18,32,0.5);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: var(--fleet-sp-4);
}
.fleet-modal-backdrop.is-open { display: flex; animation: fleet-fade-in 0.2s ease-out; }
@keyframes fleet-fade-in { from { opacity: 0; } to { opacity: 1; } }

.fleet-modal {
  background: var(--fleet-surface);
  border-radius: var(--fleet-radius-xl);
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--fleet-shadow-lg);
  animation: fleet-modal-in 0.3s cubic-bezier(.2,.7,.2,1);
}
@keyframes fleet-modal-in { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.fleet-modal__header { padding: var(--fleet-sp-5) var(--fleet-sp-6); border-bottom: 1px solid var(--fleet-line); display: flex; align-items: center; gap: var(--fleet-sp-4); }
.fleet-modal__title { font-size: 18px; font-weight: 600; flex: 1; }
.fleet-modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--fleet-surface-2);
  border: 0;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fleet-ink-2);
}
.fleet-modal__close:hover { background: var(--fleet-line); }
.fleet-modal__body { padding: var(--fleet-sp-6); overflow-y: auto; flex: 1; }
.fleet-modal__footer { padding: var(--fleet-sp-4) var(--fleet-sp-6); border-top: 1px solid var(--fleet-line); display: flex; gap: var(--fleet-sp-3); align-items: center; background: var(--fleet-surface-2); }
.fleet-modal__footer-spacer { flex: 1; }

/* Stepper progress */
.fleet-progress { display: flex; align-items: center; gap: var(--fleet-sp-2); flex: 1; }
.fleet-progress__step {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fleet-muted); font-weight: 500;
}
.fleet-progress__dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--fleet-surface-2);
  border: 1.5px solid var(--fleet-line-strong);
  color: var(--fleet-muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.fleet-progress__step--active .fleet-progress__dot { background: var(--fleet-primary); color: white; border-color: var(--fleet-primary); }
.fleet-progress__step--active { color: var(--fleet-ink); font-weight: 600; }
.fleet-progress__step--done .fleet-progress__dot { background: var(--fleet-ink); color: white; border-color: var(--fleet-ink); }
.fleet-progress__step--done { color: var(--fleet-ink); }
.fleet-progress__connector { width: 18px; height: 2px; background: var(--fleet-line); border-radius: 1px; }
.fleet-progress__step--done + .fleet-progress__connector { background: var(--fleet-ink); }

/* Form layout */
.fleet-form { display: flex; flex-direction: column; gap: var(--fleet-sp-4); }
.fleet-form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--fleet-sp-3); }
.fleet-form__row--3 { grid-template-columns: repeat(3, 1fr); }
.fleet-form__section-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fleet-muted); margin-top: var(--fleet-sp-3); margin-bottom: -4px; }

/* Recap card (\u00e9tape 3) */
.fleet-recap {
  background: var(--fleet-surface-2);
  border: 1px solid var(--fleet-line);
  border-radius: var(--fleet-radius);
  padding: var(--fleet-sp-4);
}
.fleet-recap__header { display: flex; gap: var(--fleet-sp-3); align-items: center; margin-bottom: var(--fleet-sp-3); padding-bottom: var(--fleet-sp-3); border-bottom: 1px dashed var(--fleet-line-strong); }
.fleet-recap__thumb { width: 64px; height: 64px; border-radius: var(--fleet-radius-sm); flex-shrink: 0; }
.fleet-recap__product { font-weight: 600; font-size: 15px; }
.fleet-recap__subtitle { font-size: 13px; color: var(--fleet-muted); }
.fleet-recap__row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; font-size: 14px; }
.fleet-recap__row--total {
  margin-top: var(--fleet-sp-3); padding-top: var(--fleet-sp-3);
  border-top: 1px solid var(--fleet-line-strong);
  font-size: 17px; font-weight: 700;
}
.fleet-recap__row--total .fleet-recap__val { font-size: 22px; }
.fleet-recap__key { color: var(--fleet-muted); }
.fleet-recap__val { color: var(--fleet-ink); font-weight: 500; text-align: right; }
.fleet-recap__currency-sub { font-size: 12px; color: var(--fleet-muted); font-weight: 400; display: block; }

/* ---------- 4) CHECKOUT 3DS ---------- */
.fleet-3ds {
  max-width: 520px;
  margin: 0 auto;
  padding: var(--fleet-sp-12) var(--fleet-sp-6);
  text-align: center;
}
.fleet-3ds__bankcard {
  background: linear-gradient(135deg, #1b243b 0%, #2a3654 100%);
  color: white;
  border-radius: var(--fleet-radius-lg);
  padding: var(--fleet-sp-6);
  margin-bottom: var(--fleet-sp-6);
  position: relative;
  overflow: hidden;
  text-align: left;
  aspect-ratio: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--fleet-shadow-lg);
}
.fleet-3ds__bankcard::before {
  content: ""; position: absolute; top: -40%; right: -20%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--fleet-primary) 0%, transparent 70%);
  opacity: 0.4;
}
.fleet-3ds__bankcard-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.fleet-3ds__bankcard-chip {
  width: 38px; height: 28px;
  background: linear-gradient(135deg, #d4af37 0%, #a08220 100%);
  border-radius: 4px;
  position: relative;
}
.fleet-3ds__bankcard-chip::before {
  content: ""; position: absolute; inset: 4px;
  background-image:
    linear-gradient(0deg, rgba(0,0,0,0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.2) 1px, transparent 1px);
  background-size: 6px 6px;
  border-radius: 2px;
}
.fleet-3ds__bankcard-cmi { font-family: var(--fleet-font-mono); font-size: 11px; opacity: 0.85; letter-spacing: 0.1em; }
.fleet-3ds__bankcard-num { font-family: var(--fleet-font-mono); font-size: 17px; letter-spacing: 0.18em; position: relative; z-index: 1; }
.fleet-3ds__bankcard-foot { display: flex; justify-content: space-between; align-items: flex-end; font-size: 11px; opacity: 0.86; position: relative; z-index: 1; }
.fleet-3ds__bankcard-foot strong { display: block; font-size: 13px; opacity: 1; font-weight: 500; margin-top: 2px; }

.fleet-3ds__title { font-size: 22px; font-weight: 700; margin-bottom: var(--fleet-sp-2); }
.fleet-3ds__subtitle { color: var(--fleet-muted); margin-bottom: var(--fleet-sp-6); }

.fleet-3ds__lock { display: flex; gap: 8px; justify-content: center; font-size: 13px; color: var(--fleet-muted); margin-top: var(--fleet-sp-5); }
.fleet-3ds__lock svg { color: var(--fleet-success); }

.fleet-loader {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid var(--fleet-primary-soft);
  border-top-color: var(--fleet-primary);
  animation: fleet-spin 0.8s linear infinite;
  margin: 0 auto var(--fleet-sp-6);
}
@keyframes fleet-spin { to { transform: rotate(360deg); } }

.fleet-3ds__steps {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--fleet-surface-2);
  border: 1px solid var(--fleet-line);
  border-radius: var(--fleet-radius);
  padding: var(--fleet-sp-4);
  text-align: left;
  margin: var(--fleet-sp-5) 0;
}
.fleet-3ds__step { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--fleet-muted); }
.fleet-3ds__step-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--fleet-line); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--fleet-muted); font-size: 12px; font-weight: 700; }
.fleet-3ds__step--done .fleet-3ds__step-icon { background: var(--fleet-success); color: white; }
.fleet-3ds__step--current .fleet-3ds__step-icon { background: var(--fleet-primary); color: white; animation: fleet-pulse 1.6s ease-in-out infinite; }
.fleet-3ds__step--done, .fleet-3ds__step--current { color: var(--fleet-ink); }
@keyframes fleet-pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--fleet-primary) 50%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--fleet-primary) 0%, transparent); }
}

/* ---------- 5) CONFIRMATION ---------- */
.fleet-confirm { max-width: 680px; margin: 0 auto; padding: var(--fleet-sp-10) var(--fleet-sp-6); text-align: center; }
.fleet-confirm__check {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--fleet-success-soft);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--fleet-sp-5);
  position: relative;
  color: var(--fleet-success);
}
.fleet-confirm__check::before {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--fleet-success);
  opacity: 0;
  animation: fleet-ring 1.4s ease-out infinite;
}
@keyframes fleet-ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.fleet-confirm__check svg { animation: fleet-check-in 0.5s 0.1s cubic-bezier(.2,.7,.2,1) backwards; }
@keyframes fleet-check-in { from { transform: scale(0.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.fleet-confirm__title { font-size: 28px; font-weight: 700; margin-bottom: var(--fleet-sp-3); letter-spacing: -0.02em; }
.fleet-confirm__lead { font-size: 16px; color: var(--fleet-muted); margin-bottom: var(--fleet-sp-6); }
.fleet-confirm__ref {
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--fleet-sp-3) var(--fleet-sp-4);
  background: var(--fleet-ink);
  color: white;
  border-radius: var(--fleet-radius);
  font-family: var(--fleet-font-mono);
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: var(--fleet-sp-8);
}
.fleet-confirm__ref svg { opacity: 0.7; cursor: pointer; }
.fleet-confirm__ref svg:hover { opacity: 1; }

.fleet-confirm__card {
  background: var(--fleet-surface);
  border: 1px solid var(--fleet-line);
  border-radius: var(--fleet-radius-lg);
  padding: var(--fleet-sp-6);
  text-align: left;
  margin-bottom: var(--fleet-sp-4);
  box-shadow: var(--fleet-shadow-sm);
}
.fleet-confirm__details { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--fleet-sp-4); }
.fleet-confirm__detail-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fleet-muted); font-weight: 600; margin-bottom: 4px; }
.fleet-confirm__detail-value { font-size: 15px; font-weight: 500; color: var(--fleet-ink); }
.fleet-confirm__detail-value small { display: block; font-size: 12px; color: var(--fleet-muted); font-weight: 400; }

.fleet-confirm__cta { display: flex; gap: var(--fleet-sp-3); justify-content: center; flex-wrap: wrap; margin-bottom: var(--fleet-sp-6); }
.fleet-confirm__sms { background: var(--fleet-success-soft); border: 1px solid color-mix(in srgb, var(--fleet-success) 30%, transparent); color: #066f4d; border-radius: var(--fleet-radius); padding: var(--fleet-sp-3) var(--fleet-sp-4); font-size: 14px; display: inline-flex; gap: 10px; align-items: center; margin-bottom: var(--fleet-sp-4); }
.fleet-confirm__agency { background: var(--fleet-primary-tint); border: 1px solid color-mix(in srgb, var(--fleet-primary) 22%, transparent); border-radius: var(--fleet-radius); padding: var(--fleet-sp-4); display: flex; gap: var(--fleet-sp-4); text-align: left; align-items: center; margin-bottom: var(--fleet-sp-6); }
.fleet-confirm__agency-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--fleet-primary); color: white; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.fleet-confirm__agency-info { flex: 1; }
.fleet-confirm__agency-name { font-weight: 600; font-size: 15px; }
.fleet-confirm__agency-desc { font-size: 13px; color: var(--fleet-muted); }
.fleet-confirm__agency-action { display: flex; gap: var(--fleet-sp-2); }

/* ---------- 6) ERROR PAGE ---------- */
.fleet-error { max-width: 520px; margin: 0 auto; padding: var(--fleet-sp-10) var(--fleet-sp-6); text-align: center; }
.fleet-error__icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--fleet-warning-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fleet-warning);
  margin-bottom: var(--fleet-sp-5);
}
.fleet-error__title { font-size: 24px; font-weight: 700; margin-bottom: var(--fleet-sp-2); }
.fleet-error__lead { font-size: 15px; color: var(--fleet-muted); margin-bottom: var(--fleet-sp-5); line-height: 1.6; }
.fleet-error__reason {
  background: var(--fleet-surface-2);
  border-left: 3px solid var(--fleet-warning);
  border-radius: 8px;
  padding: var(--fleet-sp-3) var(--fleet-sp-4);
  text-align: left;
  margin-bottom: var(--fleet-sp-6);
  font-size: 13px;
  color: var(--fleet-ink-2);
}
.fleet-error__reason strong { display: block; margin-bottom: 4px; }
.fleet-error__reason code { font-family: var(--fleet-font-mono); font-size: 12px; color: var(--fleet-muted); }
.fleet-error__cta { display: flex; flex-direction: column; gap: var(--fleet-sp-2); }

/* ---------- 7) TECH STATES (skeleton / empty / api error) ---------- */
.fleet-skeleton {
  background: linear-gradient(90deg, var(--fleet-surface-2) 25%, #f1f3f6 50%, var(--fleet-surface-2) 75%);
  background-size: 200% 100%;
  animation: fleet-shimmer 1.4s linear infinite;
  border-radius: var(--fleet-radius);
}
@keyframes fleet-shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.fleet-skeleton-card { background: var(--fleet-surface); border: 1px solid var(--fleet-line); border-radius: var(--fleet-radius-lg); overflow: hidden; }
.fleet-skeleton-card__media { aspect-ratio: 4 / 3; }
.fleet-skeleton-card__body { padding: var(--fleet-sp-4); display: flex; flex-direction: column; gap: 10px; }
.fleet-skeleton-card__line { height: 12px; border-radius: 6px; }

.fleet-empty {
  text-align: center;
  padding: var(--fleet-sp-12) var(--fleet-sp-6);
  background: var(--fleet-surface);
  border: 1px dashed var(--fleet-line-strong);
  border-radius: var(--fleet-radius-lg);
}
.fleet-empty__illu {
  width: 120px; height: 120px;
  margin: 0 auto var(--fleet-sp-5);
  border-radius: 50%;
  background: var(--fleet-primary-tint);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fleet-primary);
}
.fleet-empty__title { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.fleet-empty__desc { color: var(--fleet-muted); margin-bottom: var(--fleet-sp-4); }

/* ---------- BONUS : Widget agence ---------- */
.fleet-agency-widget {
  background: var(--fleet-surface);
  border: 1px solid var(--fleet-line);
  border-radius: var(--fleet-radius-lg);
  padding: var(--fleet-sp-5);
  display: flex;
  gap: var(--fleet-sp-4);
  align-items: center;
}
.fleet-agency-widget__logo {
  width: 72px; height: 72px;
  border-radius: var(--fleet-radius);
  background: linear-gradient(135deg, var(--fleet-primary) 0%, var(--fleet-accent) 100%);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
  flex-shrink: 0;
}
.fleet-agency-widget__info { flex: 1; min-width: 0; }
.fleet-agency-widget__name { font-size: 17px; font-weight: 700; }
.fleet-agency-widget__city { font-size: 13px; color: var(--fleet-muted); display: flex; gap: 6px; align-items: center; margin-bottom: 8px; }
.fleet-agency-widget__certs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.fleet-agency-widget__rating { display: flex; gap: 6px; align-items: center; font-size: 13px; color: var(--fleet-ink-2); }

/* ---------- BONUS : Blog ---------- */
.fleet-blog-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--fleet-sp-4);
}
.fleet-blog-card { cursor: pointer; }
.fleet-blog-card__media .fleet-img { aspect-ratio: 16 / 10; }
.fleet-blog-card__body { padding: var(--fleet-sp-4); }
.fleet-blog-card__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fleet-primary-ink); margin-bottom: 6px; }
.fleet-blog-card__title { font-size: 16px; font-weight: 600; line-height: 1.35; margin-bottom: 6px; }
.fleet-blog-card__excerpt { font-size: 13px; color: var(--fleet-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fleet-blog-card__meta { font-size: 12px; color: var(--fleet-faint); margin-top: var(--fleet-sp-3); display: flex; gap: 10px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .fleet-detail__cols { grid-template-columns: 1fr; }
  .fleet-booking-card { position: static; }
  .fleet-booking-bottom { display: flex; }
  .fleet-include { grid-template-columns: 1fr; }
  .fleet-confirm__details { grid-template-columns: 1fr; }
  .fleet-form__row, .fleet-form__row--3 { grid-template-columns: 1fr; }
  .fleet-grid-wrap, .fleet-detail { padding: var(--fleet-sp-5) var(--fleet-sp-4); }
  .fleet-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 100px; aspect-ratio: auto; }
  .fleet-gallery > :nth-child(1) { grid-row: 1; grid-column: 1 / 3; }
  .fleet-gallery > :nth-child(n+4) { display: none; }
  .fleet-modal { max-height: calc(100vh - 16px); border-radius: var(--fleet-radius-lg); }
  .fleet-modal__body { padding: var(--fleet-sp-4); }
  .fleet-modal__header { padding: var(--fleet-sp-4); }
  .fleet-modal__footer { padding: var(--fleet-sp-3) var(--fleet-sp-4); }
  .fleet-progress__step span:not(.fleet-progress__dot) { display: none; }
  .fleet-reviews-summary { flex-direction: column; align-items: flex-start; }
  .fleet-reviews-summary__bars { width: 100%; max-width: none; }
}

/* ---------- RTL ---------- */
.fleet-root[dir="rtl"] .fleet-search .fleet-input { padding-left: 12px; padding-right: 36px; }
.fleet-root[dir="rtl"] .fleet-search svg { left: auto; right: 12px; }
.fleet-root[dir="rtl"] .fleet-select { background-position: left 14px center; padding-left: 36px; padding-right: 12px; }
.fleet-root[dir="rtl"] .fleet-input-group__prefix { border-right: 0 !important; border-left: 1px solid var(--fleet-line) !important; }
.fleet-root[dir="rtl"] .fleet-timeline__step:not(:last-child)::before { left: auto; right: 23px; }
.fleet-root[dir="rtl"] .fleet-product-card__like { right: auto; left: 12px; }
.fleet-root[dir="rtl"] .fleet-product-card__badges { left: auto; right: 12px; }
.fleet-root[dir="rtl"] .fleet-recap__row, .fleet-root[dir="rtl"] .fleet-confirm__details { text-align: right; }
.fleet-root[dir="rtl"] .fleet-recap__val { text-align: left; }
.fleet-root[dir="rtl"] .fleet-error__reason { border-left: 0; border-right: 3px solid var(--fleet-warning); text-align: right; }
.fleet-root[dir="rtl"] .fleet-gallery__more { right: auto; left: 14px; }

/* ---------- A11Y ---------- */
.fleet-root :focus-visible { outline: 2px solid var(--fleet-primary); outline-offset: 2px; }
.fleet-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- THEME : DARK CARDS (optionnel pour th\u00e8mes WP fonc\u00e9s) ---------- */
.fleet-root[data-theme="dark"] {
  --fleet-canvas: #0e1320;
  --fleet-surface: #181f30;
  --fleet-surface-2: #131a29;
  --fleet-ink: #f2f4f8;
  --fleet-ink-2: #d8dde6;
  --fleet-muted: #8d97ab;
  --fleet-faint: #5e6779;
  --fleet-line: #232c40;
  --fleet-line-strong: #2e394f;
  --fleet-primary-soft: #06303a;
  --fleet-primary-tint: #0a1c25;
  --fleet-accent-soft: #1a1f3f;
  --fleet-success-soft: #082b22;
  --fleet-warning-soft: #2c2110;
  --fleet-danger-soft:  #2c1316;
  color-scheme: dark;
}

/* ═══════════════════════════════════════════════════════════════
   ADDITIONS — features hors design original (préservé du plugin)
   - .fleet-fab*              : widget bouton flottant (FAB)
   - .fleet-service-modal*    : modal détail + booking en overlay
   - .fleet-service-view      : container vue produit dans modal
   - .fleet-step*             : pas de progression form (3 étapes)
   - .fleet-modal__progress   : barre progression dans modal
   - .fleet-modal__title-eyebrow : eyebrow header modal
   - .fleet-product-card__compare : checkbox comparateur sur card
   - .fleet-compare-bar*      : barre fixe comparateur produits
   - .fleet-avail-widget*     : widget vérification disponibilité
   - .fleet-detail-inner      : variante détail dans modal
   - .fleet-error-box*        : box erreur legacy (à migrer vers .fleet-error__*)
   ═══════════════════════════════════════════════════════════════ */
.fleet-fab { position: fixed; z-index: 99998; pointer-events: none; }
.fleet-fab--bottom-right { bottom: 24px; right: 24px; }
.fleet-fab--bottom-left  { bottom: 24px; left: 24px; }
.fleet-fab--top-right    { top: 24px; right: 24px; }
.fleet-fab--top-left     { top: 24px; left: 24px; }
.fleet-fab__btn {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--fleet-fab-color, #06aed4);
  color: white; border: 0; border-radius: 999px;
  padding: 14px 22px; font-size: 14px; font-weight: 700; cursor: pointer;
  box-shadow: 0 8px 32px -4px rgba(0,0,0,0.3), 0 0 0 4px rgba(255,255,255,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; line-height: 1;
}
.fleet-fab__btn:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 40px -4px rgba(0,0,0,0.4), 0 0 0 6px rgba(255,255,255,0.15); }
.fleet-fab__icon { display: inline-flex; align-items: center; }
.fleet-fab__btn::after {
  content: ''; position: absolute; inset: -2px; border-radius: inherit;
  background: var(--fleet-fab-color, #06aed4); opacity: 0.4; z-index: -1;
  animation: fleet-fab-pulse 2.4s infinite ease-out;
}
.fleet-product-card__compare {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  background: rgba(255,255,255,0.95); border: 1px solid var(--fleet-line);
  border-radius: 999px; padding: 6px 12px; font-size: 11px; font-weight: 700;
  color: var(--fleet-ink-2); cursor: pointer;
  transition: all 0.2s;
}
.fleet-product-card__compare:hover { background: white; border-color: var(--fleet-primary); color: var(--fleet-primary); }
.fleet-product-card__compare[aria-pressed="true"] { background: var(--fleet-primary); color: white; border-color: var(--fleet-primary); }

/* Bottom-bar comparateur (apparait quand >=1 produit selectionne) */
.fleet-compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99996;
  background: var(--fleet-ink); color: white; padding: 12px 20px;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}
.fleet-compare-bar.is-active { display: flex; }
.fleet-compare-bar__items { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; min-width: 0; }
.fleet-compare-bar__chip { background: rgba(255,255,255,0.1); padding: 6px 12px; border-radius: 999px; font-size: 12px; }
.fleet-compare-bar__actions { display: flex; gap: 8px; }

/* ═══ Tweaks pour modal en mode detail (large) ═══ */
.fleet-modal[data-fleet-current-view="detail"] .fleet-modal__body { padding: 0; }
.fleet-modal[data-fleet-current-view="detail"] .fleet-detail-inner .fleet-gallery {
  border-radius: 0; margin: 0;
}
.fleet-modal__title-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fleet-muted); font-weight: 600; margin-bottom: 2px; }
.fleet-modal__close { width: 36px; height: 36px; border-radius: 50%; background: var(--fleet-surface-2); border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; color: var(--fleet-ink-2); flex-shrink: 0; }
.fleet-modal__close:hover { background: var(--fleet-line); }
.fleet-modal__progress { padding: var(--fleet-sp-4) var(--fleet-sp-8); border-bottom: 1px solid var(--fleet-line); }
.fleet-modal__body { padding: 0; overflow-y: auto; flex: 1; }
/* Pour les enfants directs sans classe specifique (rare) on applique un padding */
.fleet-modal__body > p:not([class]),
.fleet-modal__body > div:not([class]) { padding: var(--fleet-sp-6) var(--fleet-sp-8); }
.fleet-modal__footer { padding: var(--fleet-sp-5) var(--fleet-sp-8); border-top: 1px solid var(--fleet-line); display: flex; gap: var(--fleet-sp-3); align-items: center; background: var(--fleet-surface-2); }
.fleet-modal__footer-spacer { flex: 1; }

/* Stepper progress */
.fleet-progress { display: flex; align-items: center; gap: var(--fleet-sp-2); }
.fleet-progress__step { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fleet-muted); font-weight: 500; }
.fleet-progress__dot { width: 28px; height: 28px; border-radius: 50%; background: var(--fleet-surface-2); border: 1.5px solid var(--fleet-line-strong); color: var(--fleet-muted); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.fleet-progress__step--active .fleet-progress__dot { background: var(--fleet-primary); color: white; border-color: var(--fleet-primary); }
.fleet-progress__step--active { color: var(--fleet-ink); font-weight: 600; }
.fleet-progress__step--done .fleet-progress__dot { background: var(--fleet-ink); color: white; border-color: var(--fleet-ink); }
.fleet-progress__step--done { color: var(--fleet-ink); }
.fleet-progress__connector { width: 18px; height: 2px; background: var(--fleet-line); border-radius: 1px; }
.fleet-progress__step--done + .fleet-progress__connector { background: var(--fleet-ink); }

/* Multi-step form panes */
.fleet-step { display: none; flex-direction: column; gap: var(--fleet-sp-4); padding: var(--fleet-sp-6) var(--fleet-sp-8); }
.fleet-step--active { display: flex; }
@media (max-width: 640px) {
  .fleet-step { padding: var(--fleet-sp-4) var(--fleet-sp-5); }
}
.fleet-error-box { text-align: center; padding: var(--fleet-sp-8) var(--fleet-sp-4); }
.fleet-error-box__icon { width: 80px; height: 80px; border-radius: 50%; background: var(--fleet-warning-soft); display: inline-flex; align-items: center; justify-content: center; color: var(--fleet-warning); margin-bottom: var(--fleet-sp-4); }
.fleet-error-box__title { font-size: 22px; font-weight: 700; margin-bottom: var(--fleet-sp-2); }
.fleet-error-box__lead { font-size: 14px; color: var(--fleet-muted); margin-bottom: var(--fleet-sp-5); line-height: 1.6; }
.fleet-error-box__reason { background: var(--fleet-surface-2); border-left: 3px solid var(--fleet-warning); border-radius: 8px; padding: var(--fleet-sp-3) var(--fleet-sp-4); text-align: left; margin: 0 auto var(--fleet-sp-5); font-size: 13px; color: var(--fleet-ink-2); max-width: 440px; }

/* Loader */
.fleet-loader { width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--fleet-primary-soft); border-top-color: var(--fleet-primary); animation: fleet-spin 0.8s linear infinite; margin: 0 auto var(--fleet-sp-4); }
@keyframes fleet-spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .fleet-modal { max-width: 100%; margin: 0; border-radius: var(--fleet-radius-lg) var(--fleet-radius-lg) 0 0; min-height: 100vh; }
  .fleet-modal-backdrop { padding: 0; align-items: stretch; }
  .fleet-modal__header { padding: var(--fleet-sp-4); }
  .fleet-modal__body { padding: var(--fleet-sp-4); }
  .fleet-modal__footer { padding: var(--fleet-sp-3) var(--fleet-sp-4); }
  .fleet-modal__progress { padding: var(--fleet-sp-3) var(--fleet-sp-4); }
  .fleet-form__row { grid-template-columns: 1fr; }
  .fleet-progress__step span:not(.fleet-progress__dot) { display: none; }
}
.fleet-service-modal { max-width: 1080px; }
.fleet-service-modal .fleet-modal__header { gap: var(--fleet-sp-3); }
.fleet-service-modal .fleet-modal__header > div:first-child { min-width: 0; overflow: hidden; }
.fleet-service-modal .fleet-modal__title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fleet-service-modal-backdrop .fleet-modal { max-height: 92vh; }
.fleet-service-modal .fleet-modal__body { padding: 0; }
.fleet-service-view { display: flex; flex-direction: column; flex: 1; min-height: 0; overflow-y: auto; }

/* Detail content layout */
.fleet-detail-inner { background: var(--fleet-surface); }
.fleet-detail-inner .fleet-gallery { aspect-ratio: 16/8; margin-bottom: 0; border-radius: 0; }
.fleet-detail-inner .fleet-detail__cols { padding: var(--fleet-sp-5) var(--fleet-sp-6); gap: var(--fleet-sp-6); }
.fleet-detail-inner .fleet-detail__section { padding-block: var(--fleet-sp-5); }
.fleet-detail-inner .fleet-detail__section:first-child { padding-top: 0; }
.fleet-detail-inner .fleet-detail__section h2 { font-size: 18px; margin-bottom: var(--fleet-sp-3); }

@media (max-width: 900px) {
  .fleet-service-modal-backdrop .fleet-modal { max-height: 100vh; min-height: 100vh; }
  .fleet-detail-inner .fleet-detail__cols { grid-template-columns: 1fr; padding: var(--fleet-sp-4); }
  .fleet-detail-inner .fleet-booking-card { position: static !important; }
  .fleet-detail-inner .fleet-gallery { aspect-ratio: auto; grid-template-rows: 240px; }
  .fleet-detail-inner .fleet-gallery > :nth-child(1) { grid-row: 1; grid-column: 1 / -1; }
  .fleet-detail-inner .fleet-gallery > :nth-child(n+2) { display: none; }
}
.fleet-avail-widget { margin: var(--fleet-sp-4) 0; }
.fleet-avail-widget__form { display: flex; flex-direction: column; gap: var(--fleet-sp-3); }
.fleet-avail-widget__field { display: flex; flex-direction: column; gap: 6px; }
.fleet-avail-widget__field > span { font-size: 11px; font-weight: 700; color: var(--fleet-muted); text-transform: uppercase; letter-spacing: 0.6px; }
.fleet-avail-widget__field input[type="date"] { padding: 11px 14px; border: 1px solid var(--fleet-line-strong); border-radius: var(--fleet-radius); font-size: 14px; background: var(--fleet-surface); font-family: inherit; outline: none; transition: border-color 0.15s; }
.fleet-avail-widget__field input[type="date"]:focus { border-color: var(--fleet-primary); box-shadow: 0 0 0 3px var(--fleet-primary-soft); }
.fleet-avail-widget__stepper { display: flex; align-items: center; border: 1px solid var(--fleet-line-strong); border-radius: var(--fleet-radius); overflow: hidden; }
.fleet-avail-widget__stepper button { width: 44px; height: 44px; border: 0; background: var(--fleet-surface); cursor: pointer; font-size: 18px; font-weight: 700; color: var(--fleet-primary); }
.fleet-avail-widget__stepper button:hover { background: var(--fleet-surface-2); }
.fleet-avail-widget__stepper input { flex: 1; text-align: center; border: 0; border-left: 1px solid var(--fleet-line); border-right: 1px solid var(--fleet-line); height: 44px; font-size: 15px; font-weight: 700; outline: none; -moz-appearance: textfield; font-family: inherit; }
.fleet-avail-widget__stepper input::-webkit-outer-spin-button,
.fleet-avail-widget__stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.fleet-avail-widget__result { margin-top: var(--fleet-sp-4); padding: var(--fleet-sp-4); border-radius: var(--fleet-radius); display: flex; gap: var(--fleet-sp-3); align-items: flex-start; }
.fleet-avail-widget__result--ok { background: #ecfdf5; border: 1px solid #a7f3d0; }
.fleet-avail-widget__result--ko { background: #fef2f2; border: 1px solid #fecaca; }
.fleet-avail-widget__result-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; }
.fleet-avail-widget__result--ok .fleet-avail-widget__result-icon { background: #10b981; }
.fleet-avail-widget__result--ko .fleet-avail-widget__result-icon { background: #ef4444; }
.fleet-avail-widget__result-content { flex: 1; font-size: 13px; line-height: 1.5; }
.fleet-avail-widget__result-content strong { font-size: 14px; }
.fleet-avail-widget__result-content p { margin: 4px 0 8px; color: var(--fleet-ink-2); }
.fleet-avail-widget__continue-btn { display: inline-block; margin-top: 4px; padding: 9px 16px; background: #10b981; color: white; border: 0; border-radius: var(--fleet-radius); font-weight: 700; font-size: 13px; cursor: pointer; }
.fleet-avail-widget__continue-btn:hover { background: #059669; }
.fleet-avail-widget__alts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.fleet-avail-widget__alt-btn { padding: 6px 10px; background: white; border: 1px solid var(--fleet-line); border-radius: var(--fleet-radius); font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; }
.fleet-avail-widget__alt-btn:hover { background: var(--fleet-primary); color: white; border-color: var(--fleet-primary); }
.fleet-avail-widget__whatsapp-btn { display: inline-block; margin-top: 10px; padding: 8px 14px; background: #25d366; color: white; text-decoration: none; border-radius: var(--fleet-radius); font-size: 12px; font-weight: 700; }
.fleet-avail-widget__whatsapp-btn:hover { background: #20bd5a; color: white; }
