/* ============ BEFORE/AFTER SLIDER ============ */
.apb-fiche-root .ba {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0F172A;
  border-radius: 14px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  display: block;
}
.apb-fiche-root .ba-card { width: 100%; display: block; }
.apb-fiche-root .ba-grid > .ba-card { width: 100%; }
.apb-fiche-root .ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.apb-fiche-root .ba-clip {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  will-change: clip-path;
}
.apb-fiche-root .ba-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 12px rgba(0, 0, 0, 0.35);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 3;
}
.apb-fiche-root .ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg) !important;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand, #0B2A4A);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(11, 42, 74, 0.08);
  pointer-events: none;
  border: 0;
}
.apb-fiche-root .ba-handle svg { width: 18px; height: 18px; display: block; transform: rotate(0deg); }
.apb-fiche-root .ba-tag {
  position: absolute; top: 14px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(15, 23, 42, 0.72); color: white;
  backdrop-filter: blur(6px);
  z-index: 2; pointer-events: none;
}
.apb-fiche-root .ba-tag-l { left: 14px; }
.apb-fiche-root .ba-tag-r { right: 14px; }
.apb-fiche-root .ba.is-dragging .ba-line { background: var(--accent, #F59E0B); }
.apb-fiche-root .ba.is-dragging .ba-handle { transform: translate(-50%, -50%) scale(1.08); }
.apb-fiche-root .ba-meta { padding: 14px 18px; }
.apb-fiche-root .ba-meta b { display: block; font-size: 14px; color: var(--ink, #0F172A); }
.apb-fiche-root .ba-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.apb-fiche-root .ba-expand {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(15, 23, 42, 0.72); color: white;
  border: none; cursor: pointer;
  display: grid; place-items: center;
  backdrop-filter: blur(6px);
  z-index: 3;
  transition: background 0.15s;
}
.apb-fiche-root .ba-expand:hover { background: rgba(15, 23, 42, 0.9); }
.apb-fiche-root .ba-expand + .ba-tag-r { right: 58px; }

/* BA overlay fullscreen — specificity renforcée pour écraser .apb-fiche-root */
.apb-ba-overlay,
.apb-ba-overlay.apb-fiche-root {
  position: fixed !important;
  inset: 0;
  z-index: 99998;
  background: rgba(8, 15, 30, 0.94) !important;
  display: none;
  align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  margin: 0;
  max-width: none;
  padding: 0;
}
.apb-ba-overlay.open,
.apb-ba-overlay.apb-fiche-root.open { display: flex !important; }
.apb-ba-overlay .apb-ba-box {
  width: 70vw; max-width: 1400px;
  height: 70vh; max-height: 900px;
  display: flex; flex-direction: column;
  gap: 14px;
}
@media (max-width: 900px) {
  .apb-ba-overlay .apb-ba-box { width: 90vw; height: 90vh; }
}
.apb-ba-overlay .apb-ba-head {
  display: flex; align-items: center; justify-content: space-between;
  color: white;
}
.apb-ba-overlay .apb-ba-head b { font-size: 16px; display: block; }
.apb-ba-overlay .apb-ba-hint { color: rgba(255,255,255,0.65); font-size: 13px; margin-top: 2px; }
.apb-ba-overlay .apb-ba-close {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: white;
  font-size: 24px; line-height: 1;
  border: none; cursor: pointer;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.apb-ba-overlay .apb-ba-close:hover { background: rgba(255,255,255,0.22); }
.apb-ba-overlay .ba {
  flex: 1 1 auto; min-height: 0;
  aspect-ratio: auto;
  width: 100%; height: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

/* ============ LIGHTBOX ============ */
.apb-lb-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(8, 15, 30, 0.92);
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px 24px 140px;
  backdrop-filter: blur(4px);
}
.apb-lb-overlay.open { display: flex; }
.apb-lb-stage {
  flex: 1 1 auto; min-height: 0;
  width: 100%; max-width: 1200px;
  display: grid; place-items: center;
  position: relative;
}
.apb-lb-img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.apb-lb-counter {
  position: absolute; top: -34px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px; letter-spacing: 0.04em;
}
.apb-lb-close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: white;
  font-size: 26px; line-height: 1;
  border: none; cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.15s;
}
.apb-lb-close:hover { background: rgba(255,255,255,0.22); }
.apb-lb-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.14); color: white;
  border: none; cursor: pointer;
  font-size: 22px;
  display: grid; place-items: center;
  z-index: 2;
  transition: background 0.15s;
}
.apb-lb-nav:hover { background: rgba(255,255,255,0.26); }
.apb-lb-prev { left: 20px; }
.apb-lb-next { right: 20px; }
.apb-lb-thumbs {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  max-width: calc(100% - 100px);
  overflow-x: auto;
  padding: 8px;
  scrollbar-width: thin;
}
.apb-lb-thumbs::-webkit-scrollbar { height: 4px; }
.apb-lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 2px; }
.apb-lb-thumb {
  flex-shrink: 0;
  width: 72px; height: 52px;
  padding: 0; border: 2px solid transparent;
  border-radius: 8px; overflow: hidden;
  background: none; cursor: pointer;
  opacity: 0.5; transition: all 0.15s;
}
.apb-lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.apb-lb-thumb:hover { opacity: 0.85; }
.apb-lb-thumb.on { opacity: 1; border-color: var(--accent, #F59E0B); }
@media (max-width: 720px) {
  .apb-lb-nav { width: 40px; height: 40px; }
  .apb-lb-prev { left: 8px; } .apb-lb-next { right: 8px; }
  .apb-lb-thumb { width: 56px; height: 42px; }
  .apb-lb-overlay { padding: 20px 12px 110px; }
}
.apb-fiche-root .g-main, .apb-fiche-root .g-cell { cursor: pointer; }

/* Wrapper — centratura globale + reset container Bricks */
.apb-fiche-root {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #0F172A;
  background: transparent;
  clear: both;
}
body.single-professionnel .elementor,
body.single-professionnel .entry-content,
body.single-professionnel .brxe-post-content,
body.single-professionnel main.site-main > article { max-width: none; padding: 0; margin: 0; }

/* ============ ICON SIZE + ALIGNMENT (global uplift) ============ */
/* Upsize default icons et garantit l'alignement vertical avec le texte */
.apb-fiche-root svg { vertical-align: middle; flex-shrink: 0; }
.apb-fiche-root .chip,
.apb-fiche-root .chip-verified,
.apb-fiche-root .chip-solid,
.apb-fiche-root .chip-warn { display: inline-flex; align-items: center; gap: 7px; line-height: 1; }
.apb-fiche-root .chip svg,
.apb-fiche-root .chip-verified svg,
.apb-fiche-root .chip-solid svg,
.apb-fiche-root .chip-warn svg { width: 15px !important; height: 15px !important; }

.apb-fiche-root .kv { display: flex; align-items: flex-start; gap: 12px; }
.apb-fiche-root .kv svg { width: 22px !important; height: 22px !important; margin-top: 2px; color: var(--brand); }
.apb-fiche-root .kv b { line-height: 1.3; }

.apb-fiche-root .svc-ico { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); border-radius: 12px; }
.apb-fiche-root .svc-ico svg { width: 22px !important; height: 22px !important; }
.apb-fiche-root .svc { display: flex; align-items: flex-start; gap: 14px; }

.apb-fiche-root .mini-row { display: flex; align-items: flex-start; gap: 12px; }
.apb-fiche-root .mini-row > svg { width: 20px !important; height: 20px !important; color: var(--brand); margin-top: 2px; }

.apb-fiche-root .contact-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; line-height: 1; padding: 10px 14px; }
.apb-fiche-root .contact-btn svg { width: 17px !important; height: 17px !important; }

.apb-fiche-root .contact-head { display: flex; align-items: center; gap: 12px; }
.apb-fiche-root .contact-head svg { width: 18px !important; height: 18px !important; }

.apb-fiche-root .svc-note { display: flex; align-items: center; gap: 10px; }
.apb-fiche-root .svc-note svg { width: 18px !important; height: 18px !important; }

.apb-fiche-root .share-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; line-height: 1; }
.apb-fiche-root .share-btn svg { width: 15px !important; height: 15px !important; }

