@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy: #0F1F3D; --blue: #1A4FC4; --blue-light: #EBF0FC; --mint: #00C9A7; --mint-light: #E6FAF6;
  --red: #E63946; --red-light: #FDE8E9; --amber: #F4A261; --amber-light: #FEF3E8; --gold: #E0A82E;
  --gray-50: #F8F9FB; --gray-100: #F0F2F6; --gray-200: #E2E6EE; --gray-400: #9AA3B8;
  --gray-600: #5A6478; --gray-800: #2D3548; --white: #fff;
  --shadow-sm: 0 1px 3px rgba(15,31,61,.06), 0 1px 2px rgba(15,31,61,.04);
  --shadow-md: 0 4px 16px rgba(15,31,61,.08), 0 2px 6px rgba(15,31,61,.05);
  --shadow-lg: 0 12px 40px rgba(15,31,61,.12), 0 4px 12px rgba(15,31,61,.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: var(--gray-50); color: var(--gray-800); min-height: 100vh; }
a { text-decoration: none; color: inherit; }

/* ── ENTRY GATE ── */
.gate { position: fixed; inset: 0; background: var(--navy); z-index: 1000; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; }
.gate.hidden { display: none; }
.gate-logo { font-size: 34px; font-weight: 700; color: #fff; letter-spacing: -.5px; margin-bottom: 8px; }
.gate-logo span { color: var(--mint); }
.gate-sub { color: var(--gray-400); margin-bottom: 40px; font-size: 15px; }
.gate-cards { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.gate-card { background: #fff; border-radius: 18px; width: 280px; padding: 36px 28px; cursor: pointer; transition: .2s; border: 3px solid transparent; }
.gate-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gate-card .ic { font-size: 44px; margin-bottom: 16px; }
.gate-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.gate-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin-bottom: 20px; }
.gate-card .pick { display: inline-block; padding: 10px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; }
.gate-card.dent .pick { background: var(--blue); color: #fff; }
.gate-card.prot .pick { background: var(--mint); color: var(--navy); }

/* ── HEADER ── */
header { background: var(--navy); padding: 0 32px; height: 62px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.logo { font-size: 19px; font-weight: 700; color: #fff; letter-spacing: -.3px; }
.logo span { color: var(--mint); }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--gray-400); font-size: 14px; font-weight: 500; cursor: pointer; }
.nav a:hover { color: #fff; }
.nav a.active { color: var(--mint); }
.btn-header { background: var(--mint); color: var(--navy); border: none; padding: 8px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; transition: .15s; }
.btn-header:hover { background: #00e0ba; }
.btn-header.logged { background: rgba(255,255,255,.12); color: #fff; }
.btn-header.logged:hover { background: rgba(255,255,255,.2); }

/* ── HERO ── */
.hero { background: var(--navy); padding: 40px 32px 48px; text-align: center; }
.hero-eyebrow { display: inline-block; background: rgba(0,201,167,.15); color: var(--mint); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 18px; }
.hero h1 { font-size: 34px; font-weight: 700; color: #fff; letter-spacing: -.8px; line-height: 1.15; margin-bottom: 12px; }
.hero h1 span { color: var(--mint); }
.hero p { color: var(--gray-400); font-size: 16px; max-width: 560px; margin: 0 auto 8px; }
.hero-stats { display: flex; gap: 32px; justify-content: center; margin-top: 24px; }
.hero-stat b { color: #fff; font-size: 22px; display: block; }
.hero-stat span { color: var(--gray-400); font-size: 12px; }

/* ── FILTERS ── */
.filters-bar { background: #fff; padding: 16px 32px; display: flex; gap: 10px; flex-wrap: wrap; border-bottom: 1px solid var(--gray-200); position: sticky; top: 62px; z-index: 90; }
.filter-chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1.5px solid var(--gray-200); border-radius: 22px; font-size: 13px; font-weight: 500; color: var(--gray-600); cursor: pointer; transition: .15s; background: #fff; user-select: none; }
.filter-chip:hover { border-color: var(--blue); color: var(--blue); }
.filter-chip.active { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }
.filter-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }

/* ── MAIN ── */
.main { max-width: 1180px; margin: 0 auto; padding: 28px 32px 120px; }
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.results-count { font-size: 15px; color: var(--gray-600); }
.results-count strong { color: var(--navy); }
.view-toggle { display: flex; gap: 8px; }
.view-btn { padding: 7px 14px; border: 1.5px solid var(--gray-200); background: #fff; border-radius: 8px; font-size: 13px; cursor: pointer; font-family: inherit; color: var(--gray-600); }
.view-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.cards-grid { display: flex; flex-direction: column; gap: 18px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray-400); }
.empty-state .big { font-size: 40px; margin-bottom: 12px; }
.empty-state p { font-size: 15px; }

/* ── LAB CARD ── */
.labo-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); border: 1.5px solid var(--gray-200); overflow: hidden; transition: .2s; }
.labo-card:hover { box-shadow: var(--shadow-md); }
.labo-card.selected { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.card-top { display: grid; grid-template-columns: 225px 1fr 140px; gap: 18px; padding: 20px; align-items: start; }
@media (max-width: 880px) { .card-top { grid-template-columns: 1fr; } }

.card-identity { position: relative; }

/* ── CAROUSEL ── */
.card-carousel { position: relative; width: 100%; height: 130px; border-radius: 12px; overflow: hidden; margin-bottom: 12px; background: var(--gray-100); }
.carousel-track { display: flex; height: 100%; transition: transform .35s ease; }
.carousel-slide { min-width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--gray-400); font-size: 13px; position: relative; background: var(--gray-100); overflow: hidden; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-slide.locked { background: linear-gradient(135deg, #1A2A4A, #0F1F3D); color: #fff; cursor: pointer; flex-direction: column; gap: 4px; font-size: 12px; text-align: center; padding: 10px; }
.carousel-slide.locked .lk { font-size: 22px; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; cursor: pointer; font-size: 13px; color: var(--navy); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); z-index: 2; }
.carousel-arrow.prev { left: 8px; } .carousel-arrow.next { right: 8px; }
.carousel-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 2; }
.carousel-dots .d { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); }
.carousel-dots .d.on { background: #fff; }
.carousel-tag { position: absolute; top: 8px; left: 8px; background: rgba(15,31,61,.7); color: #fff; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 12px; z-index: 2; }

.compare-row { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.compare-row input { width: 15px; height: 15px; cursor: pointer; accent-color: var(--blue); }
.compare-row label { font-size: 12px; color: var(--gray-400); cursor: pointer; }
.labo-logo { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.labo-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.labo-location { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }
.macarons { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.macaron { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; border: 1.5px solid transparent; }
.macaron.spe { background: var(--blue-light); color: var(--blue); border-color: #C9D8F7; }
.macaron.founder { background: linear-gradient(120deg,#FFF3D6,#FDE8B8); color: #B8860B; border-color: #E6CE7A; }
.macaron.gold { background: linear-gradient(120deg,#FBF3DC,#F5E6B8); color: #B8860B; border-color: #E6CE7A; }
.macaron.flash { background: var(--mint-light); color: #00A589; border-color: #A8E6D8; }
.august-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; padding: 7px 13px; border-radius: 9px; margin-top: 6px; width: 100%; justify-content: center; }
.august-badge.open { background: var(--mint-light); color: #00A589; }
.august-badge.closed { background: var(--red-light); color: var(--red); }
.august-badge.partial { background: var(--amber-light); color: #C47A2A; }

/* ── VERIFIED BADGE + TOOLTIP ── */
.verif-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 20px; margin-bottom: 8px; cursor: help; position: relative; }
.verif-badge.verified { background: var(--mint-light); color: #00A589; }
.verif-badge.consult { background: var(--gray-100); color: var(--gray-600); }
.verif-badge .tip { position: absolute; bottom: 130%; left: 0; width: 230px; background: var(--navy); color: #fff; font-weight: 400; font-size: 12px; line-height: 1.5; padding: 10px 12px; border-radius: 10px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: .18s; transform: translateY(4px); z-index: 50; }
.verif-badge .tip::after { content: ""; position: absolute; top: 100%; left: 18px; border: 6px solid transparent; border-top-color: var(--navy); }
.verif-badge:hover .tip { opacity: 1; transform: translateY(0); }

/* ── CARD DATA ── */
.card-data { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
@media (max-width: 880px) { .card-data { grid-template-columns: repeat(2,1fr); gap: 16px; } }
.data-block { padding: 0 16px; border-right: 1px solid var(--gray-100); }
.data-block:last-child { border-right: none; }
@media (max-width: 880px) { .data-block { border-right: none; padding: 0; } }
.data-label { font-size: 10px; text-transform: uppercase; letter-spacing: .6px; color: var(--gray-400); font-weight: 700; margin-bottom: 8px; padding-bottom: 5px; border-bottom: 2px solid var(--gray-100); }
.data-value { font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1; }
.data-unit { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.made-in-flag { font-size: 28px; line-height: 1.1; }
.made-in-country { font-size: 12px; color: var(--gray-600); font-weight: 600; }

.tarifs-block { display: flex; flex-direction: column; gap: 5px; }
.tarif-line { display: flex; justify-content: space-between; font-size: 13px; align-items: center; }
.tarif-name { color: var(--gray-600); }
.tarif-price { font-weight: 700; color: var(--navy); font-family: 'DM Mono', monospace; }
.tarif-line.locked .tarif-price { filter: blur(5px); user-select: none; }
.lock-hint { margin-top: 8px; font-size: 11px; color: var(--blue); cursor: pointer; font-weight: 700; background: var(--blue-light); padding: 5px 8px; border-radius: 6px; text-align: center; }
.lock-hint:hover { background: #DCE6FB; }
.lock-hint.unlocked { background: var(--mint-light); color: #00A589; }
.lock-hint.unlocked:hover { background: #c8f3eb; }

.logistics-block { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--gray-600); }
.cfao-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 6px; align-self: flex-start; background: var(--gray-100); color: var(--gray-600); }
.cfao-badge.yes { background: var(--mint-light); color: #00A589; }
.cfao-badge.no { background: var(--red-light); color: var(--red); }

.card-cta { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.btn-voir { background: var(--navy); color: #fff; border: none; padding: 11px; border-radius: 9px; font-weight: 600; font-size: 14px; cursor: pointer; font-family: inherit; transition: .15s; }
.btn-voir:hover { background: #1a2e5a; }
.btn-contact { background: #fff; color: var(--navy); border: 1.5px solid var(--gray-200); padding: 11px; border-radius: 9px; font-weight: 600; font-size: 14px; cursor: pointer; font-family: inherit; transition: .15s; }
.btn-contact:hover { border-color: var(--navy); }

.accordion-toggle { width: 100%; background: var(--gray-50); border: none; border-top: 1px solid var(--gray-200); padding: 11px; font-size: 13px; font-weight: 600; color: var(--gray-600); cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 6px; }
.card-accordion { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.card-accordion.open { max-height: 300px; }
.accordion-content { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; padding: 18px 20px; background: var(--gray-50); }
@media (max-width: 880px) { .accordion-content { grid-template-columns: repeat(2,1fr); } }
.detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-400); font-weight: 600; margin-bottom: 5px; }
.detail-value { font-size: 13px; color: var(--gray-800); line-height: 1.5; }

/* ── COMPARE BAR ── */
.compare-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); color: #fff; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; transform: translateY(100%); transition: .3s; z-index: 400; }
.compare-bar.show { transform: translateY(0); }
.compare-items { display: flex; gap: 12px; align-items: center; font-size: 14px; flex-wrap: wrap; }
.compare-chip { background: rgba(255,255,255,.1); padding: 6px 12px; border-radius: 8px; font-size: 13px; }
.btn-compare { background: var(--mint); color: var(--navy); border: none; padding: 11px 24px; border-radius: 9px; font-weight: 700; cursor: pointer; font-family: inherit; white-space: nowrap; }

/* ── MODALS ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,31,61,.6); backdrop-filter: blur(4px); z-index: 500; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.show { display: flex; }
.modal { background: #fff; border-radius: 18px; max-width: 720px; width: 100%; max-height: 88vh; overflow-y: auto; overflow-x: hidden; box-shadow: var(--shadow-lg); }
.modal-header { padding: 24px 28px; border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: flex-start; position: sticky; top: 0; background: #fff; z-index: 2; }
.modal-close { background: var(--gray-100); border: none; width: 32px; height: 32px; border-radius: 8px; cursor: pointer; font-size: 16px; color: var(--gray-600); transition: .15s; }
.modal-close:hover { background: var(--gray-200); }
.modal-body { padding: 24px 28px; }
.modal h2 { font-size: 24px; color: var(--navy); margin-bottom: 4px; }
.modal .sub { color: var(--gray-600); font-size: 14px; }

/* ── SIGNUP MODAL ── */
.signup .ic { font-size: 40px; text-align: center; margin-bottom: 8px; }
.signup h2 { text-align: center; }
.signup .sub { text-align: center; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-800); margin-bottom: 5px; }
.field input, .field select { width: 100%; padding: 11px; border: 1.5px solid var(--gray-200); border-radius: 9px; font-size: 14px; font-family: inherit; outline: none; transition: .15s; }
.field input:focus, .field select:focus { border-color: var(--blue); }
.btn-primary { width: 100%; background: var(--blue); color: #fff; border: none; padding: 13px; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; font-family: inherit; margin-top: 6px; transition: .15s; }
.btn-primary:hover { background: #1540a8; }
.unlock-note { background: var(--mint-light); color: #00A589; padding: 12px; border-radius: 10px; font-size: 13px; text-align: center; margin-bottom: 18px; }

/* ── PHOTO GALLERY ── */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 16px 0; }
.gallery .ph { aspect-ratio: 4/3; border-radius: 10px; background: linear-gradient(135deg,#E2E6EE,#F0F2F6); display: flex; align-items: center; justify-content: center; color: var(--gray-400); font-size: 12px; position: relative; overflow: hidden; }
.gallery .ph.locked { cursor: pointer; }
.gallery .ph.locked .ov { position: absolute; inset: 0; background: rgba(15,31,61,.55); backdrop-filter: blur(6px); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font-size: 12px; gap: 4px; text-align: center; padding: 8px; }

.detail-section { margin: 22px 0; }
.detail-section h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-400); margin-bottom: 12px; font-weight: 700; }
.info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.info-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-800); }
.info-row .k { color: var(--gray-600); min-width: 130px; }
.info-row .v { font-weight: 600; }
.yes { color: #00A589; } .no { color: var(--gray-400); }

.locked-block { position: relative; border-radius: 12px; overflow: hidden; border: 1.5px solid var(--gray-200); }
.locked-block .content { filter: blur(5px); padding: 18px; pointer-events: none; }
.locked-block .ov { position: absolute; inset: 0; background: rgba(248,249,251,.6); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.btn-unlock { background: var(--blue); color: #fff; border: none; padding: 10px 22px; border-radius: 9px; font-weight: 600; cursor: pointer; font-family: inherit; font-size: 13px; }

/* ── PROTI MASCOT ── */
.proti-hero { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 22px auto 0; max-width: 560px; }
.proti-avatar { width: 104px; height: 104px; flex: none; position: relative; animation: protiFloat 3s ease-in-out infinite; }
@keyframes protiFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.proti-speech { background: #fff; color: var(--navy); border-radius: 16px; padding: 14px 18px; font-size: 14px; font-weight: 500; line-height: 1.45; box-shadow: var(--shadow-md); position: relative; text-align: left; }
.proti-speech::before { content: ""; position: absolute; left: -9px; top: 28px; border: 8px solid transparent; border-right-color: #fff; }
.proti-speech b { color: var(--blue); }

.proti-launcher { position: fixed; bottom: 22px; right: 22px; z-index: 300; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: .2s; }
.proti-launcher:hover { transform: translateY(-4px); }
.proti-launcher .toon { width: 92px; height: 92px; filter: drop-shadow(0 8px 18px rgba(15,31,61,.28)); animation: protiFloat 3.2s ease-in-out infinite; }
.proti-launcher .tag { background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px; white-space: nowrap; box-shadow: var(--shadow-sm); }
.proti-launcher .pulse { position: absolute; top: 4px; right: 4px; width: 14px; height: 14px; background: var(--red); border: 2px solid #fff; border-radius: 50%; }
.proti-mini-bubble { position: fixed; bottom: 122px; right: 120px; background: #fff; color: var(--navy); font-size: 13px; font-weight: 500; padding: 10px 14px; border-radius: 14px; box-shadow: var(--shadow-md); z-index: 300; max-width: 200px; animation: protiFloat 3.2s ease-in-out infinite; cursor: pointer; }
.proti-mini-bubble::after { content: ""; position: absolute; right: -8px; bottom: 18px; border: 8px solid transparent; border-left-color: #fff; }
.proti-mini-bubble.hide { display: none; }

.chatbox { position: fixed; bottom: 130px; right: 24px; width: 350px; background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); z-index: 301; display: none; flex-direction: column; overflow: hidden; max-height: 500px; }
.chatbox.show { display: flex; }
.chat-head { background: var(--navy); color: #fff; padding: 16px; display: flex; align-items: center; gap: 10px; }
.chat-head .av { width: 44px; height: 44px; flex: none; }
.chat-head b { font-size: 15px; } .chat-head span { font-size: 12px; color: var(--gray-400); display: block; }
.chat-body { padding: 16px; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; background: var(--gray-50); }
.bubble { max-width: 80%; padding: 10px 13px; border-radius: 14px; font-size: 13px; line-height: 1.45; }
.bubble.bot { background: #fff; border: 1px solid var(--gray-200); align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble.user { background: var(--blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; background: var(--gray-50); }
.chat-sug { font-size: 12px; border: 1.5px solid var(--blue); color: var(--blue); background: #fff; padding: 6px 11px; border-radius: 16px; cursor: pointer; transition: .15s; }
.chat-sug:hover { background: var(--blue-light); }
.chat-input { display: flex; border-top: 1px solid var(--gray-200); padding: 10px; gap: 8px; background: #fff; }
.chat-input input { flex: 1; border: 1.5px solid var(--gray-200); border-radius: 20px; padding: 9px 14px; font-size: 13px; font-family: inherit; outline: none; }
.chat-input input:focus { border-color: var(--blue); }
.chat-input button { background: var(--mint); border: none; width: 38px; border-radius: 50%; cursor: pointer; font-size: 16px; }

/* ── SECTION PAGES (carte, forum, prothésiste) ── */
.section-page { display: none; max-width: 1180px; margin: 0 auto; padding: 32px; min-height: 60vh; }
.section-page.show { display: block; }
.section-page h2 { font-size: 28px; color: var(--navy); margin-bottom: 6px; }
.section-page .lead { color: var(--gray-600); margin-bottom: 24px; }

/* ── FORUM ── */
.forum-post { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 14px; padding: 18px; margin-bottom: 14px; }
.forum-post .ph-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.forum-post .av { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.forum-post .name { font-weight: 700; color: var(--navy); font-size: 14px; }
.forum-post .meta { font-size: 12px; color: var(--gray-400); }
.forum-post .lvl { margin-left: auto; background: var(--amber-light); color: #C47A2A; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
.forum-post .txt { font-size: 14px; color: var(--gray-800); line-height: 1.5; margin-bottom: 12px; }
.forum-post .ph-img { height: 160px; border-radius: 10px; background: linear-gradient(135deg,#E2E6EE,#F0F2F6); display: flex; align-items: center; justify-content: center; color: var(--gray-400); margin-bottom: 12px; font-size: 13px; }
.forum-actions { display: flex; gap: 18px; font-size: 13px; color: var(--gray-600); }
.forum-actions span { cursor: pointer; transition: .15s; }
.forum-actions span:hover { color: var(--blue); }

.gam-banner { background: linear-gradient(120deg, var(--navy), var(--blue)); color: #fff; border-radius: 16px; padding: 24px; margin-bottom: 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.gam-banner .xp { flex: 1; min-width: 200px; }
.gam-banner .lvlbig { font-size: 13px; color: var(--mint); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.gam-banner h3 { font-size: 20px; margin: 4px 0 10px; }
.xp-bar { height: 10px; background: rgba(255,255,255,.15); border-radius: 6px; overflow: hidden; }
.xp-fill { height: 100%; width: 62%; background: var(--mint); border-radius: 6px; }
.xp-note { font-size: 12px; color: var(--gray-400); margin-top: 6px; }
.gam-reward { background: rgba(255,255,255,.1); border-radius: 12px; padding: 14px 18px; text-align: center; }
.gam-reward .big { font-size: 22px; }
.gam-reward .lbl { font-size: 11px; color: var(--gray-400); }

/* ── MAP ── */
.map-wrap { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 16px; height: 420px; position: relative; overflow: hidden; background-image: linear-gradient(rgba(226,230,238,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(226,230,238,.5) 1px, transparent 1px); background-size: 36px 36px; }
.map-pin-wrap { position: absolute; }
.map-pin { width: 34px; height: 34px; background: var(--blue); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: var(--shadow-md); cursor: pointer; }
.map-pin.mint { background: var(--mint); }
.map-pin.red { background: var(--red); }
.map-pin span { transform: rotate(45deg); display: block; text-align: center; line-height: 34px; color: #fff; font-size: 14px; }
.map-tooltip { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: .15s; z-index: 10; }
.map-tooltip::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--navy); }
.map-pin-wrap:hover .map-tooltip { opacity: 1; }
.map-locked { position: absolute; inset: 0; background: rgba(15,31,61,.5); backdrop-filter: blur(3px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #fff; }

/* ── PROTHÉSISTE SPACE ── */
.prot-profile-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.prot-profile-header .labo-logo { width: 72px; height: 72px; border-radius: 16px; font-size: 24px; flex-shrink: 0; }
.prot-profile-info { flex: 1; }
.prot-profile-info .labo-name { font-size: 24px; margin-bottom: 4px; }
.prot-edit-btn { margin-left: auto; background: var(--navy); color: #fff; border: none; padding: 10px 20px; border-radius: 9px; font-weight: 600; font-size: 14px; cursor: pointer; font-family: inherit; align-self: flex-start; }
.prot-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
@media (max-width: 880px) { .prot-stats { grid-template-columns: repeat(2, 1fr); } }
.prot-stat-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 14px; padding: 20px; text-align: center; }
.prot-stat-value { font-size: 32px; font-weight: 700; color: var(--navy); }
.prot-stat-label { font-size: 12px; color: var(--gray-600); margin-top: 4px; }
.upgrade-banner { background: linear-gradient(120deg, var(--navy), var(--blue)); color: #fff; border-radius: 16px; padding: 24px; margin-bottom: 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.upgrade-banner .up-text { flex: 1; min-width: 200px; }
.upgrade-banner .up-eyebrow { font-size: 12px; color: var(--mint); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.upgrade-banner h3 { font-size: 18px; margin-bottom: 6px; }
.upgrade-banner p { font-size: 13px; color: var(--gray-400); line-height: 1.5; }
.prot-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 880px) { .prot-sections { grid-template-columns: 1fr; } }
.prot-section { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 14px; padding: 20px; }
.prot-section h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-400); margin-bottom: 16px; font-weight: 700; }
.prot-tarifs-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.prot-tarifs-table th { text-align: left; padding: 8px 0; border-bottom: 2px solid var(--gray-100); font-size: 10px; text-transform: uppercase; letter-spacing: .6px; color: var(--gray-400); font-weight: 700; }
.prot-tarifs-table td { padding: 10px 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-800); }
.prot-tarifs-table td:nth-child(2) { font-family: 'DM Mono', monospace; font-weight: 700; color: var(--navy); }
.prot-tarifs-table td:nth-child(3) { font-size: 11px; font-weight: 700; }
.prot-tarifs-table .vis-pub { color: #00A589; }
.prot-tarifs-table .vis-mem { color: var(--blue); }
.ph-add { aspect-ratio: 4/3; border-radius: 10px; border: 2px dashed var(--gray-200); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gray-400); font-size: 12px; cursor: pointer; gap: 6px; transition: .15s; }
.ph-add:hover { border-color: var(--blue); color: var(--blue); }
.ph-add .plus { font-size: 24px; }

/* ── COMPARE TABLE ── */
.compare-table-wrap { overflow-x: auto; border-radius: 16px; border: 1.5px solid var(--gray-200); background: #fff; box-shadow: var(--shadow-sm); margin-top: 20px; }
table.compare-table { border-collapse: collapse; width: 100%; min-width: 760px; }
table.compare-table th, table.compare-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--gray-100); border-right: 1px solid var(--gray-100); }
table.compare-table thead th { background: var(--navy); color: #fff; position: sticky; top: 62px; z-index: 5; vertical-align: top; min-width: 150px; }
table.compare-table thead th:first-child { text-align: left; }
.th-labo-name { font-size: 15px; font-weight: 700; }
.th-labo-loc { font-size: 11px; color: var(--gray-400); font-weight: 400; margin-top: 2px; }
.row-label { text-align: left !important; font-weight: 600; color: var(--gray-600); background: var(--gray-50); font-size: 13px; position: sticky; left: 0; z-index: 2; }
.cell-big { font-size: 20px; font-weight: 700; color: var(--navy); }
.cell-unit { font-size: 11px; color: var(--gray-400); }
.cell-price { font-family: 'DM Mono', monospace; font-weight: 600; color: var(--navy); }
.cell-best { background: var(--mint-light); }
.cell-best .cell-big, .cell-best .cell-price { color: #00A589; }
.yn-yes { color: #00A589; font-weight: 700; font-size: 16px; }
.yn-no { color: var(--gray-400); font-size: 16px; }
.table-aug { display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 20px; }
.table-aug.open { background: var(--mint-light); color: #00A589; }
.table-aug.partial { background: var(--amber-light); color: #C47A2A; }
.table-aug.closed { background: var(--red-light); color: var(--red); }
.btn-mini { background: var(--navy); color: #fff; border: none; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; }
.back-to-list { margin-bottom: 16px; background: none; border: 1.5px solid var(--gray-200); color: var(--gray-600); padding: 8px 16px; border-radius: 8px; cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 600; }
.back-to-list:hover { border-color: var(--navy); color: var(--navy); }

.footer-note { text-align: center; padding: 30px; color: var(--gray-400); font-size: 12px; }

/* ── DEMO ACCESS GATE ────────────────────────────────────── */
.demo-gate { position: fixed; inset: 0; background: var(--navy); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.demo-gate.hidden { display: none; }
.demo-gate-box { background: #fff; border-radius: 20px; padding: 48px 40px; width: 100%; max-width: 400px; text-align: center; box-shadow: var(--shadow-lg); }
.demo-gate-box .logo { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.demo-gate-box .logo span { color: var(--mint); }
.demo-gate-box .sub { font-size: 14px; color: var(--gray-400); margin-bottom: 32px; }
.demo-gate-box .field { text-align: left; margin-bottom: 16px; }
.demo-gate-box .field label { font-size: 12px; font-weight: 600; color: var(--gray-600); display: block; margin-bottom: 6px; }
.demo-gate-box .field input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: 10px; font-family: inherit; font-size: 15px; outline: none; transition: border-color .2s; }
.demo-gate-box .field input:focus { border-color: var(--blue); }
.demo-gate-error { font-size: 13px; color: var(--red); margin-top: -8px; margin-bottom: 12px; display: none; }
.demo-gate-error.show { display: block; }

/* ── DEMO BANNER ─────────────────────────────────────────── */
.demo-banner { background: #FEF3C7; color: #92400E; font-size: 12px; font-weight: 500; text-align: center; padding: 7px 16px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #FCD34D; }

/* ── LABO SIGN-IN MODAL ──────────────────────────────────── */
.labo-signin-tabs { display: flex; gap: 0; margin-bottom: 24px; border: 1.5px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
.lsb-tab { flex: 1; padding: 10px 12px; background: var(--gray-50); border: none; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--gray-500); cursor: pointer; transition: .2s; }
.lsb-tab.active { background: var(--navy); color: #fff; }
.lsb-panel { display: none; }
.lsb-panel.active { display: block; }
.labo-badge-preview { display: flex; align-items: center; gap: 12px; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 14px 16px; margin-bottom: 20px; }
.lbp-logo { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.lbp-info { flex: 1; }
.lbp-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.lbp-loc { font-size: 12px; color: var(--gray-400); }

/* ── DASHBOARD TABS ──────────────────────────────────────── */
.dash-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin: 24px 0 0 0; }
.dash-tab { padding: 12px 20px; background: none; border: none; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--gray-500); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: .2s; }
.dash-tab.active { color: var(--navy); border-bottom-color: var(--navy); }
.dash-tab:hover:not(.active) { color: var(--navy); }
.dash-panel { display: none; padding: 24px 0; }
.dash-panel.active { display: block; }

/* ── COMPLETION BAR ──────────────────────────────────────── */
.completion-wrap { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 18px 20px; margin-bottom: 20px; }
.completion-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.completion-pct { font-size: 22px; font-weight: 800; color: var(--navy); }
.completion-bar { height: 8px; background: var(--gray-200); border-radius: 99px; overflow: hidden; }
.completion-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--mint)); border-radius: 99px; transition: width .6s; }
.checklist { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.checklist-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-600); }
.checklist-item .ci-icon { font-size: 16px; }
.checklist-item.done { color: var(--gray-400); text-decoration: line-through; }

/* ── PROFILE EDIT SECTIONS ───────────────────────────────── */
.edit-section { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 18px 20px; margin-bottom: 16px; }
.edit-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.edit-section-head h4 { margin: 0; font-size: 14px; font-weight: 700; color: var(--navy); }
.btn-edit-sm { background: none; border: 1.5px solid var(--gray-200); color: var(--gray-500); font-size: 12px; padding: 5px 12px; border-radius: 8px; cursor: pointer; font-family: inherit; font-weight: 600; }
.btn-edit-sm:hover { border-color: var(--navy); color: var(--navy); }
.info-pair { display: flex; justify-content: space-between; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: 13px; }
.info-pair:last-child { border-bottom: none; }
.info-pair .k { color: var(--gray-400); font-weight: 500; }
.info-pair .v { color: var(--navy); font-weight: 600; text-align: right; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-item { background: var(--blue-light); color: var(--blue); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.tag-item.cert { background: var(--gray-50); color: var(--gray-600); border: 1px solid var(--gray-200); }

/* ── HORAIRES TABLE ──────────────────────────────────────── */
.horaires-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.horaires-table tr td { padding: 5px 0; border-bottom: 1px solid var(--gray-100); }
.horaires-table tr:last-child td { border-bottom: none; }
.horaires-table .day { color: var(--gray-500); font-weight: 500; width: 40%; }
.horaires-table .hrs { color: var(--navy); font-weight: 600; }
.horaires-table .closed { color: var(--gray-400); }

/* ── CONTACTS LIST ───────────────────────────────────────── */
.contacts-list { display: flex; flex-direction: column; gap: 10px; position: relative; }
.contact-item { display: flex; align-items: center; gap: 14px; background: #fff; border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 14px 16px; }
.ci-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.ci-body { flex: 1; min-width: 0; }
.ci-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.ci-sujet { font-size: 12px; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ci-date { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.btn-reply { background: none; border: 1.5px solid var(--gray-200); color: var(--gray-600); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 8px; cursor: pointer; font-family: inherit; flex-shrink: 0; }
.btn-reply:hover { border-color: var(--navy); color: var(--navy); }
.contacts-lock { position: absolute; inset: 0; background: rgba(255,255,255,.85); backdrop-filter: blur(4px); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--navy); }

/* ── STATISTIQUES ────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
@media(max-width:600px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card-big { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 18px 20px; }
.stat-card-big .scb-label { font-size: 12px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.stat-card-big .scb-value { font-size: 28px; font-weight: 800; color: var(--navy); }
.stat-card-big .scb-sub { font-size: 12px; color: var(--gray-400); margin-top: 4px; }
.sparkline { display: flex; align-items: flex-end; gap: 4px; height: 60px; margin-top: 12px; }
.sparkline .bar { flex: 1; background: var(--blue-light); border-radius: 4px 4px 0 0; transition: background .2s; min-height: 4px; }
.sparkline .bar:last-child { background: var(--blue); }
.spark-labels { display: flex; gap: 4px; margin-top: 4px; }
.spark-labels span { flex: 1; text-align: center; font-size: 9px; color: var(--gray-400); }
.funnel-wrap { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 18px 20px; margin-bottom: 16px; }
.funnel-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.funnel-row:last-child { border-bottom: none; }
.funnel-step { flex: 1; }
.funnel-label { font-size: 12px; color: var(--gray-400); }
.funnel-val { font-size: 20px; font-weight: 800; color: var(--navy); }
.funnel-arrow { color: var(--gray-300); font-size: 20px; }
.funnel-pct { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.funnel-pct.good { background: var(--mint-light); color: #00A589; }
.funnel-pct.avg { background: var(--amber-light); color: #C47A2A; }
.market-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 13px; }
.market-row:last-child { border-bottom: none; }
.market-label { color: var(--gray-500); }
.market-you { font-weight: 700; color: var(--navy); }
.market-avg { color: var(--gray-400); }
.market-badge { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.market-badge.better { background: var(--mint-light); color: #00A589; }
.market-badge.same { background: var(--gray-100); color: var(--gray-500); }

/* ── LAB MODAL: COVER ────────────────────────────────────── */
.cover-area { height: 120px; background: linear-gradient(135deg, var(--navy) 0%, #1A4FC4 100%); position: relative; display: flex; align-items: flex-end; padding: 16px; gap: 14px; }
.cover-logo { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; flex-shrink: 0; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.cover-info { color: #fff; }
.cover-name { font-size: 20px; font-weight: 800; }
.cover-loc { font-size: 13px; opacity: .8; }
.modal-stats-strip { display: flex; gap: 0; border: 1.5px solid var(--gray-200); border-radius: 10px; margin-bottom: 20px; overflow: hidden; }
.modal-stat { flex: 1; text-align: center; padding: 10px 8px; border-right: 1px solid var(--gray-200); }
.modal-stat:last-child { border-right: none; }
.modal-stat .ms-val { font-size: 18px; font-weight: 800; color: var(--navy); }
.modal-stat .ms-lbl { font-size: 11px; color: var(--gray-400); }

/* ── LAB MODAL: ABOUT & INFOS ────────────────────────────── */
.about-text { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 14px; }
.about-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--gray-500); margin-bottom: 6px; }
.about-meta span { display: flex; align-items: center; gap: 4px; }
.about-meta .sep { color: var(--gray-300); }
.infos-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width:600px) { .infos-cols { grid-template-columns: 1fr; } }
.contact-locked { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 8px; font-size: 13px; color: var(--gray-400); cursor: pointer; margin-top: 12px; }
.contact-locked:hover { border-color: var(--blue); color: var(--blue); }
.equipment-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.equipment-list li { font-size: 13px; color: var(--gray-600); display: flex; align-items: flex-start; gap: 8px; }
.equipment-list li::before { content: '🔩'; flex-shrink: 0; }

/* ── LAB MODAL: TARIFS BY CATEGORY ──────────────────────── */
.tarif-category { margin-bottom: 14px; }
.tarif-cat-label { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.price-note { font-size: 11px; color: var(--gray-400); margin-top: 12px; font-style: italic; }

/* ── OBSERVED PRICES (consult labs) ───────────────────────── */
.obs-tag { display: inline-block; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; background: #FEF3C7; color: #92400E; border-radius: 4px; padding: 1px 5px; margin-left: 4px; vertical-align: middle; }
.obs-tag-sm { font-size: 9px; font-weight: 700; text-transform: uppercase; background: #FEF3C7; color: #92400E; border-radius: 3px; padding: 1px 4px; margin-left: 4px; }
.obs-label-tag { font-size: 9px; font-weight: 600; background: #FEF3C7; color: #92400E; border-radius: 4px; padding: 1px 5px; margin-left: 4px; }
.obs-meta { display: block; font-size: 10px; color: var(--gray-400); font-style: italic; margin-top: 1px; }
.obs-disclaimer-mini { font-size: 10px; color: #92400E; background: #FEF3C7; border-radius: 6px; padding: 5px 8px; margin-top: 8px; line-height: 1.4; }
.obs-disclaimer-box { background: #FEF3C7; border-left: 3px solid #F59E0B; border-radius: 0 8px 8px 0; padding: 12px 14px; margin-top: 14px; font-size: 12px; color: #78350F; line-height: 1.5; }
.obs-disclaimer-box a { color: #92400E; font-weight: 600; text-decoration: underline; }
.tarif-line.observed .tarif-price { display: flex; flex-direction: column; align-items: flex-end; }

/* ── LAB MODAL: REVIEWS ──────────────────────────────────── */
.rating-summary { display: flex; align-items: center; gap: 20px; padding: 16px; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 12px; margin-bottom: 16px; }
.rating-big { text-align: center; }
.rating-big .rb-score { font-size: 40px; font-weight: 900; color: var(--navy); line-height: 1; }
.rating-big .rb-stars { color: #F59E0B; font-size: 16px; margin: 4px 0; }
.rating-big .rb-count { font-size: 11px; color: var(--gray-400); }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.rbar-row { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.rbar-label { color: var(--gray-500); width: 18px; text-align: right; }
.rbar-track { flex: 1; height: 6px; background: var(--gray-200); border-radius: 99px; overflow: hidden; }
.rbar-fill { height: 100%; background: #F59E0B; border-radius: 99px; }
.rbar-count { color: var(--gray-400); width: 14px; }
.review-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; }
.review-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.review-author { font-weight: 700; font-size: 13px; color: var(--navy); }
.review-meta { font-size: 11px; color: var(--gray-400); }
.review-stars { color: #F59E0B; font-size: 13px; }
.review-text { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.reviews-locked { position: relative; margin-top: 10px; }
.reviews-locked .rl-content { filter: blur(3px); user-select: none; }
.reviews-locked .rl-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: rgba(255,255,255,.7); border-radius: 12px; }

/* ── LAB MODAL: STICKY CTA ───────────────────────────────── */
.modal-sticky-cta { position: sticky; bottom: 0; background: var(--navy); color: #fff; padding: 12px 24px; margin: 20px -24px -24px -24px; display: flex; align-items: center; justify-content: space-between; border-radius: 0 0 16px 16px; }
.modal-sticky-cta span { font-size: 13px; opacity: .85; }
.modal-sticky-cta button { background: var(--mint); color: #fff; border: none; padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; }

/* ── LABO MODAL GALLERY GRID ─────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-grid .ph { aspect-ratio: 4/3; border-radius: 8px; margin-bottom: 0; overflow: hidden; }
.gallery-grid .ph img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }
.gallery-grid .ph.video { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: rgba(255,255,255,.6); font-size: 28px; }

/* ── APERÇU FICHE TAB ────────────────────────────────────── */
.apercu-wrap { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 20px; }
.apercu-label { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.apercu-actions { display: flex; gap: 10px; margin-top: 16px; }
.btn-voir-full { background: var(--navy); color: #fff; border: none; padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; }
.btn-voir-full:hover { background: #1A4FC4; }
