/*
 * Variante « Rose » — d'après la maquette Pencil (frame « Rose — Mobile »).
 * Tokens repris des variables $ro-* du fichier .pen :
 *   bg #FFF2F8 · ink #3A1030 · soft #9A5A80 · hot #FF2D95 · deep #C20E6E
 *   purple #A21CAF · light #FFB6D8 · green #16A34A · Baloo 2 / Nunito
 * Mobile-first, classes préfixées "ro-".
 */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;700;800&family=Nunito:wght@400;600;700;800&display=swap');

body.telrose--rose {
	--ro-bg: #fff2f8;
	--ro-ink: #3a1030;
	--ro-soft: #9a5a80;
	--ro-hot: #ff2d95;
	--ro-deep: #c20e6e;
	--ro-purple: #a21caf;
	--ro-light: #ffb6d8;
	--ro-border: #ffc7e1;
	--ro-green: #16a34a;
	--ro-green-bg: #e7fbef;
	--ro-busy: #d97706;
	--ro-busy-bg: #fef3e2;
	--ro-head: "Baloo 2", system-ui, sans-serif;
	--ro-body: "Nunito", system-ui, sans-serif;

	background: var(--ro-bg);
	color: var(--ro-ink);
	font-family: var(--ro-body);
	font-size: 15px;
	line-height: 1.5;
}

.telrose--rose h1,
.telrose--rose h2,
.telrose--rose h3 {
	font-family: var(--ro-head);
	color: var(--ro-ink);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 0.4em;
}

.telrose--rose a {
	text-decoration: none;
}

.ro-main {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 16px 56px;
}

/* ---------- Header (dégradé rose → violet) ---------- */

.ro-header {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	background: linear-gradient(90deg, var(--ro-hot), var(--ro-purple));
	box-shadow: 0 2px 14px rgba(194, 14, 110, 0.25);
}

.ro-brand {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #fff;
}

.ro-brand img,
.ro-header .custom-logo {
	max-height: 40px;
	width: auto;
}

.ro-header .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.ro-brand__heart {
	width: 22px;
	height: 22px;
}

.ro-brand__name {
	font-family: var(--ro-head);
	font-size: 23px;
	font-weight: 800;
}

.ro-badge18 {
	background: #fff;
	color: var(--ro-hot);
	font-family: var(--ro-head);
	font-size: 13px;
	font-weight: 800;
	padding: 5px 10px;
	border-radius: 9999px;
}

@media (min-width: 900px) {
	.ro-header {
		padding: 16px 48px;
	}
}

/* ---------- Hero ---------- */

.ro-hero {
	padding: 20px 0 4px;
	max-width: 680px;
}

@media (min-width: 900px) {
	.ro-hero {
		max-width: none;
	}
}

.ro-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #ffe0ef;
	color: var(--ro-deep);
	font-family: var(--ro-head);
	font-size: 11px;
	font-weight: 700;
	padding: 5px 11px;
	border-radius: 9999px;
	margin-bottom: 10px;
}

.ro-chip svg {
	width: 12px;
	height: 12px;
}

.ro-hero__title {
	font-size: clamp(25px, 5vw, 40px);
	margin-bottom: 8px;
}

.ro-hero__text {
	color: var(--ro-soft);
	font-weight: 600;
	font-size: 14px;
}

.ro-hero--archive,
.ro-hero--404 {
	padding-top: 16px;
}

.ro-underline {
	display: block;
	width: 64px;
	height: 4px;
	border-radius: 9999px;
	background: var(--ro-hot);
	margin: 2px 0 10px;
}

/* ---------- Pills de catégories ---------- */

.ro-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 12px 0 4px;
}

.ro-pill {
	display: inline-flex;
	align-items: center;
	background: #fff;
	border: 1.5px solid var(--ro-border);
	color: var(--ro-deep);
	font-family: var(--ro-head);
	font-size: 13px;
	font-weight: 700;
	padding: 7px 13px;
	border-radius: 9999px;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ro-pill:hover {
	border-color: var(--ro-hot);
}

.ro-pill.is-active {
	background: var(--ro-hot);
	border-color: var(--ro-hot);
	color: #fff;
}

.ro-pill--mini {
	font-size: 11px;
	padding: 3px 9px;
	margin-left: 6px;
}

/* ---------- Bandeau de section ---------- */

.ro-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 0 10px;
}

.ro-section__title {
	font-size: 19px;
	margin: 0;
}

.ro-online-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--ro-green-bg);
	color: var(--ro-green);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 9px;
	border-radius: 9999px;
	white-space: nowrap;
}

/* ---------- Badge statut ---------- */

.ro-online {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--ro-green);
	font-size: 10px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 9999px;
}

.ro-online__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}

.ro-online--busy {
	color: var(--ro-busy);
}

/* ---------- Grille & cards ---------- */