.apb-fiche-root .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; line-height: 1; }
.apb-fiche-root .btn svg { width: 17px !important; height: 17px !important; }
.apb-fiche-root .btn-ico svg { width: 22px !important; height: 22px !important; }

.apb-fiche-root .hero-rating { display: flex; align-items: center; gap: 10px; line-height: 1.3; flex-wrap: wrap; }
.apb-fiche-root .stars svg { width: 16px !important; height: 16px !important; fill: currentColor; color: var(--accent); }

.apb-fiche-root .snav-btn { display: inline-flex; align-items: center; gap: 6px; line-height: 1; }
.apb-fiche-root .snav-btn svg { width: 16px !important; height: 16px !important; }

.apb-fiche-root .sec-title { display: flex; align-items: center; gap: 10px; }
.apb-fiche-root .mfab-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.apb-fiche-root .mfab-btn svg { width: 18px !important; height: 18px !important; }

.apb-fiche-root .day { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.apb-fiche-root .dispo-title { display: flex; align-items: center; gap: 8px; }
.apb-fiche-root .dispo-title svg { width: 17px !important; height: 17px !important; }
.apb-fiche-root .next-slot-head { display: flex; align-items: center; gap: 6px; }
.apb-fiche-root .next-slot-head svg { width: 14px !important; height: 14px !important; }

.apb-fiche-root .g-badge { display: inline-flex; align-items: center; gap: 5px; line-height: 1; }
.apb-fiche-root .g-badge svg { width: 13px !important; height: 13px !important; }

.apb-fiche-root .hero-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.apb-fiche-root .hero-verified { display: inline-flex; align-items: center; gap: 5px; line-height: 1; }
.apb-fiche-root .hero-verified svg { width: 14px !important; height: 14px !important; }

.apb-fiche-root .crumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

/*
 * apb-fiche-mockup.css
 * Verbatim copy of mockups/claude-design/fixsalis/project/styles.css
 * Scoped under .apb-fiche-root to avoid conflicts with Bricks theme.
 *
 * Rules:
 *   - :root variables kept global (safe, additive)
 *   - body / html / * selectors converted to .apb-fiche-root
 *   - All class selectors prefixed with .apb-fiche-root
 *   - @media / @keyframes kept as-is
 *   - Density variants: body.density-compact → .apb-fiche-root.density-compact
 *
 * Source: styles.css (725 lines) — generated 2026-04-23
 */

:root {
  --bg: #FAFAF7;
  --bg-soft: #F4F2EC;
  --surface: #FFFFFF;
  --ink: #0F172A;
  --ink-2: #334155;
  --ink-3: #64748B;
  --line: #E7E3D9;
  --line-2: #EDEAE1;
  --brand: #0B2A4A;
  --brand-2: #143D69;
  --brand-soft: #EEF2F8;
  --accent: #F59E0B;
  --accent-2: #E88B05;
  --wa: #25D366;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-1: 0 1px 2px rgba(11, 42, 74, 0.04), 0 2px 8px rgba(11, 42, 74, 0.04);
  --shadow-2: 0 4px 14px rgba(11, 42, 74, 0.06), 0 12px 32px rgba(11, 42, 74, 0.06);
  --gap: 20px;
  --density: 1;
  --text: 16px;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

.apb-fiche-root * { box-sizing: border-box; }
.apb-fiche-root {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}

.apb-fiche-root a { color: inherit; text-decoration: none; }
.apb-fiche-root button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.apb-fiche-root input,
.apb-fiche-root textarea { font-family: inherit; font-size: inherit; color: inherit; }

/* ---------- TOP BAR ---------- */
.apb-fiche-root .topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.apb-fiche-root .topbar-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 28px;
}
.apb-fiche-root .logo {
  font-weight: 900; letter-spacing: -0.02em; font-size: 22px;
  color: var(--brand);
}
.apb-fiche-root .logo .dot { color: var(--accent); }
.apb-fiche-root .top-nav { display: flex; gap: 22px; font-size: 14px; color: var(--ink-2); }
.apb-fiche-root .top-nav a.on { color: var(--ink); font-weight: 600; }
.apb-fiche-root .top-spacer { flex: 1; }
.apb-fiche-root .top-right { display: flex; gap: 10px; align-items: center; }
.apb-fiche-root .lang-switch { display: flex; background: var(--bg-soft); border-radius: 8px; padding: 2px; font-size: 12px; font-weight: 600; }
.apb-fiche-root .lang-switch button { padding: 4px 9px; border-radius: 6px; color: var(--ink-3); }
.apb-fiche-root .lang-switch button.on { background: white; color: var(--ink); box-shadow: var(--shadow-1); }

/* ---------- PAGE LAYOUT ---------- */
.apb-fiche-root .page {
  max-width: 1240px; margin: 0 auto;
  padding: 28px;
}
.apb-fiche-root .layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* ---------- HERO ---------- */
.apb-fiche-root .hero {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  margin-bottom: 28px;
}
.apb-fiche-root .hero-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  padding: 28px 32px 24px;
  align-items: start;
}
.apb-fiche-root .hero-avatar { position: relative; }
.apb-fiche-root .avatar-ring {
  position: relative;
  width: 96px; height: 96px; border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, #F59E0B 0%, #0B2A4A 100%);
}
.apb-fiche-root .avatar {
  width: 100%; height: 100%; border-radius: 21px;
  overflow: hidden; background: #ddd;
}
.apb-fiche-root .avatar svg { display: block; width: 100%; height: 100%; }
.apb-fiche-root .av-badge {
  position: absolute; right: -6px; bottom: -6px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand); color: white;
  display: grid; place-items: center;
  border: 3px solid white;
}

