/* ==========================================================================
   HOME GYM PETIT ESPACE - Main CSS
   v1.0.0 — Tech & moderne, optimisé conversion + Core Web Vitals
   ========================================================================== */

/* ----- Design tokens ----- */
:root {
	--hg-primary: #1A2332;
	--hg-primary-light: #243049;
	--hg-primary-soft: #C9D1DC;
	--hg-accent: #FF6B35;
	--hg-accent-dark: #E8551F;
	--hg-success: #10B981;
	--hg-success-soft: #F0FAF6;
	--hg-danger: #D85A30;
	--hg-danger-soft: #FFF1ED;
	--hg-bg: #FAFAF9;
	--hg-surface: #FFFFFF;
	--hg-border: #ECE9E0;
	--hg-text: #1A2332;
	--hg-text-soft: #5A6478;
	--hg-text-muted: #888780;

	--hg-font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--hg-font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

	--hg-radius-sm: 4px;
	--hg-radius: 6px;
	--hg-radius-md: 8px;
	--hg-radius-lg: 12px;

	--hg-shadow-sm: 0 1px 2px rgba(26,35,50,0.06);
	--hg-shadow: 0 2px 8px rgba(26,35,50,0.08);
	--hg-shadow-lg: 0 8px 24px rgba(26,35,50,0.12);

	--hg-container: 1180px;
	--hg-container-narrow: 760px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--hg-font-sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--hg-text);
	background: var(--hg-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--hg-primary); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--hg-accent); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
	font-family: var(--hg-font-display);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--hg-primary);
	margin: 0 0 0.5em;
}
h1 { font-size: clamp(28px, 4vw, 40px); }
h2 { font-size: clamp(22px, 3vw, 30px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
h4 { font-size: 17px; }

p { margin: 0 0 1em; }

/* ----- Container ----- */
.hg-container {
	max-width: var(--hg-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ----- Skip link ----- */
.hg-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--hg-primary);
	color: #fff;
	padding: 12px 18px;
	z-index: 9999;
}
.hg-skip-link:focus {
	left: 16px;
	top: 16px;
}

/* ----- Header ----- */
.hg-header {
	background: var(--hg-primary);
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	position: sticky;
	top: 0;
	z-index: 100;
}
.hg-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 0;
}
.hg-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
}
.hg-logo:hover { color: var(--hg-accent); }
.hg-logo-text { font-family: var(--hg-font-display); letter-spacing: -0.01em; }
.hg-logo-text em { font-style: normal; font-weight: 500; opacity: 0.7; font-size: 13px; }

.hg-nav { display: flex; align-items: center; }
.hg-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 4px;
}
.hg-menu a {
	color: var(--hg-primary-soft);
	font-size: 14px;
	font-weight: 500;
	padding: 8px 14px;
	border-radius: var(--hg-radius);
	transition: all 0.15s ease;
}
.hg-menu a:hover {
	color: #fff;
	background: rgba(255,255,255,0.06);
}
.hg-menu .current-menu-item a { color: var(--hg-accent); }

.hg-nav-toggle {
	display: none;
	background: none;
	border: none;
	width: 36px;
	height: 36px;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 0;
}
.hg-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	margin: 0 auto;
	transition: transform 0.2s ease;
}

@media (max-width: 768px) {
	.hg-header-inner { padding: 12px 0; }
	.hg-nav-toggle { display: flex; }
	.hg-menu {
		display: none;
		position: absolute;
		top: 100%;
		right: 24px;
		background: var(--hg-primary-light);
		flex-direction: column;
		gap: 0;
		padding: 8px;
		border-radius: var(--hg-radius-md);
		min-width: 200px;
		box-shadow: var(--hg-shadow-lg);
	}
	.hg-menu.is-open { display: flex; }
	.hg-menu a { display: block; padding: 10px 14px; }
	.hg-logo-text em { display: none; }
}

/* ----- Disclaimer ----- */
.hg-disclaimer {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #FFF8E6;
	border-left: 3px solid #F0B85A;
	padding: 10px 14px;
	border-radius: 0 var(--hg-radius) var(--hg-radius) 0;
	font-size: 13px;
	color: #6B5520;
	margin: 0 0 24px;
}
.hg-disclaimer svg { flex-shrink: 0; margin-top: 2px; }

