/**
 * Classements hausses EHPAD — charte Retraide (bleu #009bfe / #0284c7)
 */

.repr-wrap {
	--repr-blue: #009bfe;
	--repr-blue-dark: #0284c7;
	--repr-blue-deep: #0369a1;
	--repr-ink: #0f172a;
	--repr-muted: #64748b;
	--repr-border: #e2e8f0;
	--repr-bg: #f8fafc;
	--repr-green: #15803d;
	--repr-green-bg: #f0fdf4;
	--repr-orange: #b45309;
	--repr-orange-bg: #fffbeb;
	--repr-red: #b91c1c;
	--repr-red-bg: #fef2f2;

	max-width: 1100px;
	margin: 0 auto;
	padding: 28px 18px 64px;
	font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	color: var(--repr-ink);
	line-height: 1.55;
}

/* Breadcrumb */
.repr-breadcrumb {
	margin-bottom: 22px;
	font-size: 14px;
}
.repr-breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 8px;
	align-items: center;
}
.repr-breadcrumb a {
	color: var(--repr-blue-dark);
	font-weight: 600;
	text-decoration: none;
}
.repr-breadcrumb a:hover {
	color: var(--repr-blue-deep);
	text-decoration: underline;
}
.repr-bc-sep {
	color: #cbd5e1;
}
.repr-bc-current {
	font-weight: 700;
	color: var(--repr-ink);
}

/* Hero */
.repr-hero {
	text-align: center;
	padding: 36px 20px 40px;
	margin-bottom: 36px;
	border-radius: 20px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	background: radial-gradient(circle at 50% 0%, rgba(0, 155, 254, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}
.repr-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	background: #f0f9ff;
	border: 1px solid #bae6fd;
	color: var(--repr-blue-deep);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 14px;
}

/* KPI Stats Row */
.repr-stats-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin: 20px 0 16px;
}
.repr-stat-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	padding: 10px 18px;
	border-radius: 14px;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
	text-align: left;
}
.repr-stat-icon {
	font-size: 22px;
}
.repr-stat-badge strong {
	display: block;
	font-size: 0.98rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.2;
}
.repr-stat-badge span {
	font-size: 0.78rem;
	color: #64748b;
}

/* Bascule fortes / modérées */
.repr-mode-switch {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 18px;
}
.repr-mode-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid var(--repr-border);
	background: #fff;
	color: var(--repr-ink);
	font-weight: 700;
	font-size: 0.92rem;
	text-decoration: none;
	transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.repr-mode-btn:hover {
	border-color: #7dd3fc;
	background: #f0f9ff;
	color: var(--repr-blue-deep);
}
.repr-mode-btn.is-active {
	background: linear-gradient(135deg, #009bfe 0%, #007ccb 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 155, 254, 0.28);
}
.repr-section-alt .repr-table-wrap {
	opacity: 0.97;
}
.repr-h1 {
	font-size: clamp(1.45rem, 2.6vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
	color: var(--repr-ink);
	line-height: 1.25;
}
.repr-lead {
	max-width: 720px;
	margin: 0 auto;
	color: var(--repr-muted);
	font-size: 1.02rem;
}

/* Sections */
.repr-section {
	margin-bottom: 40px;
}
.repr-section-head {
	margin-bottom: 16px;
}
.repr-h2 {
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 0 8px;
	color: var(--repr-ink);
	position: relative;
	padding-bottom: 10px;
}
.repr-h2::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	margin-top: 8px;
	border-radius: 2px;
	background: linear-gradient(135deg, #009bfe 0%, #007ccb 100%);
}
.repr-section-sub {
	margin: 0;
	color: var(--repr-muted);
	font-size: 0.95rem;
}

/* Cards grid */
.repr-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}
.repr-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px 18px;
	border-radius: 14px;
	border: 1px solid var(--repr-border);
	background: #fff;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.repr-card:hover {
	border-color: #7dd3fc;
	box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12);
	transform: translateY(-1px);
}
.repr-card-title {
	font-weight: 750;
	font-size: 1rem;
	color: var(--repr-ink);
}
.repr-card-meta {
	font-size: 0.85rem;
	color: var(--repr-muted);
}

