/* ==========================================================================
   MIRANI — Refonte globale : header + footer + bannières intérieures
   Structure reprise de la maquette "mirani-refonte-autonome-v2",
   adaptée à la charte Mirani (verts #359477 / #8BC04E, logo, Barlow/Roboto).
   Chargé sur tout le site après style.css.
   ========================================================================== */

:root {
	--rfgVert: #359477;
	--rfgVert2: #8BC04E;
	--rfgVertFonce: #2b7a62;
	--rfgInk: #0A4253;
	--rfgInkDeep: #06303d;
	--rfgOmbre: 0 18px 50px rgba(10, 66, 83, .14);
}

/* ------------------------------ HEADER ------------------------------ */

.mh {
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0 40px;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(6px);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 1px 14px rgba(10, 66, 83, .10);
}

.mh-brand { display: flex; align-items: center; text-decoration: none; }
.mh-brand img { height: 44px; display: block; transition: transform .15s ease; }
.mh-brand:hover img { transform: scale(1.04); }

.mh-nav { display: flex; align-items: center; gap: 2px; }

.mh-nav > a {
	font-family: "Barlow", sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: var(--rfgInk);
	text-decoration: none;
	padding: 9px 9px;
	border-radius: 7px;
	position: relative;
	transition: color .15s ease, background-color .15s ease;
	white-space: nowrap;
}

.mh-nav > a:not(.mh-btn):hover {
	color: var(--rfgVert);
	background: rgba(53, 148, 119, .07);
}

.mh-nav > a.mh-actif:not(.mh-btn) {
	color: var(--rfgVert);
}

.mh-nav > a.mh-actif:not(.mh-btn)::after {
	content: '';
	position: absolute;
	left: 9px;
	right: 9px;
	bottom: 4px;
	height: 3px;
	border-radius: 3px;
	background: var(--rfgVert2);
}

.mh-btn {
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	border-radius: 8px;
	text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}

.mh-btn-alerte {
	background: var(--rfgInk);
	color: #fff !important;
	padding: 11px 13px !important;
	margin-left: 8px;
}

.mh-btn-alerte:hover {
	background: var(--rfgInkDeep);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(10, 66, 83, .35);
}

.mh-btn-cta {
	background: var(--rfgVert);
	color: #fff !important;
	padding: 11px 13px !important;
	margin-left: 6px;
}

.mh-btn-cta:hover {
	background: var(--rfgVertFonce);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(53, 148, 119, .35);
}

/* burger */

.mh-toggle {
	display: none;
	border: 0;
	background: none;
	padding: 10px;
	cursor: pointer;
}

.mh-toggle span {
	display: block;
	width: 26px;
	height: 3px;
	border-radius: 3px;
	background: var(--rfgInk);
	margin: 5px 0;
	transition: transform .2s ease, opacity .2s ease;
}

.mh-toggle-actif span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mh-toggle-actif span:nth-child(2) { opacity: 0; }
.mh-toggle-actif span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1500px) {
	.mh { padding: 0 22px; }
}

/* menu mobile : panneau sous le header, comme la maquette */

@media (max-width: 1300px) {

	.mh { height: 70px; padding: 0 20px; }
	.mh-brand img { height: 42px; }
	.mh-toggle { display: block; }

	.mh-nav {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		background: #fff;
		padding: 20px 5vw 25px;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		box-shadow: var(--rfgOmbre);
		border-top: 1px solid #e7efec;
	}

	.mh-nav.mh-open { display: flex; }

	.mh-nav > a {
		font-size: 18px;
		padding: 13px 10px;
	}

	.mh-nav > a.mh-actif:not(.mh-btn)::after { display: none; }

	.mh-btn-alerte, .mh-btn-cta {
		text-align: center;
		margin: 6px 0 0 !important;
		padding: 14px !important;
	}

}

/* barre mobile du bas (conservée, recolorée) */

@media (max-width: 991px) {

	.footerMobile {
		background-color: var(--rfgInk) !important;
		box-shadow: 0 -2px 12px rgba(0, 0, 0, .25);
	}

}

/* ---------------------- BANNIÈRE PAGES INTÉRIEURES ---------------------- */

.headerG2 {
	background: linear-gradient(135deg, var(--rfgInk), var(--rfgVert));
	color: #fff;
	text-align: center;
	padding: 70px 20px;
}

