/**
 * Qlick&Care — Offcanvas mobile (< 768 px).
 * Cf. inc/offcanvas.php (markup) et assets/qac-offcanvas.js (comportement).
 *
 * Architecture : <dialog> plein écran transparent (top layer) = voile cliquable ;
 * .qac-oc__panel = feuille ancrée à droite (colonne : en-tête fixe · recherche ·
 * zone défilante · barre d'actions collée en bas, sous le pouce).
 * Mouvement : transform/opacity uniquement (compositeur), décalages en cascade
 * sur les items, tout coupé par prefers-reduced-motion.
 *
 * ⚠️ Pas de media query de largeur ici : le garde-fou « < 768 px » vit dans le JS
 * (matchMedia sur data-max-width = QAC_OFFCANVAS_MAX_WIDTH, inc/offcanvas.php),
 * qui seul ouvre le dialog. Seules media queries : mise en page (≤ 359 px,
 * ≤ 600 px de haut) et prefers-reduced-motion. Aligné avec le bloc « Nav
 * priority+ » de style.css (768–1279 = panneau carte Bricks).
 */

/* ── Verrou de défilement de la page (posé par le JS) ─────────────────────
   Corps en position:fixed (et non un simple overflow:hidden) : seul verrou
   fiable sur iOS Safari. Le JS mémorise scrollY, le pose en `top` négatif et
   le restaure à la fermeture sans saut ni scroll-behavior smooth. */
html.qac-oc-lock {
	overflow: hidden;
}

html.qac-oc-lock body {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow: hidden;
}