/* Chips */
.repr-chip-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.repr-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--repr-border);
	color: var(--repr-ink);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	transition: background 0.15s, border-color 0.15s;
}
.repr-chip:hover {
	background: #f0f9ff;
	border-color: #7dd3fc;
	color: var(--repr-blue-deep);
}
.repr-chip-muted {
	color: var(--repr-muted);
	font-weight: 500;
}

/* Ranking List & Modern Rank Cards */
.repr-ranking-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 14px;
}
.repr-rank-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
}
.repr-rank-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: #cbd5e1;
}
.repr-rank-card.theme-green::before {
	background: #16a34a;
}
.repr-rank-card.theme-down::before {
	background: #0284c7;
}
.repr-rank-card.theme-orange::before {
	background: #d97706;
}
.repr-rank-card.theme-red::before {
	background: #dc2626;
}

.repr-rank-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
	border-color: #7dd3fc;
}

/* Rank Pills */
.repr-card-left {
	flex-shrink: 0;
}
.repr-rank-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 54px;
	height: 38px;
	padding: 0 10px;
	border-radius: 12px;
	font-weight: 900;
	font-size: 0.95rem;
	box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.repr-rank-gold {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #92400e;
	border: 1px solid #f59e0b;
}
.repr-rank-silver {
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
	color: #334155;
	border: 1px solid #cbd5e1;
}
.repr-rank-bronze {
	background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
	color: #9a3412;
	border: 1px solid #f97316;
}
.repr-rank-standard {
	background: #f8fafc;
	color: #64748b;
	border: 1px solid #e2e8f0;
}

/* Card Main Info */
.repr-card-main {
	flex: 1;
	min-width: 240px;
}
.repr-card-title {
	margin: 0 0 4px 0;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.3;
}
.repr-card-title a {
	color: #0f172a;
	text-decoration: none;
	transition: color 0.15s ease;
}
.repr-card-title a:hover {
	color: #0284c7;
}
.repr-card-meta-line {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 0.84rem;
	color: #64748b;
}
.repr-meta-sep {
	color: #cbd5e1;
}
.repr-card-meta-line code {
	font-family: ui-monospace, SFMono-Regular, monospace;
	font-size: 0.82rem;
	background: #f1f5f9;
	padding: 2px 6px;
	border-radius: 4px;
	color: #334155;
}

/* Pricing Shift */
.repr-card-pricing {
	text-align: right;
	flex-shrink: 0;
}
.repr-price-shift {
	font-size: 0.95rem;
	margin-bottom: 4px;
}
.repr-price-from {
	color: #64748b;
}
.repr-price-arrow {
	color: #94a3b8;
	margin: 0 3px;
}
.repr-price-to {
	font-weight: 800;
	color: #0f172a;
}
.repr-badges-group {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
}
.repr-avg-badge {
	display: inline-flex;
	padding: 3px 10px;
	border-radius: 20px;
	font-weight: 800;
	font-size: 0.84rem;
}
.theme-green .repr-avg-badge {
	background: #f0fdf4;
	color: #15803d;
	border: 1px solid #bbf7d0;
}
.theme-down .repr-avg-badge {
	background: #f0f9ff;
	color: #0369a1;
	border: 1px solid #bae6fd;
}
.theme-orange .repr-avg-badge {
	background: #fffbe6;
	color: #b45309;
	border: 1px solid #fde68a;
}
.theme-red .repr-avg-badge {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}
.repr-total-badge {
	font-size: 0.8rem;
	color: #64748b;
}

