/* ── Visite guidee ──────────────────────────────────────────
   Un cadre et du texte. Pas d icone, pas de couleur criarde :
   on montre l interface, on ne la concurrence pas.          */

.jt-masque {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 20, .58);
  z-index: 9000;
}

.jt-bulle {
  position: fixed;
  z-index: 9001;
  width: min(320px, calc(100vw - 24px));
  background: var(--card, #fff);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}

.jt-compte {
  font: 500 .62rem/1 'DM Sans', sans-serif;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 .4rem;
}

.jt-titre {
  font: 700 1rem/1.3 'Lora', serif;
  color: var(--ink);
  margin: 0 0 .4rem;
}

.jt-texte {
  font: 400 .82rem/1.55 'DM Sans', sans-serif;
  color: var(--soft);
  margin: 0 0 .9rem;
}

.jt-actions {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.jt-passer {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin-right: auto;
  font: 400 .72rem/1 'DM Sans', sans-serif;
  color: var(--soft);
  cursor: pointer;
  text-decoration: underline;
}

.jt-btn {
  appearance: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .38rem .8rem;
  font: 500 .75rem/1 'DM Sans', sans-serif;
  color: var(--ink);
  cursor: pointer;
}
.jt-btn:hover { border-color: var(--brand); }
.jt-btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.jt-btn--on {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .jt-bulle { transition: none; }
}