.apb-fiche-root .crumb {
  font-size: 13px; color: var(--ink-3); margin-bottom: 10px;
  display: flex; gap: 6px; align-items: center;
}
.apb-fiche-root .crumb a { cursor: pointer; }
.apb-fiche-root .crumb a:hover { color: var(--ink); }
.apb-fiche-root .crumb span { color: #CBD5E1; }
.apb-fiche-root .crumb-cur { color: var(--ink) !important; font-weight: 500; }

.apb-fiche-root .hero-title-row { display: flex; align-items: center; gap: 10px; }
.apb-fiche-root .hero-title {
  font-size: 34px; font-weight: 800; letter-spacing: -0.025em;
  margin: 0; color: var(--ink);
}
.apb-fiche-root .hero-verified {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--brand-soft); color: var(--brand);
  padding: 4px 9px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.apb-fiche-root .hero-trade { color: var(--ink-3); font-size: 15px; margin-top: 2px; }

.apb-fiche-root .hero-rating {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px; font-size: 14px; color: var(--ink-2);
}
.apb-fiche-root .hero-rating .stars { display: inline-flex; gap: 1px; }
.apb-fiche-root .hero-rating .muted { color: var(--ink-3); }
.apb-fiche-root .hero-rating span { display: inline-flex; align-items: center; gap: 4px; }
.apb-fiche-root .dot { width: 3px; height: 3px; border-radius: 50%; background: #CBD5E1; display: inline-block; margin: 0 4px; }

.apb-fiche-root .hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.apb-fiche-root .chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 999px;
  background: white; border: 1px solid var(--line);
  font-size: 12px; font-weight: 500; color: var(--ink-2);
}
.apb-fiche-root .chip-solid {
  background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 100%);
  color: #422C00;
  border-color: transparent;
  font-weight: 600;
}
.apb-fiche-root .chip-verified {
  background: #ECFDF5;
  color: #065F46;
  border-color: #A7F3D0;
  font-weight: 600;
}
.apb-fiche-root .chip-verified svg { color: #10B981; }

/* Mobile floating action bar */
.apb-fiche-root .mfab {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 90;
  padding: 10px 12px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(11, 42, 74, 0.08);
}
.apb-fiche-root .mfab-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 14px 10px; border-radius: 12px;
  font-weight: 600; font-size: 14px;
  color: white;
  border: none;
}
.apb-fiche-root .mfab-btn.mail { background: var(--brand); }
.apb-fiche-root .mfab-btn.call { background: var(--accent); color: #1A1204; }
.apb-fiche-root .mfab-btn.wa   { background: var(--wa); }
.apb-fiche-root .mfab-back {
  width: 48px; height: 48px; border-radius: 12px;
  background: white; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-2);
  flex-shrink: 0;
}