.headerG2 h1 {
	font-family: "Barlow", sans-serif;
	font-weight: 800;
	font-size: 44px;
	margin: 0;
}

.headerG2 h2 {
	font-family: "Barlow", sans-serif;
	font-weight: 300;
	font-size: 24px;
	margin: 12px 0 0;
	color: #d6efe4;
}

@media (max-width: 767px) {
	.headerG2 { padding: 45px 15px; }
	.headerG2 h1 { font-size: 28px; }
	.headerG2 h2 { font-size: 18px; }
}

/* ------------------------------ FOOTER ------------------------------ */

.mf {
	background: var(--rfgInk);
	border-top: 4px solid var(--rfgVert2);
	color: #c9d6da;
}

.mf a { color: inherit; }

.mf-haut {
	display: grid;
	grid-template-columns: 1.05fr .85fr 1.25fr .95fr;
	gap: 50px;
	padding: 75px 7vw 55px;
	max-width: 1500px;
	margin: 0 auto;
}

.mf-logo img { height: 58px; }

.mf-about p { margin: 20px 0 0; line-height: 1.7; }

.mf-col h4 {
	font-family: "Barlow", sans-serif;
	font-weight: 800;
	font-size: 19px;
	color: #fff;
	margin: 0 0 8px;
	padding-bottom: 12px;
	position: relative;
}

.mf-col h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 3px;
	border-radius: 3px;
	background: var(--rfgVert2);
}

.mf-col ul { list-style: none; margin: 15px 0 0; padding: 0; }

.mf-col ul li a {
	color: #c9d6da;
	text-decoration: none;
	line-height: 2.1;
	transition: color .15s ease, padding-left .15s ease;
}

.mf-col ul li a:hover {
	color: var(--rfgVert2);
	padding-left: 5px;
}

.mf-rs { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }

.mf-rs a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	text-decoration: none;
	transition: background-color .15s ease, transform .15s ease;
}

.mf-rs a:hover {
	background: var(--rfgVert);
	transform: translateY(-3px);
}

.mf-urgence p { margin: 15px 0; line-height: 1.7; }

.mf-phone {
	display: inline-block;
	font-family: "Barlow", sans-serif;
	font-weight: 800;
	font-size: 24px;
	color: var(--rfgVert2) !important;
	text-decoration: none;
	margin-bottom: 18px;
}

