/* ============================================================
   Bloc local ville + cartes dating — premium
   ============================================================ */

.cs-local-lite {
	position: relative;
	clear: both;
	display: grid;
	grid-template-columns: minmax(220px, 36%) 1fr;
	align-items: stretch;
	gap: 0;
	box-sizing: border-box;
	margin: 26px 0;
	border-radius: 26px;
	background:
		radial-gradient(circle at 12% 16%, rgba(255,255,255,.22) 0, rgba(255,255,255,0) 32%),
		radial-gradient(circle at 92% 8%, rgba(240,14,220,.34) 0, rgba(240,14,220,0) 38%),
		linear-gradient(135deg, #050006 0%, #190016 26%, #42003f 54%, #7a0063 78%, #bf0899 100%);
	border: 1px solid rgba(255,255,255,.18);
	box-shadow:
		0 20px 60px rgba(80,0,70,.28),
		inset 0 1px 0 rgba(255,255,255,.18);
	overflow: hidden;
	isolation: isolate;
	animation: cs-local-lite-in .45s ease both;
}

.cs-local-lite::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(120deg, transparent 0%, rgba(255,255,255,.13) 38%, transparent 72%);
	background-size: 220% 100%;
	animation: cs-local-lite-shimmer 5.4s linear infinite;
	opacity: .42;
}

.cs-local-lite__photo {
	position: relative;
	min-height: 260px;
	background: #190016;
	overflow: hidden;
}

.cs-local-lite__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(5,0,6,0) 45%, rgba(5,0,6,.62) 100%),
		radial-gradient(circle at 75% 18%, rgba(240,14,220,.28) 0, rgba(240,14,220,0) 36%);
}

.cs-local-lite__photo img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
	object-position: center;
	filter: saturate(1.05) contrast(1.04);
	transition:
		transform .35s ease,
		filter .35s ease;
}

.cs-local-lite:hover .cs-local-lite__photo img {
	transform: scale(1.045);
	filter: saturate(1.12) contrast(1.06) brightness(1.03);
}

.cs-local-lite__body {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	padding: clamp(20px, 3vw, 34px);
	text-align: center;
}

.cs-local-lite__body h3 {
	margin: 0 auto 12px;
	max-width: 760px;
	color: #fff;
	font-size: clamp(21px, 3vw, 34px);
	font-weight: 950;
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-shadow: 0 2px 12px rgba(0,0,0,.50);
}

.cs-local-lite__body p {
	max-width: 720px;
	margin: 0 auto 18px;
	color: rgba(255,255,255,.90);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.7;
	text-align: center;
	text-shadow: 0 1px 4px rgba(0,0,0,.32);
}

.cs-local-lite__chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 auto;
}

.cs-local-lite__chips span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,.13);
	border: 1px solid rgba(255,255,255,.22);
	color: #fff;
	font-size: 12px;
	font-weight: 950;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .035em;
	box-shadow:
		0 8px 20px rgba(0,0,0,.14),
		inset 0 1px 0 rgba(255,255,255,.14);
}

.cs-local-lite__chips span:first-child::before {
	content: "📍";
	margin-right: 6px;
	font-size: 13px;
	line-height: 1;
}

.cs-local-lite__chips span:last-child::before {
	content: "👥";
	margin-right: 6px;
	font-size: 13px;
	line-height: 1;
}

.cs-local-lite__chips a {
	color: #fff !important;
	text-decoration: none;
}

.cs-local-lite__chips a:hover,
.cs-local-lite__chips a:focus {
	color: #fff !important;
	text-decoration: underline;
}

.cs-local-lite.join {
	cursor: pointer;
}

.cs-local-lite.join:focus {
	outline: 0;
	box-shadow:
		0 0 0 3px rgba(255,255,255,.85),
		0 0 0 6px rgba(240,14,220,.35),
		0 18px 46px rgba(80,0,70,.20);
}

.cs-local-lite.join:hover {
	transform: translateY(-2px);
}

/* Cartes dating */
.cs-dating-cards {
	position: relative;
	clear: both;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 24px 0;
}

.cs-dating-card {
	position: relative;
	box-sizing: border-box;
	min-height: 170px;
	padding: 20px 16px 18px;
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(255,255,255,.99) 0%, rgba(255,242,253,.97) 100%);
	border: 1px solid rgba(240,14,220,.18);
	box-shadow:
		0 14px 36px rgba(80,0,70,.14),
		inset 0 1px 0 rgba(255,255,255,.9);
	text-align: center;
	overflow: hidden;
	transition:
		transform .18s ease,
		box-shadow .18s ease,
		border-color .18s ease,
		background .18s ease;
	animation: cs-dating-card-in .42s ease both;
}