/* ── Dialog = calque plein écran ──────────────────────────────────────────── */
.qac-oc {
	--oc-primary: var(--bricks-color-primary, #9e0000);
	--oc-ink: var(--bricks-color-secondary, #1e1c3a);
	--oc-muted: var(--bricks-color-muted, #535862);
	--oc-soft: var(--bricks-color-light, #f0f1f3);
	--oc-line: #e6e6ea;
	--oc-blush: var(--bricks-color-rose-pale, #e9d1d1);
	--oc-blush-soft: #f8eeee;
	--oc-white: #fff;
	--oc-radius: 28px;
	--oc-ease: cubic-bezier(.22, .9, .3, 1);
	--oc-ease-in: cubic-bezier(.55, .06, .68, .19);
	--oc-dur: 420ms;
	--oc-w: min(100% - 52px, 400px);
	--oc-scrim: 1;

	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--oc-ink);
	overflow: hidden;
	z-index: 2147483000;
	font-family: "Gilroy", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	/* Le voile ne défile jamais ; les gestes y sont gérés par le JS. */
	touch-action: none;
}

@supports (height: 100dvh) {
	.qac-oc {
		height: 100dvh;
	}
}

.qac-oc::backdrop {
	background: transparent;
}

/* Hors top layer (repli `open` sans showModal) : même rendu. */
.qac-oc[open] {
	display: block;
}

.qac-oc *,
.qac-oc *::before,
.qac-oc *::after {
	box-sizing: border-box;
}

.qac-oc svg.lucide {
	fill: none;
	flex: 0 0 auto;
}

/* :where() = spécificité nulle : les règles de composant ci-dessous gagnent
   toujours sur ces neutralisations des styles globaux Bricks/thème. */
.qac-oc :where(a) {
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.qac-oc :where(button) {
	font: inherit;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	cursor: pointer;
}

.qac-oc__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.qac-oc ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ── Voile ────────────────────────────────────────────────────────────────── */
.qac-oc__scrim {
	position: absolute;
	inset: 0;
	background: rgba(30, 28, 58, .55);
	opacity: 0;
	transition: opacity 320ms ease;
	-webkit-backdrop-filter: blur(6px) saturate(1.15);
	backdrop-filter: blur(6px) saturate(1.15);
}

.qac-oc.is-open .qac-oc__scrim {
	opacity: var(--oc-scrim);
}

.qac-oc.is-closing .qac-oc__scrim {
	transition-duration: 240ms;
}

.qac-oc.is-dragging .qac-oc__scrim {
	transition: none;
}

/* ── Feuille ──────────────────────────────────────────────────────────────── */
.qac-oc__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: var(--oc-w);
	display: flex;
	flex-direction: column;
	background:
		radial-gradient(140% 70% at 100% 0%, #fbf2f2 0%, rgba(251, 242, 242, 0) 60%),
		var(--oc-white);
	color: var(--oc-ink);
	border-radius: var(--oc-radius) 0 0 var(--oc-radius);
	box-shadow: -24px 0 64px -24px rgba(16, 12, 40, .45);
	transform: translate3d(100%, 0, 0);
	transition: transform var(--oc-dur) var(--oc-ease);
	will-change: transform;
	overflow: hidden;
	outline: 0;
	touch-action: none;
	padding-right: env(safe-area-inset-right);
}

.qac-oc.is-open .qac-oc__panel {
	transform: translate3d(0, 0, 0);
}

.qac-oc.is-closing .qac-oc__panel {
	transition: transform 260ms var(--oc-ease-in);
}

/* Sortie en cours : plus aucune cible sous le doigt (un re-tap pendant les
   260 ms atteignait le logo ou un lien qui glissait à cet endroit). */
.qac-oc.is-closing {
	pointer-events: none;
}

.qac-oc.is-dragging .qac-oc__panel {
	transition: none;
}

/* Filet de marque : un fin dégradé rouge→rose sur la tranche gauche. */
.qac-oc__panel::before {
	content: "";
	position: absolute;
	top: var(--oc-radius);
	bottom: var(--oc-radius);
	left: 0;
	width: 3px;
	border-radius: 0 3px 3px 0;
	background: linear-gradient(180deg, var(--oc-primary) 0%, var(--bricks-color-rose, #d3686a) 60%, rgba(211, 104, 106, 0) 100%);
	opacity: .9;
	pointer-events: none;
}

/* ── En-tête ──────────────────────────────────────────────────────────────── */
.qac-oc__head {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: calc(14px + env(safe-area-inset-top)) 16px 8px 24px;
}

.qac-oc__brand {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	border-radius: 10px;
}

.qac-oc__logo {
	display: block;
	width: auto;
	height: 32px;
	max-width: 170px;
	object-fit: contain;
}

.qac-oc__wordmark {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -.02em;
	color: var(--oc-ink);
}

.qac-oc__wordmark-amp {
	color: var(--bricks-color-rose, #d3686a);
	font-weight: 300;
	margin: 0 1px;
}

.qac-oc__close {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid var(--oc-line);
	border-radius: 999px;
	background: var(--oc-white);
	color: var(--oc-ink);
	transition: transform 180ms var(--oc-ease), background-color 180ms ease, color 180ms ease;
}

.qac-oc__close:hover {
	background: var(--oc-soft);
}

.qac-oc__close:active {
	transform: scale(.92);
	background: var(--oc-blush-soft);
	color: var(--oc-primary);
}

/* ── Recherche (ouvre la modale WeCode Search) ───────────────────────────── */
.qac-oc__search {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 10px;
	width: calc(100% - 40px);
	min-height: 48px;
	margin: 2px 16px 6px 24px;
	padding: 0 16px 0 14px;
	border: 1px solid var(--oc-line);
	border-radius: 999px;
	background: var(--oc-white);
	color: var(--oc-muted);
	font-size: 15px;
	font-weight: 500;
	text-align: left;
	box-shadow: 0 1px 2px rgba(16, 12, 40, .04);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 160ms var(--oc-ease);
}

.qac-oc__search-ic {
	display: inline-flex;
	color: var(--oc-primary);
}

.qac-oc__search-label {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.qac-oc__search:active {
	transform: scale(.985);
	border-color: var(--oc-blush);
}

/* ── Zone défilante ───────────────────────────────────────────────────────── */
.qac-oc__scroll {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-y;
	padding: 4px 0 16px;
	scrollbar-width: thin;
	scrollbar-color: var(--oc-line) transparent;
}

/* ── Navigation principale ───────────────────────────────────────────────── */
.qac-oc__list {
	padding: 0 12px;
}

.qac-oc__item {
	opacity: 0;
	transform: translate3d(0, 12px, 0);
	transition: opacity 380ms ease, transform 480ms var(--oc-ease);
}

.qac-oc.is-open .qac-oc__item {
	opacity: 1;
	transform: none;
	transition-delay: calc(110ms + var(--i, 0) * 34ms);
}

.qac-oc.is-closing .qac-oc__item {
	transition-delay: 0ms;
}

.qac-oc__row {
	display: flex;
	align-items: stretch;
	gap: 2px;
}

.qac-oc__link {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 56px;
	padding: 6px 10px;
	border-radius: 16px;
	color: var(--oc-ink);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -.01em;
	transition: background-color 160ms ease, color 160ms ease;
}

.qac-oc__link:active {
	background: var(--oc-soft);
}

.qac-oc__label {
	min-width: 0;
}

.qac-oc__ic {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--oc-soft);
	color: var(--oc-ink);
	transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.qac-oc__item.is-current > .qac-oc__row .qac-oc__link {
	color: var(--oc-primary);
}

.qac-oc__item.is-current > .qac-oc__row .qac-oc__ic {
	background: var(--oc-blush-soft);
	color: var(--oc-primary);
	box-shadow: inset 0 0 0 1px rgba(158, 0, 0, .14);
}

/* Bouton d'accordéon : 48 px, chevron qui bascule */
.qac-oc__acc-btn {
	width: 48px;
	flex: 0 0 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: transparent;
	color: var(--oc-muted);
	transition: background-color 160ms ease, color 160ms ease;
}

.qac-oc__acc-btn:active {
	background: var(--oc-soft);
}

.qac-oc__acc-btn svg {
	transition: transform 300ms var(--oc-ease);
}

.qac-oc__item.is-open > .qac-oc__row .qac-oc__acc-btn {
	color: var(--oc-primary);
}

.qac-oc__item.is-open > .qac-oc__row .qac-oc__acc-btn svg {
	transform: rotate(180deg);
}

/* Sous-panneau : grille 0fr→1fr (contenu masqué = non focalisable) */
.qac-oc__sub {
	display: grid;
	grid-template-rows: 0fr;
	visibility: hidden;
	transition: grid-template-rows 340ms var(--oc-ease), visibility 0s linear 340ms;
}

.qac-oc__item.is-open > .qac-oc__sub {
	grid-template-rows: 1fr;
	visibility: visible;
	transition-delay: 0s;
}

.qac-oc__sub-in {
	min-height: 0;
	overflow: hidden;
}

.qac-oc__sub-pad {
	margin: 2px 0 14px 30px;
	padding: 2px 0 2px 14px;
	border-left: 2px solid var(--oc-blush);
}

.qac-oc__eyebrow {
	margin: 14px 0 4px;
	padding: 0 10px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--oc-muted);
}

.qac-oc__sublist {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 4px;
}

.qac-oc__sublink {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 46px;
	padding: 6px 10px;
	border-radius: 12px;
	font-size: 15.5px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--oc-ink);
	transition: background-color 160ms ease, color 160ms ease;
}

.qac-oc__sublink:active {
	background: var(--oc-soft);
}

.qac-oc__sub-ic {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: var(--oc-blush-soft);
	color: var(--oc-primary);
}

.qac-oc__sub-ic img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.qac-oc__sub-label {
	min-width: 0;
}

.qac-oc__sublink[aria-current="page"] {
	color: var(--oc-primary);
	background: rgba(158, 0, 0, .06);
	font-weight: 600;
}

.qac-oc__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 40px;
	margin: 4px 0 0 10px;
	padding: 0 2px;
	color: var(--oc-primary);
	font-size: 14.5px;
	font-weight: 700;
}

.qac-oc__more svg {
	transition: transform 200ms var(--oc-ease);
}

.qac-oc__more:active svg {
	transform: translateX(3px);
}

/* Mise en avant « Nouveau » (centre vestibulaire) */
.qac-oc__hl {
	position: relative;
	display: block;
	margin: 8px 0 2px;
	padding: 14px 52px 14px 14px;
	border-radius: 16px;
	background:
		radial-gradient(90% 90% at 100% 0%, rgba(211, 104, 106, .35) 0%, rgba(211, 104, 106, 0) 55%),
		linear-gradient(135deg, #1e1c3a 0%, #2a2750 100%);
	color: #fff;
	overflow: hidden;
	transition: transform 180ms var(--oc-ease);
}

.qac-oc__hl:active {
	transform: scale(.985);
}

.qac-oc__hl-badge {
	display: inline-block;
	margin-bottom: 8px;
	padding: 4px 8px;
	border-radius: 999px;
	background: var(--oc-primary);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.qac-oc__hl-title {
	display: block;
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
}

.qac-oc__hl-desc {
	display: block;
	margin-top: 3px;
	font-size: 13px;
	line-height: 1.35;
	color: rgba(255, 255, 255, .78);
}

.qac-oc__hl-arrow {
	position: absolute;
	top: 50%;
	right: 12px;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, .14);
	transform: translateY(-50%);
}

/* Zones */
.qac-oc__zone {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 8px 10px;
	border-radius: 14px;
	color: var(--oc-ink);
	transition: background-color 160ms ease;
}

.qac-oc__zone:active {
	background: var(--oc-soft);
}

.qac-oc__zone-ic {
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--oc-blush-soft);
	color: var(--oc-primary);
}

.qac-oc__zone-body {
	flex: 1 1 auto;
	min-width: 0;
}

.qac-oc__zone-name {
	display: block;
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.25;
}

.qac-oc__zone-meta {
	display: block;
	margin-top: 2px;
	font-size: 12.5px;
	color: var(--oc-muted);
}

.qac-oc__zone-go {
	display: inline-flex;
	color: var(--oc-muted);
}

.qac-oc__zone[aria-current] {
	color: var(--oc-primary);
}

.qac-oc__zone[aria-current] .qac-oc__zone-go {
	color: var(--oc-primary);
}

/* ── Sections secondaires ─────────────────────────────────────────────────── */
.qac-oc__section {
	padding: 10px 22px 0;
}

.qac-oc__section .qac-oc__eyebrow {
	padding: 0;
	margin-top: 12px;
}

.qac-oc__phones {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 8px;
}

.qac-oc__phone {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	min-height: 92px;
	padding: 12px;
	border: 1px solid var(--oc-line);
	border-radius: 16px;
	background: var(--oc-white);
	color: var(--oc-ink);
	box-shadow: 0 1px 2px rgba(16, 12, 40, .04);
	transition: transform 160ms var(--oc-ease), border-color 160ms ease, background-color 160ms ease;
}

.qac-oc__phone:active {
	transform: scale(.97);
	border-color: var(--oc-blush);
	background: var(--oc-blush-soft);
}

.qac-oc__phone-ic {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--oc-primary);
	color: #fff;
}

.qac-oc__phone-zone {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--oc-muted);
}

.qac-oc__phone-num {
	margin-top: -6px;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

/* Langue */
.qac-oc__lang-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.qac-oc__lang-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--oc-line);
	border-radius: 999px;
	background: var(--oc-white);
	color: var(--oc-ink);
	font-size: 13px;
	font-weight: 700;
}

.qac-oc__lang-chip.is-current {
	background: var(--oc-ink);
	border-color: var(--oc-ink);
	color: #fff;
}

.qac-oc__lang-note {
	font-size: 12.5px;
	font-weight: 500;
	color: var(--oc-muted);
	letter-spacing: .02em;
}

/* Pied : réseaux + légal */
.qac-oc__foot {
	padding: 20px 22px 8px;
}

.qac-oc__social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.qac-oc__social-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--oc-line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
}

.qac-oc__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0 14px;
}

.qac-oc__legal a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	font-size: 12.5px;
	color: var(--oc-muted);
}