/* ----- Breadcrumbs ----- */
.hg-breadcrumbs {
	font-size: 13px;
	color: var(--hg-text-soft);
	margin: 16px 0 24px;
}
.hg-breadcrumbs a { color: var(--hg-text-soft); }
.hg-breadcrumbs a:hover { color: var(--hg-accent); }
.hg-breadcrumbs [aria-current] { color: var(--hg-text); font-weight: 500; }
.hg-breadcrumbs span[aria-hidden] { margin: 0 6px; opacity: 0.5; }

/* ----- Kicker (petit titre catégorie au-dessus h1) ----- */
.hg-kicker {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hg-accent);
	margin-bottom: 12px;
}
.hg-kicker-light { color: var(--hg-accent); }

/* ============== HOME ============== */

.hg-hero {
	padding: 64px 0 48px;
	background: linear-gradient(180deg, var(--hg-bg) 0%, var(--hg-surface) 100%);
}
.hg-hero-inner { max-width: 720px; }
.hg-hero-title {
	font-size: clamp(32px, 5vw, 48px);
	line-height: 1.1;
	margin-bottom: 16px;
}
.hg-hero-sub {
	font-size: 17px;
	color: var(--hg-text-soft);
	margin-bottom: 28px;
	max-width: 580px;
	line-height: 1.6;
}
.hg-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* CTA boutons */
.hg-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--hg-radius);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.15s ease;
	white-space: nowrap;
	border: none;
	cursor: pointer;
}
.hg-cta-primary {
	background: var(--hg-accent);
	color: #fff;
}
.hg-cta-primary:hover {
	background: var(--hg-accent-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: var(--hg-shadow);
}
.hg-cta-secondary {
	background: var(--hg-primary);
	color: #fff;
}
.hg-cta-secondary:hover { background: var(--hg-primary-light); color: #fff; }
.hg-cta-ghost {
	background: transparent;
	color: var(--hg-primary);
	border: 1.5px solid var(--hg-primary);
}
.hg-cta-ghost:hover {
	background: var(--hg-primary);
	color: #fff;
}

/* Entrées par contrainte/budget/comparatifs */
.hg-entries { padding: 16px 0 48px; }
.hg-entries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.hg-entry-card {
	display: block;
	padding: 24px;
	background: var(--hg-surface);
	border-radius: var(--hg-radius-md);
	border: 1px solid var(--hg-border);
	border-left: 4px solid var(--hg-accent);
	transition: all 0.2s ease;
	color: var(--hg-text);
}
.hg-entry-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--hg-shadow);
	color: var(--hg-text);
}
.hg-entry-card.hg-entry-dark { border-left-color: var(--hg-primary); }
.hg-entry-card.hg-entry-green { border-left-color: var(--hg-success); }
.hg-entry-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hg-text-soft);
	margin-bottom: 8px;
}
.hg-entry-card h2 {
	font-size: 20px;
	margin: 0 0 6px;
}
.hg-entry-card p {
	font-size: 14px;
	color: var(--hg-text-soft);
	margin: 0;
}
@media (max-width: 768px) {
	.hg-entries-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Top produits & sections */
.hg-top-products,
.hg-last-comp,
.hg-related {
	padding: 48px 0;
	background: var(--hg-surface);
	border-top: 1px solid var(--hg-border);
}
.hg-section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 28px;
	gap: 16px;
	flex-wrap: wrap;
}
.hg-section-header h2 { margin: 0; }
.hg-section-meta { font-size: 13px; color: var(--hg-text-soft); }
.hg-link-all { font-size: 14px; font-weight: 600; color: var(--hg-accent); }

.hg-products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 900px) { .hg-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hg-products-grid { grid-template-columns: 1fr; } }

/* Product card */
.hg-product-card {
	background: var(--hg-surface);
	border: 1px solid var(--hg-border);
	border-radius: var(--hg-radius-md);
	overflow: hidden;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
}
.hg-product-card:hover {
	border-color: var(--hg-accent);
	transform: translateY(-2px);
	box-shadow: var(--hg-shadow);
}
.hg-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
	flex: 1;
}
.hg-card-thumb {
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--hg-border);
}
.hg-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hg-product-card:hover .hg-card-thumb img { transform: scale(1.04); }
.hg-card-body { padding: 14px 16px; }
.hg-card-meta { margin-bottom: 8px; }
.hg-card-score {
	display: inline-block;
	background: var(--hg-accent);
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	padding: 3px 8px;
	border-radius: var(--hg-radius-sm);
	font-family: var(--hg-font-display);
}
.hg-card-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 6px;
	line-height: 1.3;
}
.hg-card-verdict {
	font-size: 13px;
	color: var(--hg-text-soft);
	margin: 0 0 8px;
	line-height: 1.5;
}
.hg-card-prix {
	font-family: var(--hg-font-display);
	font-size: 17px;
	font-weight: 600;
	color: var(--hg-primary);
}
.hg-card-cta { padding: 0 16px 16px; }
.hg-card-cta .hg-cta {
	width: 100%;
	font-size: 13px;
	padding: 10px 14px;
}