.mf-phone:hover { color: #a5d86e !important; }

.mf-btn {
	display: inline-block;
	background: var(--rfgVert);
	color: #fff !important;
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color .15s ease, transform .15s ease;
}

.mf-btn:hover { background: var(--rfgVertFonce); transform: translateY(-2px); }

.mf-bas {
	background: var(--rfgInkDeep);
	color: #9db3ba;
	text-align: center;
	padding: 18px 5vw;
	font-size: 14px;
}

.mf-bas a { color: #fff; text-decoration: none; }
.mf-bas a:hover { color: var(--rfgVert2); }

@media (max-width: 1050px) {
	.mf-haut { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 6vw 40px; }
}

@media (max-width: 640px) {
	.mf-haut { grid-template-columns: 1fr; }
	.mf-bas { padding-bottom: 80px; } /* espace pour la barre mobile fixe */
}

/* défilement doux vers les ancres, en tenant compte du header sticky */

html { scroll-behavior: smooth; }
section[id], div[id] { scroll-margin-top: 95px; }

/* ==========================================================================
   ESPACE ADHÉRENTS — habillage global des pages internes
   (menu, blocs, formulaires, boutons, tableaux, cartes animaux)
   ========================================================================== */

/* menu de l'espace */

.menuAdherents {
	text-align: center;
	margin: 5px 0 40px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.menuAdherents a {
	display: inline-block;
	padding: 11px 20px;
	background-color: #fff;
	border: 1px solid #dfe8e4;
	color: var(--rfgInk);
	border-radius: 30px;
	margin: 0;
	font-family: "Barlow", sans-serif;
	font-weight: 600;
	text-decoration: none;
	transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}

.menuAdherents a:hover {
	border-color: var(--rfgVert);
	color: var(--rfgVert);
}

.menuAdherents a.active {
	background-color: var(--rfgVert);
	border-color: var(--rfgVert);
	color: #fff;
	font-weight: 700;
}

.menuAdherents a[href="logout.php"] {
	border-color: #f0d6d3;
	color: #b3402f;
}

.menuAdherents a[href="logout.php"]:hover {
	background-color: #fdf0ef;
}

/* blocs */

.espaceAdherentsBloc {
	background-color: #fff;
	padding: 30px;
	border-radius: 18px;
	margin-bottom: 30px;
	border: 1px solid #dfe8e4;
	box-shadow: 0 10px 30px rgba(10, 66, 83, .06);
}

.espaceAdherentsBlocTitre,
.espaceAdherentsBlocTitre2 {
	text-align: left;
	font-family: "Barlow", sans-serif;
	font-size: 21px;
	text-transform: none;
	font-weight: 800;
	color: var(--rfgInk);
	margin-bottom: 8px;
	padding-bottom: 12px;
	position: relative;
}

.espaceAdherentsBlocTitre::after,
.espaceAdherentsBlocTitre2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 3px;
	border-radius: 3px;
	background: var(--rfgVert2);
}

.espaceAdherentsBlocContent { padding-top: 12px; }

.espaceAdherentsBlocContent p { color: #5d7078; }

/* formulaires */

.contenu .form-group { margin-bottom: 15px; }

.contenu .form-group label {
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	font-size: 13px;
	color: #5d7078;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 5px;
}

.contenu .form-control {
	border: 1px solid #d4e2dc;
	border-radius: 8px;
	padding: 11px 13px;
	color: var(--rfgInk);
}

.contenu .form-control:focus {
	border-color: var(--rfgVert);
	box-shadow: 0 0 0 3px rgba(53, 148, 119, .18);
}

.contenu .form-control[readonly] { background-color: #f7faf8; }

/* boutons */

.contenu .btn-princ, .contenu .btn.btn-princ {
	background-color: var(--rfgVert);
	border: 0;
	color: #fff;
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	padding: 12px 22px;
	border-radius: 8px;
	transition: background-color .15s ease, transform .15s ease;
}

.contenu .btn-princ:hover {
	background-color: var(--rfgVertFonce);
	color: #fff;
	transform: translateY(-2px);
}

/* tableaux (historiques adhésions, dons...) */

.contenu .table {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(10, 66, 83, .06);
}

.contenu .table thead th {
	background-color: var(--rfgInk);
	color: #fff;
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	border: 0;
}

.contenu .table td { border-color: #eef4f1; vertical-align: middle; }

/* encarts d'alerte (compte à valider, veilleur...) */

.contenu .alerteBox {
	background-color: #fdf8ec !important;
	border: 1px solid #f0e3c0;
	color: #6b5416 !important;
}

.contenu .alerteBox .espaceAdherentsBlocTitre2 { color: #6b5416; }
.contenu .alerteBox .espaceAdherentsBlocTitre2::after { background: #e5c766; }
.contenu .alerteBox .btn-princ {
	background-color: #ecb64d !important;
	color: #5C3A00 !important;
}
.contenu .alerteBox .btn-princ:hover { background-color: #e0a93d !important; }

.contenu .alert-warning {
	background-color: #fdf8ec;
	border: 1px solid #f0e3c0;
	color: #6b5416;
	border-radius: 14px;
	padding: 18px 22px;
}

/* cartes animaux (page Mes animaux) */

.contenu .animal {
	border: 1px solid #dfe8e4 !important;
	border-radius: 18px !important;
	background: #fff;
	box-shadow: 0 10px 30px rgba(10, 66, 83, .06);
	transition: transform .15s ease, border-color .15s ease;
}

.contenu a:hover .animal {
	transform: translateY(-4px);
	border-color: var(--rfgVert) !important;
}

.contenu .animalPhoto { border-radius: 12px; }

.contenu .animalNom {
	font-family: "Barlow", sans-serif;
	font-weight: 800;
	color: var(--rfgInk) !important;
}

.contenu .animalCategorie {
	background-color: #edf8f3 !important;
	border-color: var(--rfgVert) !important;
}

/* œil afficher/masquer sur les champs mot de passe */

.mdpWrap {
	position: relative;
	display: block;
}

.mdpWrap input { padding-right: 46px !important; width: 100%; }

.mdpOeil {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: none;
	color: #5d7078;
	font-size: 16px;
	padding: 8px 10px;
	cursor: pointer;
	border-radius: 8px;
	line-height: 1;
}

.mdpOeil:hover { color: var(--rfgVert); background: #edf8f3; }

/* page Mes dons : pré-propositions + défiscalisation */

.donsMontants {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.donsMontant {
	font-family: "Barlow", sans-serif;
	font-weight: 800;
	font-size: 17px;
	padding: 12px 5px;
	border: 2px solid #d4e2dc;
	border-radius: 10px;
	background: #fff;
	color: var(--rfgInk);
	cursor: pointer;
	transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

.donsMontant:hover { border-color: var(--rfgVert); }

.donsMontantActif {
	background: var(--rfgVert);
	border-color: var(--rfgVert);
	color: #fff;
}

.donsCout {
	background: #f2f9ee;
	border-left: 4px solid var(--rfgVert2);
	border-radius: 0 10px 10px 0;
	padding: 12px 15px;
	font-size: 15px;
	margin: 16px 0 5px;
}

.donsCout strong { color: var(--rfgVert); font-size: 17px; }

.donsNote { font-size: 13px; color: #5d7078; margin: 14px 0 0; text-align: center; }

.donsDefisc { background: #f2f9ee !important; border-color: var(--rfgVert2) !important; }

.donsDefiscTable { background: #fff; }
.donsDefiscTable td strong { color: var(--rfgVert); }

.donsBadge {
	display: inline-block;
	font-family: "Barlow", sans-serif;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 11px;
	border-radius: 30px;
	white-space: nowrap;
}

.donsBadgeOk { background: #edf8f3; color: var(--rfgVert); }
.donsBadgeAttente { background: #fdf8ec; color: #9a7b1c; }
.donsBadgeAnnule { background: #f1f3f4; color: #5d7078; }

/* notes de champs + bloc danger (suppression) */

.contenu .champNote { font-size: 13px; color: #5d7078; font-style: italic; margin-top: 4px; }

.contenu .blocDanger { border-color: #f0d6d3 !important; }
.contenu .blocDanger .espaceAdherentsBlocTitre2 { color: #b3402f; }
.contenu .blocDanger .espaceAdherentsBlocTitre2::after { background: #d9534f; }

.contenu .btnDanger {
	background-color: #fdf0ef;
	color: #b3402f;
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	border: 1px solid #f0d6d3;
	border-radius: 8px;
	padding: 12px 22px;
	width: 100%;
}

.contenu .btnDanger:hover { background-color: #f9dedb; color: #b3402f; }

/* ==========================================================================
   ESPACE ADHÉRENTS — page "Mes animaux"
   ========================================================================== */

.mesanimauxHeader {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.mesanimauxHeader h2 {
	font-family: "Barlow", sans-serif;
	font-weight: 800;
	font-size: 27px;
	margin: 0 0 5px;
	color: var(--rfgInk);
}

.mesanimauxHeader p { color: #5d7078; margin: 0; }

.mesanimauxGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.mesanimauxCard {
	display: block;
	background: #fff;
	border: 1px solid #dfe8e4;
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 10px 26px rgba(10, 66, 83, .06);
	transition: transform .15s ease, border-color .15s ease;
}

.mesanimauxCard:hover {
	transform: translateY(-4px);
	border-color: var(--rfgVert);
	text-decoration: none;
}

.mesanimauxPhoto {
	height: 190px;
	background-size: cover;
	background-position: center;
	background-color: #eef4f1;
	position: relative;
}

.mesanimauxBadge {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: #fff;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(10, 66, 83, .18);
}

.mesanimauxBadge img { width: 19px; }

.mesanimauxRuban {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #d9534f;
	color: #fff;
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	font-size: 12px;
	padding: 5px 10px;
	border-radius: 30px;
}

.mesanimauxCardAlerte { border-color: #f0c6c2; }

.mesanimauxCorps { padding: 18px 20px 20px; }

.mesanimauxNom {
	font-family: "Barlow", sans-serif;
	font-weight: 800;
	font-size: 19px;
	color: var(--rfgInk);
	text-transform: none;
}

.mesanimauxRace { color: #5d7078; font-size: 13.5px; margin: 3px 0 12px; }

.mesanimauxLien {
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: var(--rfgVert);
}

/* tuile "ajouter un animal", en fin de grille */

.mesanimauxAjouter {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 230px;
	border: 2px dashed #c7ddd3;
	border-radius: 18px;
	color: var(--rfgVert);
	text-decoration: none;
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	transition: border-color .15s ease, background-color .15s ease;
}

.mesanimauxAjouter:hover {
	border-color: var(--rfgVert);
	background: #f2f9ee;
	color: var(--rfgVert);
	text-decoration: none;
}

.mesanimauxAjouterIcone {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #edf8f3;
	color: var(--rfgVert);
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* état vide */

.mesanimauxVide {
	text-align: center;
	max-width: 480px;
	margin: 30px auto;
	padding: 50px 30px;
	background: #fff;
	border: 1px solid #dfe8e4;
	border-radius: 18px;
}

.mesanimauxVideIcone { font-size: 48px; margin-bottom: 14px; }

.mesanimauxVide h3 {
	font-family: "Barlow", sans-serif;
	font-weight: 800;
	font-size: 21px;
	color: var(--rfgInk);
	margin: 0 0 10px;
}

.mesanimauxVide p { color: #5d7078; margin-bottom: 20px; }

@media (max-width: 900px) {
	.mesanimauxGrid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	.mesanimauxGrid { grid-template-columns: 1fr; }
	.mesanimauxHeader { flex-direction: column; align-items: stretch; }
	.mesanimauxHeader .btn-princ { text-align: center; }
}

/* ==========================================================================
   ESPACE ADHÉRENTS — boutons "pastille" (catégorie, sexe...) avec transition
   S'applique partout où la structure .form-radio est utilisée (ajout/
   modification d'animal, signalement d'un animal trouvé...).
   ========================================================================== */

.contenu .rf-toggle-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.contenu .form-radio {
	position: relative;
}

.contenu .form-radio input[type="radio"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.contenu .form-radio span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 12px 24px;
	border: 2px solid #d4e2dc;
	border-radius: 30px;
	background: #fff;
	color: var(--rfgInk);
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
}

.contenu .form-radio span img {
	width: 22px;
	transition: filter .18s ease;
}

.contenu .form-radio:hover span {
	border-color: var(--rfgVert);
}

.contenu .form-radio input:checked + span {
	background: var(--rfgVert);
	border-color: var(--rfgVert);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(53, 148, 119, .28);
}

.contenu .form-radio input:checked + span img {
	filter: brightness(0) invert(1);
}

.contenu .form-radio input:focus-visible + span {
	outline: 2px solid var(--rfgVert);
	outline-offset: 2px;
}

.contenu .form-radio input:active + span {
	transform: translateY(-2px) scale(.97);
}

/* ==========================================================================
   ESPACE ADHÉRENTS — bloc "Connexion sur mobile" (QR code)
   ========================================================================== */

.qrBloc { margin-top: 30px; }

.qrWrap {
	display: flex;
	align-items: center;
	gap: 34px;
	flex-wrap: wrap;
}

.qrImageCadre {
	flex-shrink: 0;
	width: 244px;
	height: 244px;
	background: #fff;
	border: 2px solid #dfe8e4;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 10px 26px rgba(10, 66, 83, .07);
}

.qrImage svg, .qrImage canvas { display: block; border-radius: 10px; }

.qrChargement {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	font-size: 13.5px;
	color: #5d7078;
}

.qrInfos { flex: 1; min-width: 240px; }

.qrInfos > p { color: #5d7078; margin: 0 0 14px; }

.qrPoints {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
}

.qrPoints li {
	padding: 8px 0 8px 26px;
	position: relative;
	border-bottom: 1px solid #eef4f1;
	font-size: 14.5px;
	color: var(--rfgInk);
}

.qrPoints li:before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: var(--rfgVert);
	font-weight: 800;
}

.qrStatut {
	display: inline-block;
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	font-size: 13.5px;
	color: var(--rfgVert);
	background: #edf8f3;
	padding: 7px 14px;
	border-radius: 30px;
}

@media (max-width: 560px) {
	.qrWrap { justify-content: center; text-align: center; }
	.qrImageCadre { margin: 0 auto; }
	.qrPoints li { text-align: left; }
}