.ro-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

@media (min-width: 700px) {
	.ro-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}
}

@media (min-width: 1000px) {
	.ro-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.ro-card {
	background: #fff;
	border: 2px solid var(--ro-light);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(255, 45, 149, 0.2);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ro-card:hover {
	transform: translateY(-3px);
	border-color: var(--ro-hot);
	box-shadow: 0 8px 24px rgba(255, 45, 149, 0.3);
}

.ro-card__media {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	background: var(--ro-light);
}

.ro-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ro-card__media .ro-online {
	position: absolute;
	top: 8px;
	left: 8px;
}

.ro-card__heart {
	position: absolute;
	top: 8px;
	right: 8px;
	display: inline-flex;
	padding: 6px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.8);
	color: var(--ro-hot);
}

.ro-card__heart svg {
	width: 15px;
	height: 15px;
}

.ro-card__info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 8px 10px 10px;
	margin-top: auto;
}

.ro-card__namerow {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	margin: 0;
	font-size: 16px;
}

.ro-card__name {
	color: var(--ro-ink);
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ro-card__name:hover {
	color: var(--ro-deep);
}

.ro-card__age {
	font-family: var(--ro-body);
	font-size: 13px;
	font-weight: 700;
	color: var(--ro-soft);
	white-space: nowrap;
}

.ro-card__title {
	color: var(--ro-soft);
	font-size: 12px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ro-card__title:hover {
	color: var(--ro-deep);
}

/* ---------- Boutons ---------- */

.ro-btn-call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	padding: 9px 12px;
	border-radius: 9999px;
	background: linear-gradient(90deg, var(--ro-hot), var(--ro-deep));
	color: #fff;
	font-family: var(--ro-head);
	font-size: 13px;
	font-weight: 800;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ro-btn-call:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(255, 45, 149, 0.45);
}

.ro-btn-call svg {
	width: 15px;
	height: 15px;
}

.ro-btn-call--lg {
	width: auto;
	padding: 13px 26px;
	font-size: 16px;
}

.ro-btn-sms {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	padding: 8px 12px;
	border-radius: 9999px;
	background: #fff;
	border: 1.5px solid var(--ro-border);
	color: var(--ro-deep);
	font-family: var(--ro-head);
	font-size: 13px;
	font-weight: 700;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.ro-btn-sms:hover {
	border-color: var(--ro-hot);
	background: #ffe0ef;
}

.ro-btn-sms--lg {
	width: auto;
	padding: 12px 24px;
	font-size: 15px;
}

.ro-tariff {
	margin: 6px 0 0;
	font-size: 11px;
	font-weight: 600;
	color: var(--ro-soft);
}

.ro-tariff--card {
	margin: 0;
	font-size: 10px;
	text-align: center;
}

/* ---------- Pagination ---------- */

.ro-pagination {
	margin-top: 26px;
	text-align: center;
}

.ro-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	margin: 0 3px;
	border-radius: 9999px;
	background: #fff;
	border: 1.5px solid var(--ro-border);
	color: var(--ro-deep);
	font-family: var(--ro-head);
	font-weight: 700;
	font-size: 14px;
}

.ro-pagination .page-numbers.current,
.ro-pagination .page-numbers:hover {
	background: var(--ro-hot);
	border-color: var(--ro-hot);
	color: #fff;
}

/* ---------- Fil d'ariane ---------- */

.ro-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	padding: 14px 0 2px;
	font-size: 12px;
	font-weight: 600;
	color: var(--ro-soft);
}

.ro-breadcrumb a:hover {
	color: var(--ro-deep);
}

.ro-breadcrumb__current {
	color: var(--ro-hot);
	font-weight: 700;
}

/* ---------- Profil unique ---------- */

.ro-profile {
	display: grid;
	gap: 20px;
	margin-top: 12px;
}

@media (min-width: 900px) {
	.ro-profile {
		grid-template-columns: minmax(320px, 420px) 1fr;
		gap: 40px;
		align-items: start;
	}
}

.ro-profile__media {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	border: 2px solid var(--ro-light);
	box-shadow: 0 6px 20px rgba(255, 45, 149, 0.22);
}

.ro-profile__media .ro-online {
	position: absolute;
	top: 10px;
	left: 10px;
}

.ro-profile__title {
	font-size: clamp(23px, 4vw, 34px);
}

.ro-profile__ident {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	font-size: 16px;
	font-weight: 600;
	color: var(--ro-soft);
	margin: 0 0 16px;
}

.ro-profile__ident strong {
	color: var(--ro-ink);
	font-family: var(--ro-head);
	font-weight: 800;
}

.ro-profile__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ro-profile__content {
	margin-top: 22px;
	font-weight: 600;
	color: #6b3a58;
}

.ro-profile__content p {
	margin: 0 0 1em;
}