/* ── Barre d'actions (sous le pouce) ─────────────────────────────────────── */
.qac-oc__bar {
	flex: 0 0 auto;
	padding: 10px 16px calc(12px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, .92);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--oc-line);
	box-shadow: 0 -14px 32px -20px rgba(16, 12, 40, .3);
}

.qac-oc__bar-row {
	display: flex;
	gap: 10px;
}

.qac-oc__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	transition: transform 150ms var(--oc-ease), background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.qac-oc__btn:active {
	transform: scale(.97);
}

.qac-oc__btn--primary {
	flex: 1 1 auto;
	min-width: 0;
	background: var(--oc-primary);
	color: #fff;
	box-shadow: 0 12px 26px -12px rgba(158, 0, 0, .6);
}

.qac-oc__btn-label {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.qac-oc__btn--primary:active {
	box-shadow: 0 6px 14px -8px rgba(158, 0, 0, .6);
}

/* « Appeler » : pastille icône (libellé lu par les lecteurs d'écran) — deux
   libellés côte à côte ne tiennent pas dans 290 px sans rogner le CTA. */
.qac-oc__btn--call {
	flex: 0 0 52px;
	width: 52px;
	padding: 0;
	background: var(--oc-white);
	border-color: var(--oc-line);
	color: var(--oc-ink);
}

.qac-oc__btn--call[aria-expanded="true"] {
	background: var(--oc-ink);
	border-color: var(--oc-ink);
	color: #fff;
}

/* Volet « Appeler » : choix du numéro, déplié au-dessus des boutons */
.qac-oc__callsheet {
	display: grid;
	grid-template-rows: 0fr;
	visibility: hidden;
	transition: grid-template-rows 300ms var(--oc-ease), visibility 0s linear 300ms;
}

.qac-oc__callsheet.is-open {
	grid-template-rows: 1fr;
	visibility: visible;
	transition-delay: 0s;
}

.qac-oc__callsheet-in {
	min-height: 0;
	overflow: hidden;
}

.qac-oc__callsheet-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0 0 10px;
}