/* Comparatifs sur home */
.hg-comp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 900px) { .hg-comp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hg-comp-grid { grid-template-columns: 1fr; } }
.hg-comp-card {
	background: var(--hg-surface);
	border: 1px solid var(--hg-border);
	border-radius: var(--hg-radius-md);
	overflow: hidden;
	color: inherit;
	transition: all 0.2s ease;
}
.hg-comp-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--hg-shadow);
	color: inherit;
	border-color: var(--hg-primary);
}
.hg-comp-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--hg-border); }
.hg-comp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hg-comp-body { padding: 16px 18px; }
.hg-comp-body h3 { font-size: 17px; margin: 0 0 8px; }
.hg-comp-body p { font-size: 13px; color: var(--hg-text-soft); margin: 0; }

/* Guides strip (footer dark home) */
.hg-guides-strip {
	background: var(--hg-primary);
	color: #fff;
	padding: 56px 0;
	margin-top: 0;
}
.hg-guides-strip h2 { color: #fff; margin-bottom: 24px; }
.hg-guides-strip .hg-kicker { color: var(--hg-accent); margin-bottom: 8px; }
.hg-guides-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
@media (max-width: 700px) { .hg-guides-grid { grid-template-columns: 1fr; } }
.hg-guide-link {
	display: block;
	background: var(--hg-primary-light);
	color: var(--hg-primary-soft);
	padding: 14px 18px;
	border-radius: var(--hg-radius);
	font-size: 14px;
	transition: all 0.15s ease;
}
.hg-guide-link:hover { background: rgba(255,107,53,0.15); color: #fff; }
.hg-arrow { color: var(--hg-accent); margin-right: 8px; font-weight: 600; }

/* ============== SINGLE ============== */

.hg-single {
	max-width: var(--hg-container-narrow);
	padding-top: 24px;
	padding-bottom: 64px;
}
.hg-single-produit, .hg-single-comparatif { max-width: var(--hg-container); }

.hg-single-header { margin-bottom: 28px; }
.hg-single-title {
	font-size: clamp(26px, 4vw, 38px);
	line-height: 1.15;
	margin: 0 0 12px;
}
.hg-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: var(--hg-text-soft);
}
.hg-single-meta span[aria-hidden] { opacity: 0.5; }

/* Verdict 30s */
.hg-verdict-30s {
	background: var(--hg-primary);
	color: #fff;
	padding: 22px 26px;
	border-radius: var(--hg-radius-md);
	margin: 0 0 32px;
	border-left: 4px solid var(--hg-accent);
}
.hg-verdict-label {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hg-accent);
	font-weight: 700;
	margin-bottom: 8px;
}
.hg-verdict-text {
	font-size: 17px;
	line-height: 1.5;
	color: #fff;
	margin: 0 0 14px;
	font-weight: 500;
}
.hg-verdict-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	font-size: 14px;
}
.hg-verdict-grid > div {
	background: var(--hg-primary-light);
	padding: 12px 14px;
	border-radius: var(--hg-radius);
}
.hg-verdict-grid strong {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--hg-primary-soft);
	margin-bottom: 4px;
}
.hg-verdict-grid span {
	color: #fff;
	line-height: 1.5;
}
@media (max-width: 600px) {
	.hg-verdict-grid { grid-template-columns: 1fr; gap: 8px; }
}

/* Single top : photo + scorebox */
.hg-single-top {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 24px;
	margin-bottom: 32px;
}
@media (max-width: 768px) {
	.hg-single-top { grid-template-columns: 1fr; }
}
.hg-single-image {
	background: var(--hg-surface);
	border: 1px solid var(--hg-border);
	border-radius: var(--hg-radius-md);
	overflow: hidden;
	aspect-ratio: 4/3;
}
.hg-single-image img { width: 100%; height: 100%; object-fit: cover; }

