/* Panneau « vous quittez la boutique ». */
.hmb-sortie { position: fixed; inset: 0; z-index: 95; display: flex; align-items: center; justify-content: center; padding: 20px; }
.hmb-sortie[hidden] { display: none; }
.hmb-sortie__voile { position: absolute; inset: 0; background: var(--hm-veil, rgba(63,47,37,0.38)); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); opacity: 0; transition: opacity 0.25s; }
.hmb-sortie.is-open .hmb-sortie__voile { opacity: 1; }
.hmb-sortie__boite {
	position: relative; width: min(440px, 100%); padding: 28px;
	background: var(--hm-surface, #fff); border-radius: var(--hm-radius, 18px);
	box-shadow: var(--hm-shadow-3, 0 30px 80px -20px rgba(63,47,37,0.35));
	text-align: center;
	transform: translateY(14px) scale(0.98); opacity: 0;
	transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.28s;
}
.hmb-sortie.is-open .hmb-sortie__boite { transform: none; opacity: 1; }
.hmb-sortie__icone { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; margin-bottom: 12px; border-radius: 16px; background: var(--hm-peach, #fbe3d0); color: var(--hm-caramel-dark, #8b5a34); }
.hmb-sortie__boite h2 { margin: 0 0 8px; font-size: 1.4rem; }
.hmb-sortie__boite p { margin: 0 0 10px; color: var(--hm-brown-soft, #6b5a4b); }
/* L'adresse réelle, telle quelle : c'est elle qui dit où l'on va, pas le libellé du lien. */
.hmb-sortie__url { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85rem; color: var(--hm-muted, #76665a); word-break: break-all; }
.hmb-sortie__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }
.hmb-sortie__actions .hm-btn { flex: 1 1 160px; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
	.hmb-sortie__boite, .hmb-sortie__voile { transition: none; }
}