.qac-oc__call {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 52px;
	padding: 6px 14px 6px 10px;
	border-radius: 14px;
	background: var(--oc-soft);
	color: var(--oc-ink);
	transition: background-color 160ms ease, transform 160ms var(--oc-ease);
}

.qac-oc__call:active {
	transform: scale(.98);
	background: var(--oc-blush-soft);
}

.qac-oc__call-ic {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--oc-white);
	color: var(--oc-primary);
}

.qac-oc__call-zone {
	font-size: 14px;
	font-weight: 700;
}

.qac-oc__call-num {
	margin-left: auto;
	font-size: 14.5px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: var(--oc-primary);
}

/* ── Focus clavier ────────────────────────────────────────────────────────── */
.qac-oc :is(a, button):focus {
	outline: none;
}

.qac-oc :is(a, button):focus-visible {
	outline: 2px solid var(--oc-primary);
	outline-offset: 2px;
}

/* Lignes pleine largeur : anneau à l'intérieur (sinon 3 côtés sortent du
   panneau). Spécificité (0,3,0) > règle générale (0,2,1) — revue 20/08, M2. */
.qac-oc :is(.qac-oc__link, .qac-oc__sublink, .qac-oc__zone, .qac-oc__hl):focus-visible {
	outline-offset: -2px;
}