.ro-profile__subtitle {
	font-size: 19px;
	margin-top: 20px;
}

.ro-interests {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ro-interest {
	background: #ffe0ef;
	color: var(--ro-deep);
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 9999px;
}

/* CTA collant en bas d'écran sur mobile */
@media (max-width: 899px) {
	.ro-profile__cta {
		position: sticky;
		bottom: 12px;
		z-index: 50;
		background: rgba(255, 242, 248, 0.92);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		padding: 10px;
		border-radius: 16px;
		border: 1.5px solid var(--ro-border);
	}

	.ro-profile__cta .ro-btn-call--lg,
	.ro-profile__cta .ro-btn-sms--lg {
		flex: 1;
		width: auto;
	}
}

/* ---------- Popup (contenu variante) ---------- */

.ro-popup {
	background: #fff;
	border: 2px solid var(--ro-light);
	border-radius: 18px;
	padding: 26px 24px 28px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(58, 16, 48, 0.35);
}

.ro-popup__avatar {
	width: 120px;
	height: 120px;
	object-fit: cover;
	object-position: top;
	border-radius: 16px;
	margin: 0 auto 12px;
	border: 2px solid var(--ro-light);
}

.ro-popup__name {
	font-family: var(--ro-head);
	font-size: 22px;
	font-weight: 800;
	color: var(--ro-ink);
	margin: 0;
}

.ro-popup__age {
	font-family: var(--ro-body);
	font-size: 14px;
	font-weight: 700;
	color: var(--ro-soft);
}

.ro-popup__cat {
	color: var(--ro-hot);
	font-family: var(--ro-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin: 2px 0 0;
}

.ro-popup__keyword {
	display: inline-block;
	background: linear-gradient(90deg, var(--ro-hot), var(--ro-deep));
	color: #fff;
	font-family: var(--ro-head);
	font-size: clamp(20px, 5vw, 26px);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 8px 20px;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(255, 45, 149, 0.4);
	margin: 4px 0;
}

.ro-popup__number {
	display: block;
	margin: 16px 0 10px;
	padding: 14px;
	border: 2px solid var(--ro-hot);
	border-radius: 12px;
	color: var(--ro-deep);
	font-family: var(--ro-head);
	font-size: clamp(24px, 6vw, 30px);
	font-weight: 800;
	letter-spacing: 0.03em;
	box-shadow: 0 0 20px rgba(255, 45, 149, 0.3);
}

.ro-popup__number:hover {
	background: #ffe0ef;
}

.ro-popup__note {
	font-size: 12px;
	font-weight: 600;
	color: var(--ro-soft);
	margin: 0;
}

.ro-popup__legal {
	margin: 12px 0 0;
	font-size: 10px;
	font-weight: 600;
	color: var(--ro-soft);
}

/* ---------- Blocs SEO ---------- */

.ro-seo {
	margin-top: 40px;
	display: grid;
	gap: 16px;
}

.ro-seo__block,
.ro-seo:not(.ro-seo--home) {
	background: #fff;
	border: 2px solid var(--ro-light);
	border-radius: 16px;
	padding: 20px 18px;
}

.ro-seo--home {
	background: none;
	border: 0;
	padding: 0;
}

@media (min-width: 900px) {
	.ro-seo--home {
		grid-template-columns: repeat(2, 1fr);
	}

	.ro-seo__block--full,
	.ro-seo__block:only-child {
		grid-column: 1 / -1;
	}
}

.ro-seo__title {
	font-size: 19px;
}

.ro-seo__text {
	color: var(--ro-soft);
	font-weight: 600;
	font-size: 13px;
}

.ro-seo__text p {
	margin: 0 0 1em;
}

.ro-seo__block .ro-btn-sms {
	width: auto;
	margin-top: 10px;
}

/* ---------- Page statique ---------- */

.ro-page {
	max-width: 760px;
	margin: 20px auto 0;
}

.ro-page__title {
	font-size: clamp(24px, 5vw, 36px);
}

.ro-page__content {
	font-weight: 600;
	color: #6b3a58;
}

/* ---------- Footer ---------- */

.ro-footer {
	background: var(--ro-ink);
	margin-top: 48px;
}

.ro-footer__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 30px 16px;
	text-align: center;
	color: #d8b9cc;
}

.ro-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--ro-head);
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 14px;
}

.ro-footer__brand svg {
	width: 18px;
	height: 18px;
	color: var(--ro-hot);
}

.ro-footer__list {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 18px;
}

.ro-footer__list a {
	color: #d8b9cc;
	font-size: 13px;
	font-weight: 600;
}

.ro-footer__list a:hover {
	color: #fff;
}

.ro-footer__legal {
	font-size: 11px;
	font-weight: 600;
	margin: 0 0 6px;
}

.ro-footer__copy {
	font-size: 11px;
	margin: 0;
	opacity: 0.7;
}