/* Scorebox */
.hg-scorebox {
	background: var(--hg-surface);
	border: 1px solid var(--hg-border);
	border-radius: var(--hg-radius-md);
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
}
.hg-scorebox-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}
.hg-score-circle {
	width: 60px;
	height: 60px;
	background: var(--hg-accent);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--hg-font-display);
	font-size: 22px;
	font-weight: 700;
	flex-shrink: 0;
}
.hg-scorebox-label {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hg-text-soft);
	font-weight: 600;
	margin-bottom: 2px;
}
.hg-scorebox-verdict {
	font-size: 15px;
	font-weight: 600;
	color: var(--hg-primary);
}
.hg-score-list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	font-size: 13px;
}
.hg-score-list li {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	border-bottom: 1px dashed var(--hg-border);
}
.hg-score-list li:last-child { border-bottom: none; }
.hg-score-list strong { font-weight: 600; }

.hg-price {
	font-family: var(--hg-font-display);
	font-size: 26px;
	font-weight: 700;
	color: var(--hg-primary);
}
.hg-prime {
	font-size: 12px;
	color: var(--hg-success);
	font-weight: 600;
	margin: 4px 0 14px;
}
.hg-scorebox .hg-cta {
	margin-top: auto;
	width: 100%;
	font-size: 15px;
	padding: 14px 20px;
}
.hg-affiliate-note {
	font-size: 11px;
	color: var(--hg-text-muted);
	text-align: center;
	margin-top: 8px;
}

/* Pros & Contras */
.hg-proscons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 0 0 36px;
}
@media (max-width: 600px) { .hg-proscons { grid-template-columns: 1fr; } }
.hg-pros, .hg-cons {
	border-radius: 0 var(--hg-radius) var(--hg-radius) 0;
	padding: 14px 18px;
}
.hg-pros {
	background: var(--hg-success-soft);
	border-left: 4px solid var(--hg-success);
}
.hg-cons {
	background: var(--hg-danger-soft);
	border-left: 4px solid var(--hg-danger);
}
.hg-proscons-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.hg-pros .hg-proscons-label { color: var(--hg-success); }
.hg-cons .hg-proscons-label { color: var(--hg-danger); }
.hg-pros ul, .hg-cons ul { list-style: none; margin: 0; padding: 0; }
.hg-pros li, .hg-cons li {
	font-size: 14px;
	line-height: 1.6;
	padding: 4px 0 4px 20px;
	position: relative;
}
.hg-pros li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--hg-success);
	font-weight: 700;
}
.hg-cons li::before {
	content: "✗";
	position: absolute;
	left: 0;
	color: var(--hg-danger);
	font-weight: 700;
}

/* Single content (le texte rédactionnel) */
.hg-single-content {
	font-size: 17px;
	line-height: 1.75;
	color: var(--hg-text);
	max-width: 720px;
	margin: 0 auto;
}
.hg-single-content h2 {
	font-size: clamp(22px, 3vw, 28px);
	margin: 2em 0 0.7em;
	scroll-margin-top: 80px;
}
.hg-single-content h3 {
	font-size: 20px;
	margin: 1.6em 0 0.5em;
}
.hg-single-content p { margin: 0 0 1em; }
.hg-single-content ul, .hg-single-content ol {
	margin: 0 0 1.2em;
	padding-left: 24px;
}
.hg-single-content li { margin-bottom: 8px; }
.hg-single-content blockquote {
	border-left: 4px solid var(--hg-accent);
	padding: 12px 20px;
	margin: 1.5em 0;
	background: var(--hg-surface);
	border-radius: 0 var(--hg-radius) var(--hg-radius) 0;
	font-style: italic;
	color: var(--hg-text-soft);
}
.hg-single-content a {
	color: var(--hg-primary);
	text-decoration: underline;
	text-decoration-color: var(--hg-accent);
	text-underline-offset: 3px;
}
.hg-single-content a:hover { color: var(--hg-accent); }
.hg-single-content img {
	border-radius: var(--hg-radius-md);
	margin: 1em 0;
}

/* Specs table */
.hg-section-specs {
	max-width: 720px;
	margin: 36px auto;
}
.hg-specs-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--hg-surface);
	border-radius: var(--hg-radius-md);
	overflow: hidden;
	border: 1px solid var(--hg-border);
}
.hg-specs-table th, .hg-specs-table td {
	padding: 12px 18px;
	text-align: left;
	font-size: 14px;
	border-bottom: 1px solid var(--hg-border);
}
.hg-specs-table tr:last-child th, .hg-specs-table tr:last-child td { border-bottom: none; }
.hg-specs-table th {
	color: var(--hg-text-soft);
	font-weight: 500;
	width: 40%;
}
.hg-specs-table td { font-weight: 600; }