/* Card Action Button */
.repr-card-action {
	flex-shrink: 0;
}
.repr-card-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 14px;
	border-radius: 10px;
	background: #f0f9ff;
	border: 1px solid #bae6fd;
	color: #0284c7 !important;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	transition: all 0.15s ease;
}
.repr-card-btn:hover {
	background: #0284c7;
	color: #ffffff !important;
	border-color: #0284c7;
	box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

/* Tableau prix moyens */
.repr-table-wrap {
	overflow-x: auto;
	border-radius: 14px;
	border: 1px solid var(--repr-border);
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.repr-prix-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}
.repr-prix-table th,
.repr-prix-table td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid #f1f5f9;
}
.repr-prix-table th {
	background: #f8fafc;
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--repr-muted);
}
.repr-prix-table tbody tr:hover {
	background: #f0f9ff;
}
.repr-prix-table a {
	color: var(--repr-blue-deep);
	font-weight: 600;
	text-decoration: none;
}
.repr-prix-table a:hover {
	text-decoration: underline;
}
.repr-code-muted {
	color: var(--repr-muted);
	font-weight: 500;
	font-size: 0.85em;
}
.repr-prix-table td:nth-child(2),
.repr-prix-table td:nth-child(3),
.repr-prix-table td:nth-child(4),
.repr-prix-table td:nth-child(5) {
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.repr-footer-caption {
	font-size: 0.82rem;
	color: #64748b;
	margin-top: 10px;
}
.repr-empty-state {
	padding: 40px;
	text-align: center;
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
	border-radius: 16px;
	color: #64748b;
}
.repr-empty-icon {
	font-size: 32px;
	display: block;
	margin-bottom: 8px;
}

@media (max-width: 768px) {
	.repr-rank-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.repr-card-pricing {
		text-align: left;
	}
	.repr-badges-group {
		justify-content: flex-start;
	}
	.repr-card-action {
		align-self: flex-end;
		width: 100%;
	}
	.repr-card-btn {
		width: 100%;
		justify-content: center;
	}
}

/* Badges hausse */
.repr-badge {
	display: inline-flex;
	padding: 4px 10px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 0.85rem;
}
.repr-badge-green {
	background: var(--repr-green-bg);
	color: var(--repr-green);
	border: 1px solid #bbf7d0;
}
.repr-badge-orange {
	background: var(--repr-orange-bg);
	color: var(--repr-orange);
	border: 1px solid #fde68a;
}
.repr-badge-red {
	background: var(--repr-red-bg);
	color: var(--repr-red);
	border: 1px solid #fecaca;
}

/* Médailles & Rangs */
.repr-rank-cell {
	text-align: center;
	vertical-align: middle !important;
}
.repr-rank-num {
	font-weight: 800;
	color: var(--repr-muted);
	font-size: 0.95rem;
}
.repr-medal {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 8px;
	border-radius: 20px;
	font-weight: 900;
	font-size: 0.85rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.repr-medal-gold {
	background: #fef3c7;
	color: #92400e;
	border: 1px solid #fde68a;
}
.repr-medal-silver {
	background: #f1f5f9;
	color: #475569;
	border: 1px solid #cbd5e1;
}
.repr-medal-bronze {
	background: #ffedd5;
	color: #9a3412;
	border: 1px solid #fed7aa;
}

.repr-period-badge {
	font-size: 0.82rem;
	font-weight: 600;
	color: #475569;
	background: #f1f5f9;
	padding: 3px 8px;
	border-radius: 6px;
}

.repr-price-flow {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.9rem;
}
.repr-price-start {
	color: #64748b;
}
.repr-price-arrow {
	color: #94a3b8;
	font-size: 0.8rem;
}
.repr-price-end {
	color: #0f172a;
}

/* Blocks du bas (Légal + Pro Claim) */
.repr-bottom-blocks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 36px;
}

/* Legal method */
.repr-legal-method {
	margin: 0;
	padding: 24px;
	border-radius: 18px;
	border: 1px solid var(--repr-border);
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}
.repr-legal-intro {
	font-size: 0.93rem;
	color: #334155;
	line-height: 1.5;
}
.repr-method-list {
	margin: 12px 0 16px 1.1rem;
	padding: 0;
	color: #334155;
	font-size: 0.88rem;
}
.repr-method-list li {
	margin-bottom: 6px;
}
.repr-disclaimer-box {
	background: #fffbe6;
	border: 1px solid #fde68a;
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 0.85rem;
	color: #92400e;
	line-height: 1.45;
}

/* Pro Claim Card (Revendication gratuite EHPAD) */
.repr-pro-claim-card {
	background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
	color: #ffffff;
	border-radius: 18px;
	padding: 24px;
	box-shadow: 0 10px 25px rgba(2, 132, 199, 0.2);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.repr-pro-claim-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 12px;
}
.repr-pro-claim-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 10px;
	line-height: 1.3;
}
.repr-pro-claim-desc {
	font-size: 0.92rem;
	color: #e0f2fe;
	line-height: 1.5;
	margin-bottom: 16px;
}
.repr-pro-claim-features {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.88rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
}
.repr-pro-claim-action {
	margin-top: auto;
}
.repr-pro-claim-btn {
	display: inline-block;
	background: #ffffff;
	color: #0284c7 !important;
	font-weight: 800;
	font-size: 0.95rem;
	padding: 12px 22px;
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, background 0.2s ease;
}
.repr-pro-claim-btn:hover {
	background: #f0f9ff;
	transform: translateY(-2px);
}