.apb-fiche-root .hero-cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; min-width: 220px; }
.apb-fiche-root .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.apb-fiche-root .btn-primary { background: var(--accent); color: #1A1204; }
.apb-fiche-root .btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35); }
.apb-fiche-root .btn-ghost { background: white; border: 1px solid var(--line); color: var(--ink-2); }
.apb-fiche-root .btn-ghost:hover { border-color: var(--ink-3); color: var(--ink); }
.apb-fiche-root .btn-ghost.active { border-color: #FCA5A5; background: #FEF2F2; color: #ef4444; }
.apb-fiche-root .btn-wa { color: var(--wa); }
.apb-fiche-root .btn-wa:hover { border-color: var(--wa); }
.apb-fiche-root .btn-ico { width: 48px; height: 48px; padding: 0; border-radius: 12px; }
.apb-fiche-root .btn-ico svg { width: 22px; height: 22px; }
.apb-fiche-root .hero-cta-row .btn-ico { width: 48px; height: 48px; }
.apb-fiche-root .apb-favori-btn.is-active { background: #FEE2E2; border-color: #FCA5A5; color: #DC2626; }
.apb-fiche-root .apb-favori-btn.is-active svg { fill: #DC2626; stroke: #DC2626; }
.apb-fiche-root .btn-row { display: flex; gap: 6px; }
.apb-fiche-root .btn-outline { background: white; border: 1px solid var(--line); color: var(--ink); }
.apb-fiche-root .btn-outline:hover { border-color: var(--ink); }
.apb-fiche-root .btn-wide { width: 100%; padding: 12px; }
.apb-fiche-root .btn-soft { background: var(--brand-soft); color: var(--brand); }
.apb-fiche-root .btn-soft:hover { background: #DDE5F0; }

.apb-fiche-root .hero-price {
  display: flex; align-items: baseline; gap: 8px;
  padding: 8px 12px; border-radius: 10px;
  background: var(--bg-soft);
  margin-top: 2px;
}
.apb-fiche-root .price-label { font-size: 12px; color: var(--ink-3); }
.apb-fiche-root .price-value { font-weight: 700; color: var(--brand); }

/* Stats */
.apb-fiche-root .stat-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #FDFCF9 0%, var(--bg-soft) 100%);
}
.apb-fiche-root .stat {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.apb-fiche-root .stat:last-child { border-right: none; }
.apb-fiche-root .stat b { font-size: 20px; font-weight: 800; color: var(--brand); letter-spacing: -0.02em; }
.apb-fiche-root .stat span { font-size: 12px; color: var(--ink-3); }

/* ---------- SECTION NAV ---------- */
.apb-fiche-root .snav {
  position: sticky; top: 0; z-index: 40;
  display: flex; gap: 4px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-1);
  overflow-x: auto;
}
.apb-fiche-root .snav-btn {
  padding: 9px 16px; border-radius: 9px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-3);
  white-space: nowrap;
  transition: all 0.15s ease;
}
.apb-fiche-root .snav-btn:hover { color: var(--ink); background: var(--bg-soft); }
.apb-fiche-root .snav-btn.on { background: var(--ink); color: white; }

/* ---------- SECTIONS ---------- */
.apb-fiche-root .sec {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-1);
}
.apb-fiche-root .sec-head { margin-bottom: 18px; }
.apb-fiche-root .sec-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}
.apb-fiche-root .sec-title {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  margin: 0; color: var(--ink);
}
.apb-fiche-root .sec-sub { color: var(--ink-3); font-size: 14px; margin-top: 6px; margin-bottom: 0; }
.apb-fiche-root .row-between { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }

.apb-fiche-root .prose { color: var(--ink-2); line-height: 1.7; margin: 0 0 14px; text-wrap: pretty; }
.apb-fiche-root .prose:last-of-type { margin-bottom: 20px; }

.apb-fiche-root .kv-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-top: 20px;
}
.apb-fiche-root .kv {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
}
.apb-fiche-root .kv svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.apb-fiche-root .kv b { display: block; font-size: 13px; color: var(--ink); margin-bottom: 2px; }
.apb-fiche-root .kv span { font-size: 13px; color: var(--ink-3); }

.apb-fiche-root .chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.apb-fiche-root .chip-soft {
  display: inline-block;
  padding: 5px 11px; border-radius: 999px;
  background: var(--bg-soft);
  font-size: 12px; color: var(--ink-2);
  border: 1px solid var(--line-2);
}

/* ---------- SERVICES ---------- */
.apb-fiche-root .svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.apb-fiche-root .svc {
  display: flex; gap: 14px;
  padding: 16px; border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  transition: all 0.15s ease;
}
.apb-fiche-root .svc:hover { border-color: var(--brand); box-shadow: var(--shadow-1); }
.apb-fiche-root .svc-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; flex-shrink: 0;
}
.apb-fiche-root .svc-body { flex: 1; min-width: 0; }
.apb-fiche-root .svc-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.apb-fiche-root .svc-top h4 { margin: 0; font-size: 15px; font-weight: 600; }
.apb-fiche-root .svc-price { font-size: 12px; font-weight: 700; color: var(--accent-2); white-space: nowrap; }
.apb-fiche-root .svc p { margin: 0; font-size: 13px; color: var(--ink-3); line-height: 1.5; }

.apb-fiche-root .svc-note {
  margin-top: 14px; padding: 12px 14px;
  background: #FFF7ED; border: 1px solid #FED7AA;
  border-radius: 10px;
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: #7C2D12;
}
.apb-fiche-root .svc-note svg { color: var(--accent-2); flex-shrink: 0; }

/* ---------- GALLERY ---------- */
.apb-fiche-root .seg {
  display: inline-flex; background: var(--bg-soft); border-radius: 10px; padding: 3px;
}
.apb-fiche-root .seg button {
  padding: 7px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-3);
  display: inline-flex; gap: 5px; align-items: center;
}
.apb-fiche-root .seg button.on { background: white; color: var(--ink); box-shadow: var(--shadow-1); }