.cs-dating-card:nth-child(1) { animation-delay: .03s; }
.cs-dating-card:nth-child(2) { animation-delay: .06s; }
.cs-dating-card:nth-child(3) { animation-delay: .09s; }

.cs-dating-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: linear-gradient(90deg, #050006 0%, #7a0063 54%, #f00edc 100%);
	opacity: .92;
}

.cs-dating-card::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 88% 10%, rgba(240,14,220,.12) 0, rgba(240,14,220,0) 36%);
}

.cs-dating-card:hover {
	transform: translateY(-3px);
	border-color: rgba(240,14,220,.34);
	background:
		linear-gradient(135deg, #fff 0%, #fff0fd 100%);
	box-shadow:
		0 18px 44px rgba(80,0,70,.22),
		0 0 24px rgba(240,14,220,.12),
		inset 0 1px 0 rgba(255,255,255,.95);
}

.cs-dating-card strong {
	position: relative;
	z-index: 2;
	display: block;
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 950;
	line-height: 1.22;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .04em;
	background: linear-gradient(135deg, #050006 0%, #3b0035 44%, #8a0070 76%, #bf0899 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.cs-dating-card p {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	color: #493448;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.62;
	text-align: center;
}

@keyframes cs-local-lite-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cs-local-lite-shimmer {
	0% {
		background-position: 220% 0;
	}
	100% {
		background-position: -220% 0;
	}
}

@keyframes cs-dating-card-in {
	from {
		opacity: 0;
		transform: translateY(10px) scale(.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 900px) {
	.cs-local-lite {
		grid-template-columns: 1fr;
	}

	.cs-local-lite__photo {
		min-height: 240px;
	}

	.cs-local-lite__photo img {
		min-height: 240px;
	}

	.cs-local-lite__photo::after {
		background:
			linear-gradient(180deg, rgba(5,0,6,0) 48%, rgba(5,0,6,.70) 100%),
			radial-gradient(circle at 80% 18%, rgba(240,14,220,.26) 0, rgba(240,14,220,0) 36%);
	}

	.cs-dating-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.cs-local-lite {
		margin: 20px 0;
		border-radius: 22px;
	}

	.cs-local-lite__photo,
	.cs-local-lite__photo img {
		min-height: 210px;
	}

	.cs-local-lite__body {
		padding: 18px 12px;
	}

	.cs-local-lite__body h3 {
		font-size: 19px;
	}

	.cs-local-lite__body p {
		font-size: 13px;
		line-height: 1.6;
	}

	.cs-local-lite__chips {
		gap: 6px;
	}

	.cs-local-lite__chips span {
		width: 100%;
		min-height: 38px;
		font-size: 11px;
	}

	.cs-dating-cards {
		margin: 20px 0;
		gap: 10px;
	}

	.cs-dating-card {
		min-height: initial;
		padding: 18px 14px 16px;
		border-radius: 20px;
	}

	.cs-dating-card strong {
		font-size: 15px;
	}

	.cs-dating-card p {
		font-size: 13px;
		line-height: 1.55;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cs-local-lite,
	.cs-local-lite::before,
	.cs-local-lite__photo img,
	.cs-dating-card {
		animation: none;
		transition: none;
	}
}

.cs-city-enrich {
	clear: both;
	margin: 16px 0 20px;
	padding: 12px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	color: #444;
	font-size: 14px;
	line-height: 1.55;
}

.cs-city-enrich p {
	margin: 0 0 10px;
}

.cs-city-enrich p:last-child {
	margin-bottom: 0;
}

.cs-cougar-map-wrap {
	clear: both;
	margin: 0;
	padding: 12px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
}

.cs-cougar-map-wrap p {
	margin: 0 0 10px;
	text-align: center;
	font-size: 14px;
	line-height: 1.45;
	color: #444;
}

#cs-cougar-map {
	width: 100%;
	height: 310px;
	border-radius: 8px;
	overflow: hidden;
	background: #f4f4f4;
}

.cs-map-face-marker {
	background: transparent;
	border: 0;
}

.cs-map-face-img {
	display: block;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #fff;
	box-shadow: 0 3px 12px rgba(0,0,0,.35);
	background: #fff;
}

.cs-map-face-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cs-nearby-dating {
	position: relative;
	clear: both;
	box-sizing: border-box;
	margin: 26px 0;
	padding: clamp(14px, 2vw, 22px);
	border-radius: 24px;
	background:
		radial-gradient(circle at 14% 16%, rgba(255,255,255,.32) 0, rgba(255,255,255,0) 32%),
		radial-gradient(circle at 92% 8%, rgba(240,14,220,.34) 0, rgba(240,14,220,0) 36%),
		linear-gradient(135deg, #0d0010 0%, #42003f 36%, #9b007e 70%, #f00edc 100%);
	border: 1px solid rgba(255,255,255,.18);
	box-shadow:
		0 18px 54px rgba(80,0,70,.26),
		inset 0 1px 0 rgba(255,255,255,.18);
	overflow: hidden;
	isolation: isolate;
	animation: cs-fadeup .45s ease both;
}

.cs-nearby-dating::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.15) 38%, transparent 72%);
	background-size: 220% 100%;
	animation: cs-shimmer 4.8s linear infinite;
	opacity: .48;
}

.cs-nearby-dating h2 {
	position: relative;
	float: none;
	box-sizing: border-box;
	width: auto;
	margin: 0 0 14px !important;
	padding: 14px 18px !important;
	border-radius: 18px;
	background:
		radial-gradient(circle at 16% 18%, rgba(255,255,255,.18) 0, rgba(255,255,255,0) 30%),
		linear-gradient(135deg, #050006 0%, #190016 24%, #42003f 52%, #7a0063 78%, #bf0899 100%) !important;
	color: #fff !important;
	font-size: clamp(17px, 2.1vw, 23px) !important;
	line-height: 1.25;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .045em;
	text-shadow: 0 2px 10px rgba(0,0,0,.48);
	box-shadow:
		0 10px 28px rgba(30,0,28,.35),
		inset 0 1px 0 rgba(255,255,255,.16);
}

.cs-nearby-dating p {
	position: relative;
	max-width: 780px;
	margin: 0 auto 13px;
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255,255,255,.90);
	text-shadow: 0 1px 4px rgba(0,0,0,.28);
}

.cs-nearby-dating__hint {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto 16px !important;
	padding: 8px 13px;
	border-radius: 999px;
	background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.24);
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: .01em;
	box-shadow:
		0 8px 20px rgba(0,0,0,.12),
		inset 0 1px 0 rgba(255,255,255,.18);
}

.cs-nearby-dating__hint::before {
	content: "📍";
	margin-right: 7px;
	font-size: 14px;
	line-height: 1;
}

.cs-nearby-dating ul {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cs-nearby-dating li {
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 96px;
	padding: 15px 14px 13px;
	border-radius: 18px;
	text-align: center;
	background:
		linear-gradient(135deg, rgba(255,255,255,.99) 0%, rgba(255,242,253,.97) 100%);
	border: 1px solid rgba(255,255,255,.66);
	box-shadow:
		0 10px 28px rgba(0,0,0,.15),
		inset 0 1px 0 rgba(255,255,255,.9);
	overflow: hidden;
	cursor: pointer;
	transition:
		transform .18s ease,
		box-shadow .18s ease,
		border-color .18s ease,
		background .18s ease;
}

.cs-nearby-dating li::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, #f00edc 0%, #bf0899 100%);
	opacity: .82;
}

.cs-nearby-dating li:hover {
	transform: translateY(-2px);
	border-color: rgba(240,14,220,.32);
	background:
		linear-gradient(135deg, #fff 0%, #fff0fd 100%);
	box-shadow:
		0 15px 36px rgba(80,0,70,.22),
		inset 0 1px 0 rgba(255,255,255,.95);
}

.cs-nearby-dating li a {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0;
	text-align: center;
	font-size: 13px;
	font-weight: 950;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: .035em;
	text-decoration: none;
	text-shadow: none;
	background: linear-gradient(135deg, #09000b 0%, #3b0035 42%, #8a0070 76%, #bf0899 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.cs-nearby-dating li a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	border-radius: inherit;
}

.cs-nearby-dating li a:hover,
.cs-nearby-dating li a:focus {
	background: linear-gradient(135deg, #0d0010 0%, #5a0050 38%, #bf0899 74%, #f00edc 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-decoration: none;
	text-shadow: none;
}

.cs-nearby-dating li span {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: 10px auto 0;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(240,14,220,.10);
	color: #8a0070;
	font-size: 12px;
	font-weight: 950;
	line-height: 1;
	pointer-events: none;
}

.cs-nearby-dating li span::before {
	content: "↗";
	margin-right: 5px;
	font-size: 12px;
	line-height: 1;
}

@media (max-width: 900px) {
	.cs-nearby-dating ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.cs-nearby-dating {
		margin: 20px 0;
		padding: 12px;
		border-radius: 20px;
	}

	.cs-nearby-dating h2 {
		margin-bottom: 11px !important;
		padding: 12px !important;
		border-radius: 15px;
	}

	.cs-nearby-dating p {
		font-size: 13px;
		line-height: 1.55;
	}

	.cs-nearby-dating__hint {
		width: auto;
		margin-bottom: 12px !important;
		text-align: center;
	}

	.cs-nearby-dating ul {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.cs-nearby-dating li {
		min-height: initial;
		padding: 12px 12px 11px;
		border-radius: 15px;
	}

	.cs-nearby-dating li a {
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cs-nearby-dating,
	.cs-nearby-dating::before,
	.cs-nearby-dating li {
		animation: none;
		transition: none;
	}
}

.cs-map-cta {
	clear: both;
	margin: 12px 0 18px;
	padding: 12px;
	text-align: center;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	box-shadow: 0 3px 12px rgba(0,0,0,.05);
}

.cs-map-cta strong {
	display: block;
	margin-bottom: 5px;
	color: #fff;
	font-size: 17px;
}

.cs-map-cta p {
	margin: 0 0 10px;
	font-size: 14px;
	color: #444;
}

.cs-map-cta a{
	display: inline-block;
	padding: 9px 15px;
	border-radius: 999px;
	background: #f00edc;
	color: #fff;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.cs-map-cta a:hover {
	color: #fff;
	text-decoration: none;
	filter: brightness(.95);
}

.cs-nearby-dating__hint {
	font-weight: 700;
	color: #f00edc !important;
}


.cs-local-lite__chips span a {
	color: #fff;
	text-decoration: none;
}

.cs-local-lite__chips span a:hover {
	color: #fff;
	text-decoration: underline;
}

@media (max-width: 767px) {
	.cs-local-lite {
		grid-template-columns: 1fr;
	}

	.cs-local-lite__photo img {
		height: 190px;
	}

	.cs-dating-cards,
	.cs-nearby-dating ul,
	.cs-local-incentive__steps,
	.cs-local-quality__grid {	
		grid-template-columns: 1fr;
	}
}

.cs-cougar-map-wrap {
	clear: both;
	padding: 12px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
}

.cs-cougar-map-wrap p {
	margin: 0 0 10px;
	text-align: center;
	font-size: 14px;
	line-height: 1.45;
	color: #444;
}

#cs-cougar-map {
	width: 100%;
	height: 310px;
	border-radius: 8px;
	overflow: hidden;
	background: #f4f4f4;
}

.cs-map-face-marker {
	background: transparent;
	border: 0;
}

.cs-map-face-img {
	display: block;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #fff;
	box-shadow: 0 3px 12px rgba(0,0,0,.35);
	background: #fff;
	cursor: pointer;
	transition: transform .15s ease;
}

.cs-map-face-img:hover {
	transform: scale(1.08);
}

.cs-map-face-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* ============================================================
   Incentive local + qualité rencontre ville — premium
   ============================================================ */

.cs-local-incentive,
.cs-local-quality {
	position: relative;
	clear: both;
	box-sizing: border-box;
	margin: 26px 0;
	padding: clamp(18px, 3vw, 30px);
	border-radius: 26px;
	background:
		radial-gradient(circle at 12% 16%, rgba(255,255,255,.22) 0, rgba(255,255,255,0) 32%),
		radial-gradient(circle at 92% 8%, rgba(240,14,220,.34) 0, rgba(240,14,220,0) 38%),
		linear-gradient(135deg, #050006 0%, #190016 26%, #42003f 54%, #7a0063 78%, #bf0899 100%);
	border: 1px solid rgba(255,255,255,.18);
	box-shadow:
		0 20px 60px rgba(80,0,70,.28),
		inset 0 1px 0 rgba(255,255,255,.18);
	text-align: center;
	overflow: hidden;
	isolation: isolate;
	animation: cs-local-premium-in .45s ease both;
}

.cs-local-incentive::before,
.cs-local-quality::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(120deg, transparent 0%, rgba(255,255,255,.13) 38%, transparent 72%);
	background-size: 220% 100%;
	animation: cs-local-premium-shimmer 5.4s linear infinite;
	opacity: .42;
}

.cs-local-incentive::after,
.cs-local-quality::after {
	content: "";
	position: absolute;
	inset: 14px;
	z-index: -1;
	pointer-events: none;
	border-radius: 22px;
	border: 1px solid rgba(255,255,255,.10);
	box-shadow:
		inset 0 0 46px rgba(240,14,220,.15),
		0 0 46px rgba(240,14,220,.10);
}

/* Titres */
.cs-local-incentive h2,
.cs-local-quality h2 {
	position: relative;
	float: none;
	box-sizing: border-box;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto 14px !important;
	padding: 14px 20px !important;
	border-radius: 999px;
	background:
		radial-gradient(circle at 16% 18%, rgba(255,255,255,.18) 0, rgba(255,255,255,0) 30%),
		linear-gradient(135deg, #050006 0%, #190016 24%, #42003f 52%, #7a0063 78%, #bf0899 100%) !important;
	border: 1px solid rgba(255,255,255,.14);
	color: #fff !important;
	font-size: clamp(18px, 2.2vw, 25px) !important;
	font-weight: 950;
	line-height: 1.22;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .045em;
	text-shadow: 0 2px 10px rgba(0,0,0,.48);
	box-shadow:
		0 10px 28px rgba(30,0,28,.35),
		inset 0 1px 0 rgba(255,255,255,.16);
}

/* Intro incentive */
.cs-local-incentive > p {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin: 0 auto 20px;
	color: rgba(255,255,255,.91);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.7;
	text-align: center;
	text-shadow: 0 1px 4px rgba(0,0,0,.32);
}

/* Étapes incentive */
.cs-local-incentive__steps {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 20px 0;
}

.cs-local-incentive__step {
	position: relative;
	box-sizing: border-box;
	min-height: 180px;
	padding: 20px 16px 18px;
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(255,255,255,.99) 0%, rgba(255,242,253,.97) 100%);
	border: 1px solid rgba(255,255,255,.66);
	box-shadow:
		0 12px 32px rgba(0,0,0,.16),
		inset 0 1px 0 rgba(255,255,255,.9);
	text-align: center;
	overflow: hidden;
	transition:
		transform .18s ease,
		box-shadow .18s ease,
		border-color .18s ease,
		background .18s ease;
	animation: cs-local-card-in .42s ease both;
}

.cs-local-incentive__step:nth-child(1) { animation-delay: .03s; }
.cs-local-incentive__step:nth-child(2) { animation-delay: .06s; }
.cs-local-incentive__step:nth-child(3) { animation-delay: .09s; }

.cs-local-incentive__step::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: linear-gradient(90deg, #050006 0%, #7a0063 54%, #f00edc 100%);
	opacity: .92;
}

.cs-local-incentive__step:hover {
	transform: translateY(-3px);
	border-color: rgba(240,14,220,.34);
	background:
		linear-gradient(135deg, #fff 0%, #fff0fd 100%);
	box-shadow:
		0 18px 44px rgba(80,0,70,.22),
		0 0 24px rgba(240,14,220,.12),
		inset 0 1px 0 rgba(255,255,255,.95);
}

.cs-local-incentive__step strong {
	position: relative;
	z-index: 2;
	display: block;
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 950;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: .035em;
	background: linear-gradient(135deg, #050006 0%, #3b0035 44%, #8a0070 76%, #bf0899 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.cs-local-incentive__step p {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	color: #493448;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.62;
}

/* CTA incentive */
.cs-local-incentive__cta {
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 52px;
	margin: 2px auto 0;
	padding: 14px 28px;
	border-radius: 999px;
	background:
		linear-gradient(135deg, #fff 0%, #fff2fd 100%);
	border: 1px solid rgba(255,255,255,.70);
	color: #8a0070 !important;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .035em;
	box-shadow:
		0 14px 34px rgba(0,0,0,.24),
		0 0 22px rgba(240,14,220,.16),
		inset 0 1px 0 rgba(255,255,255,.95);
	transition:
		transform .18s ease,
		box-shadow .18s ease,
		filter .18s ease,
		color .18s ease;
}

.cs-local-incentive__cta::before {
	content: "🔥";
	margin-right: 8px;
	font-size: 16px;
	line-height: 1;
}

.cs-local-incentive__cta:hover,
.cs-local-incentive__cta:focus {
	color: #bf0899 !important;
	text-decoration: none;
	transform: translateY(-2px);
	filter: brightness(1.04);
	box-shadow:
		0 18px 42px rgba(0,0,0,.30),
		0 0 30px rgba(240,14,220,.26),
		inset 0 1px 0 rgba(255,255,255,.96);
	outline: 0;
}

/* Qualité locale */
.cs-local-quality__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.cs-local-quality__item {
	position: relative;
	box-sizing: border-box;
	min-height: 185px;
	padding: 20px 16px 18px;
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(255,255,255,.99) 0%, rgba(255,242,253,.97) 100%);
	border: 1px solid rgba(255,255,255,.66);
	box-shadow:
		0 12px 32px rgba(0,0,0,.16),
		inset 0 1px 0 rgba(255,255,255,.9);
	text-align: center;
	overflow: hidden;
	transition:
		transform .18s ease,
		box-shadow .18s ease,
		border-color .18s ease,
		background .18s ease;
	animation: cs-local-card-in .42s ease both;
}

.cs-local-quality__item:nth-child(1) { animation-delay: .03s; }
.cs-local-quality__item:nth-child(2) { animation-delay: .06s; }
.cs-local-quality__item:nth-child(3) { animation-delay: .09s; }
.cs-local-quality__item:nth-child(4) { animation-delay: .12s; }

.cs-local-quality__item::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: linear-gradient(180deg, #f00edc 0%, #bf0899 48%, #5a0050 100%);
	opacity: .9;
	transition: width .18s ease, opacity .18s ease;
}

.cs-local-quality__item::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 88% 12%, rgba(240,14,220,.11) 0, rgba(240,14,220,0) 36%);
}

.cs-local-quality__item:hover {
	transform: translateY(-3px);
	border-color: rgba(240,14,220,.34);
	background:
		linear-gradient(135deg, #fff 0%, #fff0fd 100%);
	box-shadow:
		0 18px 44px rgba(80,0,70,.22),
		0 0 24px rgba(240,14,220,.12),
		inset 0 1px 0 rgba(255,255,255,.95);
}

.cs-local-quality__item:hover::before {
	width: 8px;
	opacity: 1;
}

.cs-local-quality__item strong {
	position: relative;
	z-index: 2;
	display: block;
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 950;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: .035em;
	background: linear-gradient(135deg, #050006 0%, #3b0035 44%, #8a0070 76%, #bf0899 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.cs-local-quality__item p {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	color: #493448;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.62;
}

/* Animations */
@keyframes cs-local-premium-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cs-local-card-in {
	from {
		opacity: 0;
		transform: translateY(10px) scale(.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes cs-local-premium-shimmer {
	0% {
		background-position: 220% 0;
	}
	100% {
		background-position: -220% 0;
	}
}

/* Responsive */
@media (max-width: 900px) {
	.cs-local-incentive__steps,
	.cs-local-quality__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.cs-local-incentive,
	.cs-local-quality {
		margin: 20px 0;
		padding: 16px 12px;
		border-radius: 22px;
	}

	.cs-local-incentive h2,
	.cs-local-quality h2 {
		width: 100%;
		padding: 12px 14px !important;
		border-radius: 16px;
		font-size: 17px !important;
	}

	.cs-local-incentive > p {
		font-size: 13px;
		line-height: 1.6;
	}

	.cs-local-incentive__steps,
	.cs-local-quality__grid {
		gap: 10px;
		margin-top: 14px;
	}

	.cs-local-incentive__step,
	.cs-local-quality__item {
		min-height: initial;
		padding: 18px 14px 16px;
		border-radius: 18px;
	}

	.cs-local-incentive__step strong,
	.cs-local-quality__item strong {
		font-size: 14px;
	}

	.cs-local-incentive__step p,
	.cs-local-quality__item p {
		font-size: 13px;
		line-height: 1.55;
	}

	.cs-local-incentive__cta {
		width: 100%;
		min-height: 48px;
		padding: 14px 16px;
		border-radius: 16px;
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cs-local-incentive,
	.cs-local-quality,
	.cs-local-incentive::before,
	.cs-local-quality::before,
	.cs-local-incentive__step,
	.cs-local-quality__item,
	.cs-local-incentive__cta {
		animation: none;
		transition: none;
	}
}


/* Region / Dep */

#cs-zone-map {
	display: block;
	width: 100%;
	min-height: 330px;
	height: 330px;
	border-radius: 8px;
	overflow: hidden;
	background: #f4f4f4;
}

.cs-zone-map-wrap {
	clear: both;
	margin: 18px 0;
	padding: 12px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
}

.cs-zone-map-wrap p {
	margin: 0 0 10px;
	text-align: center;
	font-size: 14px;
	line-height: 1.45;
	color: #444;
}

.cs-zone-profile-strip {
	clear: both;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	margin: 12px 0 18px;
}

.cs-zone-profile {
	display: block;
	padding: 7px;
	text-align: center;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	text-decoration: none;
}

.cs-zone-profile img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 7px;
	margin-bottom: 5px;
}

.cs-zone-profile span {
	display: block;
	color: #333;
	font-size: 13px;
	font-weight: 700;
}

@media (max-width: 767px) {

	.cs-zone-profile-strip {
		grid-template-columns: repeat(2, 1fr);
	}

	#cs-zone-map {
		min-height: 280px;
		height: 280px;
	}
}

/* Top villes région */

.cs-region-top-cities {
	clear: both;
	margin: 18px 0;
	padding: 12px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	box-shadow: 0 3px 12px rgba(0,0,0,.05);
}

.cs-region-top-cities p {
	margin: 0 0 12px;
	text-align: center;
	font-size: 14px;
	line-height: 1.45;
	color: #444;
}

.cs-region-top-cities ol {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.cs-region-top-cities li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cs-region-top-cities li a {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 2px 8px;
	align-items: center;
	padding: 9px;
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 8px;
	color: #333;
	text-decoration: none;
}

.cs-region-top-cities li a:hover {
	background: #fff;
	border-color: #f00edc;
	text-decoration: none;
}

.cs-region-top-cities__rank {
	grid-row: span 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #f00edc;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.cs-region-top-cities__name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	color: #333;
}

.cs-region-top-cities__meta {
	display: block;
	font-size: 11px;
	line-height: 1.25;
	color: #777;
}

@media (max-width: 767px) {
	.cs-region-top-cities ol {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   Tchat local avant rencontre — premium
   ============================================================ */

.cs-online-local {
	position: relative;
	clear: both;
	box-sizing: border-box;
	margin: 26px 0;
	padding: clamp(20px, 3vw, 32px);
	border-radius: 26px;
	background:
		radial-gradient(circle at 14% 18%, rgba(255,255,255,.24) 0, rgba(255,255,255,0) 32%),
		radial-gradient(circle at 92% 8%, rgba(240,14,220,.36) 0, rgba(240,14,220,0) 38%),
		linear-gradient(135deg, #050006 0%, #190016 26%, #42003f 54%, #7a0063 78%, #bf0899 100%);
	border: 1px solid rgba(255,255,255,.18);
	box-shadow:
		0 20px 60px rgba(80,0,70,.28),
		inset 0 1px 0 rgba(255,255,255,.18);
	text-align: center;
	overflow: hidden;
	isolation: isolate;
	animation: cs-online-local-in .45s ease both;
}

.cs-online-local::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(120deg, transparent 0%, rgba(255,255,255,.14) 38%, transparent 72%);
	background-size: 220% 100%;
	animation: cs-online-local-shimmer 5.2s linear infinite;
	opacity: .42;
}

.cs-online-local::after {
	content: "";
	position: absolute;
	inset: 14px;
	z-index: -1;
	pointer-events: none;
	border-radius: 22px;
	border: 1px solid rgba(255,255,255,.10);
	box-shadow:
		inset 0 0 46px rgba(240,14,220,.15),
		0 0 46px rgba(240,14,220,.10);
}

.cs-online-local h2 {
	position: relative;
	float: none;
	box-sizing: border-box;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto 14px !important;
	padding: 14px 20px !important;
	border-radius: 999px;
	background:
		radial-gradient(circle at 16% 18%, rgba(255,255,255,.18) 0, rgba(255,255,255,0) 30%),
		linear-gradient(135deg, #050006 0%, #190016 24%, #42003f 52%, #7a0063 78%, #bf0899 100%) !important;
	border: 1px solid rgba(255,255,255,.14);
	color: #fff !important;
	font-size: clamp(18px, 2.2vw, 25px) !important;
	font-weight: 950;
	line-height: 1.22;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .045em;
	text-shadow: 0 2px 10px rgba(0,0,0,.48);
	box-shadow:
		0 10px 28px rgba(30,0,28,.35),
		inset 0 1px 0 rgba(255,255,255,.16);
}

.cs-online-local p {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin: 0 auto 18px;
	color: rgba(255,255,255,.91);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.7;
	text-align: center;
	text-shadow: 0 1px 4px rgba(0,0,0,.32);
}

.cs-online-local__cta {
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 50px;
	padding: 14px 26px;
	border-radius: 999px;
	background:
		linear-gradient(135deg, #fff 0%, #fff2fd 100%);
	border: 1px solid rgba(255,255,255,.70);
	color: #8a0070 !important;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .035em;
	box-shadow:
		0 14px 34px rgba(0,0,0,.24),
		0 0 22px rgba(240,14,220,.16),
		inset 0 1px 0 rgba(255,255,255,.95);
	transition:
		transform .18s ease,
		box-shadow .18s ease,
		filter .18s ease,
		color .18s ease;
}

.cs-online-local__cta::before {
	content: "💬";
	margin-right: 8px;
	font-size: 16px;
	line-height: 1;
}

.cs-online-local__cta:hover,
.cs-online-local__cta:focus {
	color: #bf0899 !important;
	text-decoration: none;
	transform: translateY(-2px);
	filter: brightness(1.04);
	box-shadow:
		0 18px 42px rgba(0,0,0,.30),
		0 0 30px rgba(240,14,220,.26),
		inset 0 1px 0 rgba(255,255,255,.96);
	outline: 0;
}

.cs-online-local__cta:active {
	transform: translateY(1px);
}

@keyframes cs-online-local-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cs-online-local-shimmer {
	0% {
		background-position: 220% 0;
	}
	100% {
		background-position: -220% 0;
	}
}

@media (max-width: 767px) {
	.cs-online-local {
		margin: 20px 0;
		padding: 18px 12px;
		border-radius: 22px;
	}

	.cs-online-local h2 {
		width: 100%;
		padding: 12px 14px !important;
		border-radius: 16px;
		font-size: 17px !important;
	}

	.cs-online-local p {
		font-size: 13px;
		line-height: 1.6;
	}

	.cs-online-local__cta {
		width: 100%;
		min-height: 48px;
		padding: 14px 16px;
		border-radius: 16px;
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cs-online-local,
	.cs-online-local::before,
	.cs-online-local__cta {
		animation: none;
		transition: none;
	}
}

/* ============================================================
   Bloc SEO long ville — sobre premium
   ============================================================ */

.cs-city-enrich--long {
	position: relative;
	clear: both;
	box-sizing: border-box;
	margin: 30px 0;
	padding: clamp(22px, 3vw, 34px);
	border-radius: 24px;
	background:
		linear-gradient(180deg, #ffffff 0%, #fff8fe 100%);
	border: 1px solid rgba(180, 0, 145, .14);
	box-shadow:
		0 18px 48px rgba(35, 0, 32, .10),
		inset 0 1px 0 rgba(255,255,255,.9);
	color: #2a1f2a;
	overflow: hidden;
}

.cs-city-enrich--long::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: linear-gradient(180deg, #f00edc 0%, #7a0063 100%);
}

.cs-city-enrich--long > * {
	position: relative;
	z-index: 1;
}

.cs-city-enrich--long h2,
.cs-city-enrich--long h3 {
	float: none !important;
	box-sizing: border-box;
	width: 100% !important;
	max-width: 920px;
	margin: 0 auto 18px !important;
	padding: 0 0 12px !important;
	background: none !important;
	border-bottom: 1px solid rgba(180, 0, 145, .16);
	color: #170018 !important;
	font-weight: 950;
	line-height: 1.25;
	text-align: left;
	text-transform: none;
	letter-spacing: -.015em;
	text-shadow: none;
	box-shadow: none!important;
	border:0!important;
	
}

.cs-city-enrich--long h2 {
	font-size: clamp(22px, 2.4vw, 30px) !important;
}

.cs-city-enrich--long h3 {
	margin-top: 28px !important;
	font-size: clamp(18px, 2vw, 23px) !important;
}

.cs-city-enrich--long h2::after,
.cs-city-enrich--long h3::after {
	content: "";
	display: block;
	width: 72px;
	height: 4px;
	margin-top: 12px;
	border-radius: 999px;
	background: linear-gradient(90deg, #f00edc 0%, #7a0063 100%);
}

.cs-city-enrich--long p {
	max-width: 920px;
	margin: 0 auto 16px;
	color: #3d3340;
	font-size: 15.5px;
	font-weight: 500;
	line-height: 1.78;
	text-align: left;
}

.cs-city-enrich--long p strong {
	color: #160016;
	font-weight: 900;
}

.cs-city-enrich--long a {
	color: #a00082 !important;
	font-weight: 850;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.cs-city-enrich--long a:hover,
.cs-city-enrich--long a:focus {
	color: #f00edc !important;
	text-decoration: none;
	outline: 0;
}

.cs-city-enrich--long ul,
.cs-city-enrich--long ol {
	max-width: 920px;
	margin: 18px auto;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.cs-city-enrich--long li {
	position: relative;
	box-sizing: border-box;
	padding: 12px 14px 12px 42px;
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid rgba(180, 0, 145, .12);
	color: #3d3340;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.55;
	box-shadow: 0 8px 24px rgba(35, 0, 32, .06);
}

.cs-city-enrich--long li::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 17px;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: #f00edc;
	box-shadow: 0 0 0 4px rgba(240,14,220,.12);
}

.cs-city-enrich--long blockquote {
	max-width: 880px;
	margin: 24px auto;
	padding: 18px 22px;
	border-left: 5px solid #bf0899;
	border-radius: 14px;
	background: #fff;
	color: #211221;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.65;
	box-shadow: 0 12px 32px rgba(35, 0, 32, .08);
}

.cs-city-enrich--long > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 680px) {
	.cs-city-enrich--long {
		margin: 24px 0;
		padding: 20px 16px 20px 20px;
		border-radius: 20px;
	}

	.cs-city-enrich--long::before {
		width: 4px;
	}

	.cs-city-enrich--long h2 {
		font-size: 21px !important;
	}

	.cs-city-enrich--long h3 {
		font-size: 18px !important;
	}

	.cs-city-enrich--long p {
		font-size: 14px;
		line-height: 1.7;
	}

	.cs-city-enrich--long li {
		font-size: 13.5px;
		padding: 11px 12px 11px 36px;
	}
}