/* CTA mid-article */
.hg-cta-mid {
	max-width: 720px;
	margin: 36px auto;
}
.hg-cta-mid-inner {
	background: var(--hg-primary);
	color: #fff;
	border-radius: var(--hg-radius-md);
	padding: 24px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	border-left: 4px solid var(--hg-accent);
}
.hg-cta-mid-label {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hg-accent);
	font-weight: 700;
	margin-bottom: 4px;
}
.hg-cta-mid-title {
	font-family: var(--hg-font-display);
	font-size: 18px;
	font-weight: 600;
}
.hg-cta-mid-prix {
	font-family: var(--hg-font-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--hg-primary-soft);
	margin-top: 4px;
}

/* Alternatives */
.hg-alternatives {
	max-width: 720px;
	margin: 48px auto;
}
.hg-alternatives h2 { text-align: center; margin-bottom: 24px; }
.hg-alternatives-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media (max-width: 600px) { .hg-alternatives-grid { grid-template-columns: 1fr; } }
.hg-alt-card {
	background: var(--hg-surface);
	border: 1px solid var(--hg-border);
	border-radius: var(--hg-radius-md);
	padding: 18px;
	display: flex;
	flex-direction: column;
}
.hg-alt-label {
	display: inline-block;
	background: var(--hg-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: var(--hg-radius-sm);
	margin-bottom: 8px;
	align-self: flex-start;
}
.hg-alt-sub { font-size: 12px; color: var(--hg-text-soft); margin-bottom: 12px; }
.hg-alt-link { display: block; color: inherit; }
.hg-alt-link img {
	border-radius: var(--hg-radius);
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	margin-bottom: 10px;
}
.hg-alt-link h3 {
	font-size: 16px;
	margin: 0 0 8px;
}
.hg-alt-meta {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 13px;
}
.hg-alt-score {
	background: var(--hg-accent);
	color: #fff;
	padding: 2px 8px;
	border-radius: var(--hg-radius-sm);
	font-weight: 700;
}
.hg-alt-prix { font-weight: 600; }
.hg-alt-ctas {
	display: flex;
	gap: 8px;
	margin-top: auto;
}
.hg-alt-ctas .hg-cta { flex: 1; font-size: 12px; padding: 8px 12px; }

/* FAQ */
.hg-section-faq {
	max-width: 720px;
	margin: 48px auto;
}
.hg-faq { display: flex; flex-direction: column; gap: 8px; }
.hg-faq-item {
	background: var(--hg-surface);
	border: 1px solid var(--hg-border);
	border-radius: var(--hg-radius-md);
	overflow: hidden;
}
.hg-faq-item summary {
	cursor: pointer;
	padding: 14px 18px;
	font-weight: 600;
	font-size: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
}
.hg-faq-item summary::-webkit-details-marker { display: none; }
.hg-faq-item summary::after {
	content: "+";
	color: var(--hg-accent);
	font-size: 22px;
	font-weight: 400;
	transition: transform 0.2s ease;
}
.hg-faq-item[open] summary::after { transform: rotate(45deg); }
.hg-faq-answer {
	padding: 0 18px 16px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--hg-text-soft);
}

/* Sticky CTA mobile */
.hg-sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--hg-primary);
	border-top: 2px solid var(--hg-accent);
	padding: 10px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	z-index: 90;
	transform: translateY(110%);
	transition: transform 0.3s ease;
}
.hg-sticky-cta.is-visible { transform: translateY(0); }
.hg-sticky-info { flex: 1; min-width: 0; }
.hg-sticky-title {
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.hg-sticky-prix {
	font-family: var(--hg-font-display);
	color: var(--hg-primary-soft);
	font-size: 14px;
	font-weight: 600;
}
.hg-sticky-cta .hg-cta {
	font-size: 13px;
	padding: 10px 16px;
}
@media (min-width: 1024px) { .hg-sticky-cta { display: none !important; } }

/* ============== ARCHIVES ============== */

.hg-archive {
	padding: 32px 0 64px;
	max-width: var(--hg-container);
}
.hg-archive-header {
	margin-bottom: 32px;
	max-width: 760px;
}
.hg-archive-header h1 { margin: 0 0 8px; }
.hg-archive-desc, .hg-archive-header p { color: var(--hg-text-soft); font-size: 16px; }

.hg-archive-filters {
	background: var(--hg-surface);
	border: 1px solid var(--hg-border);
	border-radius: var(--hg-radius-md);
	padding: 14px 18px;
	margin-bottom: 28px;
}
.hg-filter-group { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 8px; }
.hg-filter-group:last-child { margin-bottom: 0; }
.hg-filter-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--hg-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-right: 6px;
}
.hg-filter-chip {
	display: inline-block;
	padding: 5px 12px;
	background: var(--hg-bg);
	border: 1px solid var(--hg-border);
	border-radius: 100px;
	font-size: 13px;
	color: var(--hg-text);
	transition: all 0.15s ease;
}
.hg-filter-chip:hover {
	background: var(--hg-accent);
	color: #fff;
	border-color: var(--hg-accent);
}