.repr-empty {
	color: var(--repr-muted);
	padding: 16px;
	background: var(--repr-bg);
	border-radius: 12px;
	border: 1px dashed var(--repr-border);
}

.repr-back {
	margin-top: 28px;
}
.repr-back a {
	color: var(--repr-blue-dark);
	font-weight: 700;
	text-decoration: none;
}
.repr-back a:hover {
	text-decoration: underline;
}

.repr-page-foot {
	margin-top: 36px;
	padding-top: 16px;
	border-top: 1px solid var(--repr-border);
	font-size: 0.85rem;
	color: var(--repr-muted);
}
.repr-page-foot a {
	color: var(--repr-blue-dark);
}

@media (max-width: 860px) {
	.repr-bottom-blocks {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.repr-wrap {
		padding: 18px 12px 48px;
	}
	.repr-hero {
		padding: 24px 14px 28px;
		border-radius: 16px;
	}
}

/* ==========================================================================
   Widgets & Shortcodes de Maillage Interne Discret (SEO)
   ========================================================================== */

/* Style Card (Discret & Elégant) */
.repr-mesh-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 18px 20px;
	margin: 24px 0;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}
.repr-mesh-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}
.repr-mesh-icon {
	font-size: 18px;
}
.repr-mesh-title {
	font-size: 0.98rem;
	font-weight: 800;
	color: #0f172a;
}
.repr-mesh-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.repr-mesh-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #ffffff;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #0284c7 !important;
	text-decoration: none;
	transition: all 0.15s ease;
}
.repr-mesh-link:hover {
	background: #f0f9ff;
	border-color: #0284c7;
	transform: translateX(3px);
}
.repr-mesh-arrow {
	font-weight: 800;
}
.repr-mesh-subtext {
	font-size: 0.78rem;
	color: #94a3b8;
	margin-top: 10px;
	text-align: right;
}

/* Style Inline */
.repr-mesh-inline {
	background: #f1f5f9;
	border-left: 4px solid #0284c7;
	padding: 10px 14px;
	border-radius: 0 8px 8px 0;
	margin: 18px 0;
	font-size: 0.92rem;
	color: #334155;
}
.repr-mesh-inline a {
	color: #0284c7;
	font-weight: 700;
	text-decoration: underline;
}
.repr-mesh-inline a:hover {
	color: #0369a1;
}