.apb-fiche-root .gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
  height: 440px;
}
.apb-fiche-root .g-main { position: relative; border-radius: 14px; overflow: hidden; cursor: pointer; }
.apb-fiche-root .g-main:hover > svg { transform: scale(1.02); }
.apb-fiche-root .g-main > svg { transition: transform 0.4s ease; }
.apb-fiche-root .g-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(15, 23, 42, 0.78); color: white;
  padding: 6px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
  display: flex; gap: 5px; align-items: center;
  backdrop-filter: blur(6px);
}
.apb-fiche-root .g-side { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.apb-fiche-root .g-cell { position: relative; border-radius: 14px; overflow: hidden; cursor: pointer; }
.apb-fiche-root .g-cell:hover > * { transform: scale(1.03); }
.apb-fiche-root .g-more {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.55); color: white;
  display: grid; place-items: center;
  font-size: 24px; font-weight: 700;
  backdrop-filter: blur(2px);
}

/* Gallery images */
.apb-fiche-root .gallery img,
.apb-fiche-root .g-main img,
.apb-fiche-root .g-cell img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.4s ease;
}

/* Before/After */
.apb-fiche-root .ba-grid { display: grid; gap: 16px; }
.apb-fiche-root .ba-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: white; }
.apb-fiche-root .ba {
  position: relative; overflow: hidden;
  height: 300px;
}
.apb-fiche-root .ba-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.apb-fiche-root .ba-tag {
  position: absolute; top: 12px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(15, 23, 42, 0.78); color: white;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
  z-index: 3;
}
.apb-fiche-root .ba-tag-l { left: 12px; }
.apb-fiche-root .ba-tag-r { right: 12px; }
.apb-fiche-root .ba-meta {
  padding: 14px 18px;
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.apb-fiche-root .ba-meta b { font-size: 14px; }
.apb-fiche-root .ba-meta span { font-size: 13px; color: var(--ink-3); }

/* Lightbox */
.apb-fiche-root .lb {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: grid; place-items: center;
  padding: 40px;
}
.apb-fiche-root .lb-inner { position: relative; max-width: 960px; width: 100%; }
.apb-fiche-root .lb-img { aspect-ratio: 3/2; border-radius: 14px; overflow: hidden; }
.apb-fiche-root .lb-img img { width: 100%; height: 100%; object-fit: cover; }
.apb-fiche-root .lb-close {
  position: absolute; top: -40px; right: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: white;
  display: grid; place-items: center;
}
.apb-fiche-root .lb-close:hover { background: rgba(255,255,255,0.25); }
.apb-fiche-root .lb-cap { color: white; margin-top: 12px; font-size: 14px; }

/* ---------- REVIEWS ---------- */
.apb-fiche-root .rev-summary {
  display: grid; grid-template-columns: 180px 1fr; gap: 28px;
  padding: 22px; border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(135deg, #FFFBEB 0%, #FFFFFF 60%);
  margin-bottom: 20px;
}
.apb-fiche-root .rev-score { text-align: center; }
.apb-fiche-root .rev-score .big {
  font-size: 56px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.04em; line-height: 1;
}
.apb-fiche-root .rev-score .stars { justify-content: center; display: flex; gap: 2px; margin: 6px 0 4px; }
.apb-fiche-root .rev-score .muted { font-size: 12px; color: var(--ink-3); }
.apb-fiche-root .rev-bars { display: flex; flex-direction: column; gap: 10px; }
.apb-fiche-root .bar { display: grid; grid-template-columns: 160px 1fr 36px; align-items: center; gap: 12px; font-size: 13px; }
.apb-fiche-root .bar > span { color: var(--ink-2); }
.apb-fiche-root .bar-track { height: 6px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.apb-fiche-root .bar-fill { height: 100%; background: linear-gradient(90deg, #FCD34D, var(--accent)); border-radius: 999px; }
.apb-fiche-root .bar b { text-align: right; font-size: 13px; color: var(--ink); }

.apb-fiche-root .rev-list { display: flex; flex-direction: column; gap: 12px; }
.apb-fiche-root .rev {
  padding: 18px; border: 1px solid var(--line); border-radius: 14px;
  background: white;
}
.apb-fiche-root .rev-head { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.apb-fiche-root .rev-ava {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: white; display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
}
.apb-fiche-root .rev-head > div:nth-child(2) { flex: 1; }
.apb-fiche-root .rev-head b { font-size: 14px; }
.apb-fiche-root .rev-meta { font-size: 12px; color: var(--ink-3); display: flex; gap: 4px; align-items: center; }
.apb-fiche-root .rev-score-sm {
  display: inline-flex; gap: 4px; align-items: center;
  padding: 4px 9px; border-radius: 999px;
  background: #FEF3C7; color: #78350F;
  font-size: 13px;
}
.apb-fiche-root .rev-text { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.65; text-wrap: pretty; }

.apb-fiche-root .leave {
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.apb-fiche-root .leave-head { display: flex; gap: 8px; align-items: center; flex: 1; }
.apb-fiche-root .leave-head svg { color: var(--brand); }
.apb-fiche-root .leave-head b { font-size: 14px; }
.apb-fiche-root .leave-head .muted { font-size: 13px; color: var(--ink-3); }

/* ---------- ZONE ---------- */
.apb-fiche-root .zone-grid { display: grid; grid-template-columns: 260px 1fr; gap: 20px; }
.apb-fiche-root .dispo-title {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  margin-bottom: 8px; margin-top: 14px;
}
.apb-fiche-root .dispo-title:first-child { margin-top: 0; }
.apb-fiche-root .days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.apb-fiche-root .day {
  padding: 10px 0; text-align: center;
  border-radius: 8px; background: var(--bg-soft);
  font-size: 12px; color: var(--ink-3);
  border: 1px solid transparent;
}
.apb-fiche-root .day.on {
  background: #ECFDF5; color: #065F46;
  border-color: #A7F3D0;
  font-weight: 600;
}
.apb-fiche-root .slot {
  padding: 12px; border-radius: 10px;
  border: 1px solid var(--line); background: white;
}
.apb-fiche-root .slot b { display: block; font-size: 14px; margin-bottom: 2px; }
.apb-fiche-root .slot .muted { font-size: 12px; color: var(--ink-3); }

.apb-fiche-root .map-card {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: white;
}
.apb-fiche-root .map {
  position: relative; height: 220px;
}
.apb-fiche-root .map-expand {
  position: absolute; bottom: 12px; right: 12px;
  padding: 6px 10px; border-radius: 8px;
  background: white; border: 1px solid var(--line);
  font-size: 12px; font-weight: 500;
  display: flex; gap: 5px; align-items: center;
  box-shadow: var(--shadow-1);
}
.apb-fiche-root .map-expand:hover { border-color: var(--ink); }
.apb-fiche-root .zone-tags { padding: 14px; display: flex; flex-wrap: wrap; gap: 6px; border-top: 1px solid var(--line); }

/* ---------- SIDEBAR ---------- */
.apb-fiche-root .side { position: sticky; top: 0; margin-top: 0; display: flex; flex-direction: column; gap: 16px; }
.apb-fiche-root .layout { align-items: flex-start; }
.apb-fiche-root .main-col > .hero { margin-top: 0; }
.apb-fiche-root .side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-1);
}
.apb-fiche-root .contact-card { background: linear-gradient(180deg, #FFFFFF 0%, #FDFCF9 100%); }
.apb-fiche-root .contact-head { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.apb-fiche-root .contact-ava {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: white; display: grid; place-items: center;
  font-weight: 700; font-size: 15px;
}
.apb-fiche-root .contact-head b { display: block; font-size: 15px; margin-bottom: 1px; }
.apb-fiche-root .contact-head .muted { font-size: 12px; color: var(--ink-3); }

.apb-fiche-root .form { display: flex; flex-direction: column; gap: 6px; }
.apb-fiche-root .form label { font-size: 12px; font-weight: 600; color: var(--ink-2); margin-top: 8px; }
.apb-fiche-root .form input,
.apb-fiche-root .form textarea {
  border: 1px solid var(--line);
  background: white;
  padding: 10px 12px; border-radius: 10px;
  font-size: 14px;
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
}
.apb-fiche-root .form input:focus,
.apb-fiche-root .form textarea:focus { border-color: var(--brand); }
.apb-fiche-root .form .btn { margin-top: 12px; }

.apb-fiche-root .or {
  text-align: center; font-size: 11px; color: var(--ink-3);
  margin: 18px 0 14px; position: relative;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.apb-fiche-root .or::before,
.apb-fiche-root .or::after {
  content: ''; position: absolute; top: 50%;
  width: calc(50% - 60px); height: 1px; background: var(--line);
}
.apb-fiche-root .or::before { left: 0; }
.apb-fiche-root .or::after { right: 0; }
.apb-fiche-root .or span { background: transparent; padding: 0 10px; }

.apb-fiche-root .contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.apb-fiche-root .contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px; border-radius: 10px;
  background: white; border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  transition: all 0.15s;
}
.apb-fiche-root .contact-btn:hover { border-color: var(--ink); color: var(--ink); }
.apb-fiche-root .contact-btn.on { background: var(--brand-soft); border-color: var(--brand); color: var(--brand); }
.apb-fiche-root .contact-btn .phone-num { font-size: 14px; font-weight: 700; letter-spacing: 0.01em; white-space: nowrap; }
.apb-fiche-root .contact-btn.wa { color: var(--wa); }
.apb-fiche-root .contact-btn.wa:hover { background: #F0FDF4; border-color: var(--wa); }

.apb-fiche-root .mini { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
.apb-fiche-root .mini-row { display: flex; gap: 12px; align-items: flex-start; }
.apb-fiche-root .mini-row svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.apb-fiche-root .mini-row b { display: block; font-size: 13px; margin-bottom: 1px; }
.apb-fiche-root .mini-row .muted { font-size: 12px; color: var(--ink-3); }
.apb-fiche-root .mini.alt { background: var(--brand); color: white; border-color: var(--brand); }
.apb-fiche-root .mini-title { font-size: 13px; margin-bottom: 6px; display: block; }
.apb-fiche-root .share-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.apb-fiche-root .share-row button {
  padding: 8px 6px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: white;
  font-size: 12px; font-weight: 500;
  display: flex; gap: 4px; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
}
.apb-fiche-root .share-row button:hover { background: rgba(255,255,255,0.15); }

/* ---------- LOCKED CONTACT (auth gate) ---------- */
.apb-fiche-root .contact-locked {
  text-align: center;
  padding: 20px 16px;
  color: var(--ink-3);
}
.apb-fiche-root .contact-locked svg {
  color: var(--ink-3);
  margin-bottom: 10px;
}
.apb-fiche-root .contact-locked p {
  font-size: 14px;
  margin: 0 0 14px;
  color: var(--ink-2);
}
.apb-fiche-root .contact-locked-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Density variants */
.apb-fiche-root.density-compact .sec { padding: 20px 24px; margin-bottom: 14px; }
.apb-fiche-root.density-compact .hero-inner { padding: 20px 24px 18px; }
.apb-fiche-root.density-compact .hero-title { font-size: 28px; }
.apb-fiche-root.density-compact .stat { padding: 14px 16px; }
.apb-fiche-root.density-compact .stat b { font-size: 18px; }

/* Responsive */
@media (max-width: 1180px) {
  .apb-fiche-root .layout { grid-template-columns: 1fr; }
  .apb-fiche-root .side { position: static; }
}
@media (max-width: 900px) {
  .apb-fiche-root .hero-inner { grid-template-columns: 1fr; }
  .apb-fiche-root .hero-cta { align-items: stretch; width: 100%; min-width: 0; flex-direction: row; flex-wrap: wrap; }
  .apb-fiche-root .hero-cta .btn-primary { flex: 1; min-width: 200px; }
}
@media (max-width: 720px) {
  .apb-fiche-root .snav {
    top: 0;
    margin: 8px 0 10px;
    padding: 6px 8px;
    z-index: 40;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
  }
  .apb-fiche-root .map-card { z-index: 0; }
  .apb-fiche-root .map-card .apb-map { z-index: 0; }
  .apb-fiche-root .btn-ico { width: 44px; height: 44px; }
  .apb-fiche-root .btn-ico svg { width: 20px; height: 20px; }
}
@media (max-width: 999px) {
  .apb-fiche-root .page { padding: 16px; padding-bottom: 90px; }
  .apb-fiche-root .mfab { display: flex; }
  .apb-fiche-root .hero-inner { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .apb-fiche-root .hero-cta { align-items: flex-start; width: 100%; }
  .apb-fiche-root .hero-title { font-size: 26px; }
  .apb-fiche-root .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .apb-fiche-root .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .apb-fiche-root .kv-grid,
  .apb-fiche-root .svc-grid { grid-template-columns: 1fr; }
  .apb-fiche-root .gallery { grid-template-columns: 1fr; height: auto; }
  .apb-fiche-root .g-main,
  .apb-fiche-root .g-cell { aspect-ratio: 4/3; }
  .apb-fiche-root .g-side { grid-template-columns: 1fr 1fr; }
  .apb-fiche-root .rev-summary { grid-template-columns: 1fr; }
  .apb-fiche-root .zone-grid { grid-template-columns: 1fr; }
}