/* Posts grid (blog) */
.hg-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 900px) { .hg-posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hg-posts-grid { grid-template-columns: 1fr; } }
.hg-post-card {
	background: var(--hg-surface);
	border: 1px solid var(--hg-border);
	border-radius: var(--hg-radius-md);
	overflow: hidden;
	transition: all 0.2s ease;
}
.hg-post-card:hover { transform: translateY(-2px); box-shadow: var(--hg-shadow); }
.hg-post-thumb { display: block; aspect-ratio: 16/9; background: var(--hg-border); overflow: hidden; }
.hg-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hg-post-body { padding: 16px 18px; }
.hg-post-type {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--hg-accent);
	margin-bottom: 6px;
}
.hg-post-title { font-size: 17px; margin: 0 0 8px; }
.hg-post-title a { color: var(--hg-primary); }
.hg-post-title a:hover { color: var(--hg-accent); }
.hg-post-excerpt { font-size: 14px; color: var(--hg-text-soft); margin: 0 0 12px; }
.hg-post-readmore { font-size: 13px; font-weight: 600; color: var(--hg-accent); }

/* Pagination */
.pagination, .nav-links {
	margin: 36px 0 0;
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
}
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	background: var(--hg-surface);
	border: 1px solid var(--hg-border);
	border-radius: var(--hg-radius);
	color: var(--hg-text);
	font-size: 14px;
	text-decoration: none;
	transition: all 0.15s ease;
}
.page-numbers:hover { background: var(--hg-accent); color: #fff; border-color: var(--hg-accent); }
.page-numbers.current { background: var(--hg-primary); color: #fff; border-color: var(--hg-primary); font-weight: 600; }

/* 404 */
.hg-404 {
	text-align: center;
	padding: 80px 24px;
}
.hg-404 h1 { font-size: 36px; margin-bottom: 12px; }
.hg-404 p { font-size: 17px; color: var(--hg-text-soft); margin-bottom: 28px; }
.hg-404-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============== FOOTER ============== */

.hg-footer {
	background: var(--hg-primary);
	color: var(--hg-primary-soft);
	padding: 56px 0 24px;
	margin-top: 48px;
}
.hg-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--hg-primary-light);
}
@media (max-width: 768px) {
	.hg-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
	.hg-footer-brand { grid-column: 1 / -1; }
}
.hg-footer .hg-logo { color: #fff; margin-bottom: 12px; }
.hg-footer .hg-logo:hover { color: var(--hg-accent); }
.hg-footer-brand p { font-size: 14px; max-width: 320px; margin: 0; line-height: 1.6; }
.hg-footer-col h4 {
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 14px;
}
.hg-footer-col ul { list-style: none; margin: 0; padding: 0; }
.hg-footer-col li { margin-bottom: 8px; }
.hg-footer-col a { color: var(--hg-primary-soft); font-size: 14px; }
.hg-footer-col a:hover { color: var(--hg-accent); }
.hg-footer-legal {
	padding-top: 24px;
	font-size: 12px;
	color: var(--hg-text-muted);
	line-height: 1.6;
}
.hg-footer-legal p { margin: 0 0 6px; }
.hg-footer-legal p:last-child { margin: 0; }

/* ----- Search form ----- */
.search-form { display: flex; gap: 8px; }
.search-form input[type="search"] {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid var(--hg-border);
	border-radius: var(--hg-radius);
	font-family: inherit;
	font-size: 14px;
}
.search-form input[type="submit"] {
	padding: 10px 18px;
	background: var(--hg-accent);
	color: #fff;
	border: none;
	border-radius: var(--hg-radius);
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}

/* ----- Print ----- */
@media print {
	.hg-header, .hg-footer, .hg-sticky-cta, .hg-cta, .hg-affiliate-note { display: none !important; }
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