/* Carte sombre : l'anneau rouge (1,9:1 sur navy) passe en blanc (16:1). */
.qac-oc .qac-oc__hl:focus-visible {
	outline-color: #fff;
}

/* ── Petits et courts écrans ─────────────────────────────────────────────── */
@media (max-width: 359px) {
	.qac-oc {
		--oc-w: min(100% - 40px, 400px);
		--oc-radius: 22px;
	}

	.qac-oc__phones {
		grid-template-columns: 1fr;
	}

	.qac-oc__link {
		font-size: 17px;
	}

	.qac-oc__btn--primary .qac-oc__btn-ic {
		display: none;
	}

	.qac-oc__btn {
		font-size: 14.5px;
	}
}

@media (max-height: 600px) {
	.qac-oc__search {
		display: none;
	}

	.qac-oc__head {
		padding-top: calc(8px + env(safe-area-inset-top));
	}

	.qac-oc__link {
		min-height: 50px;
	}
}

/* ── Mouvement réduit ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
	.qac-oc__panel,
	.qac-oc__scrim,
	.qac-oc__item,
	.qac-oc__sub,
	.qac-oc__callsheet,
	.qac-oc__acc-btn svg,
	.qac-oc__more svg {
		transition: none !important;
	}

	.qac-oc__item {
		opacity: 1;
		transform: none;
	}
}