/* Style Badges */
.repr-mesh-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0;
}
.repr-mesh-pill {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.15s ease;
}
.repr-pill-fortes {
	background: #fffbe6;
	color: #b45309 !important;
	border: 1px solid #fde68a;
}
.repr-pill-fortes:hover {
	background: #fef3c7;
	transform: translateY(-1px);
}
.repr-pill-moderees {
	background: #f0fdf4;
	color: #15803d !important;
	border: 1px solid #bbf7d0;
}
.repr-pill-moderees:hover {
	background: #dcfce7;
	transform: translateY(-1px);
}

/* Mode Primary Button (Highlight Prix Moyens) */
.repr-mode-btn.repr-mode-primary {
	background: #0284c7;
	color: #ffffff !important;
	border-color: #0284c7;
	font-weight: 700;
	box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
}
.repr-mode-btn.repr-mode-primary:hover {
	background: #0369a1;
	border-color: #0369a1;
	color: #ffffff !important;
}

/* FAQ Accordion Styling */
.repr-faq-section {
	margin-top: 40px;
	padding: 28px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}
.repr-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
}
.repr-faq-item {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #f8fafc;
	overflow: hidden;
	transition: border-color 0.2s, background 0.2s;
}
.repr-faq-item[open] {
	border-color: #7dd3fc;
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(2, 132, 199, 0.06);
}
.repr-faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	font-size: 1.02rem;
	color: #0f172a;
	cursor: pointer;
	user-select: none;
	list-style: none;
}
.repr-faq-question::-webkit-details-marker {
	display: none;
}
.repr-faq-question strong {
	font-weight: 700;
}
.repr-faq-icon {
	font-size: 1.2rem;
	font-weight: 700;
	color: #0284c7;
	transition: transform 0.2s ease;
}
.repr-faq-item[open] .repr-faq-icon {
	transform: rotate(45deg);
}
.repr-faq-answer {
	padding: 0 20px 18px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #475569;
	border-top: 1px solid #f1f5f9;
	margin-top: 6px;
	padding-top: 14px;
}

/* City Cards & Section Upgrade */
.repr-cities-section {
	margin-top: 32px;
}
.repr-cities-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 20px;
}
.repr-city-search-box {
	position: relative;
	width: 100%;
	max-width: 360px;
}
.repr-city-search-box .repr-search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 15px;
	color: #0284c7;
	pointer-events: none;
	line-height: 1;
	z-index: 2;
}
.repr-city-filter-input {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 16px 10px 38px;
	border-radius: 30px;
	border: 1px solid #cbd5e1;
	font-size: 0.9rem;
	font-weight: 500;
	color: #0f172a;
	outline: none;
	background: #ffffff;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.repr-city-filter-input:focus {
	border-color: #0284c7;
	box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15), 0 4px 12px rgba(2, 132, 199, 0.1);
}
.repr-city-filter-input::placeholder {
	color: #94a3b8;
	font-weight: 400;
}

.repr-cities-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.repr-city-card {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 30px;
	text-decoration: none;
	color: #0f172a;
	font-size: 0.92rem;
	font-weight: 600;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.repr-city-card:hover {
	background: #f0f9ff;
	border-color: #7dd3fc;
	color: #0284c7;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(2, 132, 199, 0.12);
}
.repr-city-card.repr-city-hidden {
	display: none;
}
.repr-city-name {
	font-weight: 700;
	color: #1e293b;
}
.repr-city-card:hover .repr-city-name {
	color: #0284c7;
}
.repr-city-price {
	font-size: 0.82rem;
	font-weight: 700;
	color: #0284c7;
	background: #e0f2fe;
	padding: 2px 8px;
	border-radius: 12px;
	border: 1px solid #bae6fd;
}

.repr-cities-toggle-wrap {
	margin-top: 18px;
	text-align: center;
}
.repr-cities-toggle-btn {
	background: #ffffff;
	border: 1px solid #cbd5e1;
	color: #0284c7;
	font-weight: 700;
	font-size: 0.9rem;
	padding: 10px 22px;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}
.repr-cities-toggle-btn:hover {
	background: #f0f9ff;
	border-color: #7dd3fc;
	transform: translateY(-1px);
}
