/* HomeGuarde — systeme de design.
   Le jaune ne sert qu'a trois choses : l'action, l'economie, la mise en evidence.
   Partout ailleurs, le contraste vient du noir et du gris. */

:root {
	--hg-yellow: #FFC107;
	--hg-yellow-dark: #E5A800;
	--hg-yellow-soft: #FFF6DC;
	--hg-black: #000000;
	--hg-ink: #14161A;
	--hg-text: #1F2329;
	--hg-muted: #5C6570;
	--hg-border: #E3E6EA;
	--hg-border-strong: #C8CDD4;
	--hg-surface: #FFFFFF;
	--hg-surface-alt: #F6F7F9;
	--hg-surface-dark: #0D0F12;
	--hg-surface-dark-2: #171B20;
	--hg-success: #16794A;
	--hg-success-soft: #E7F4EE;
	--hg-danger: #B22222;
	--hg-danger-soft: #FBEDED;

	--hg-radius-sm: 6px;
	--hg-radius: 10px;
	--hg-radius-lg: 14px;

	--hg-shadow-sm: 0 1px 2px rgba(15, 20, 27, .05);
	--hg-shadow: 0 2px 8px rgba(15, 20, 27, .06);
	--hg-shadow-lg: 0 12px 32px rgba(15, 20, 27, .10);

	--hg-space-1: 4px;  --hg-space-2: 8px;  --hg-space-3: 12px;
	--hg-space-4: 16px; --hg-space-5: 24px; --hg-space-6: 32px;
	--hg-space-7: 48px; --hg-space-8: 64px; --hg-space-9: 88px;

	--hg-container: 1320px;
	--hg-container-narrow: 760px;

	--hg-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--hg-fs-hero: clamp(2.1rem, 1.35rem + 2.6vw, 3.4rem);
	--hg-fs-h1: clamp(1.75rem, 1.25rem + 1.8vw, 2.6rem);
	--hg-fs-h2: clamp(1.4rem, 1.1rem + 1.1vw, 2rem);
	--hg-fs-h3: 1.1rem;
	--hg-fs-body: 1rem;
	--hg-fs-sm: .875rem;
	--hg-fs-xs: .78rem;
}

/* ---------- Base ---------- */
.hg body, body.hg { color: var(--hg-text); font-family: var(--hg-font); }
.hg-main { background: var(--hg-surface); }
.hg-container { width: 100%; max-width: var(--hg-container); margin-inline: auto; padding-inline: var(--hg-space-4); }
.hg-container--narrow { max-width: var(--hg-container-narrow); }
.hg-section { margin-block: var(--hg-space-8); }
.hg-section-band { padding-block: var(--hg-space-8); background: var(--hg-surface); }
.hg-section-band--grey { background: var(--hg-surface-alt); }
.hg-section-band--dark { background: var(--hg-surface-dark); color: #E9ECF0; }
.hg-section-band--dark p { color: #B9C0C9; }
.hg-muted { color: var(--hg-muted); }
.hg-icon { flex: none; vertical-align: middle; }

.hg-h1 { font-size: var(--hg-fs-h1); line-height: 1.12; letter-spacing: -.02em; font-weight: 800; color: var(--hg-ink); margin: 0 0 var(--hg-space-3); }
.hg-h2 { font-size: var(--hg-fs-h2); line-height: 1.18; letter-spacing: -.015em; font-weight: 750; color: var(--hg-ink); margin: 0 0 var(--hg-space-4); }
.hg-h2--light { color: #fff; }
.hg-eyebrow { font-size: var(--hg-fs-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--hg-muted); margin: 0 0 var(--hg-space-2); }
.hg-section__lead { font-size: 1.05rem; color: var(--hg-muted); max-width: 62ch; margin: calc(var(--hg-space-4) * -1 + 4px) 0 var(--hg-space-5); }
.hg-section__lead--light { color: #AEB6C0; }
.hg-section__more { margin-top: var(--hg-space-5); }

:where(.hg-main) a { color: inherit; }
:where(.hg-main) a:focus-visible,
:where(.hg-main) button:focus-visible,
:where(.hg-main) input:focus-visible,
:where(.hg-main) select:focus-visible,
:where(.hg-main) summary:focus-visible,
.hg-header a:focus-visible, .hg-header button:focus-visible, .hg-header input:focus-visible,
.hg-footer a:focus-visible {
	outline: 3px solid var(--hg-yellow);
	outline-offset: 2px;
	border-radius: var(--hg-radius-sm);
}
.hg-section-band--dark a:focus-visible, .hg-footer a:focus-visible { outline-color: var(--hg-yellow); }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.hg-skip { position: absolute; left: -9999px; }
.hg-skip:focus { left: var(--hg-space-4); top: var(--hg-space-4); z-index: 999; background: #fff; padding: 10px 16px; border-radius: var(--hg-radius); box-shadow: var(--hg-shadow-lg); }

/* ---------- Boutons ---------- */
.hg-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 11px 18px; border-radius: var(--hg-radius);
	font-size: var(--hg-fs-sm); font-weight: 650; line-height: 1.2;
	text-decoration: none; border: 1px solid transparent; cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease, transform .12s ease;
}
/* Texte noir sur jaune : le blanc ne passe pas le contraste sur #FFC107. */
.hg-btn--primary { background: var(--hg-yellow); color: #14161A; border-color: var(--hg-yellow); }
.hg-btn--primary:hover { background: var(--hg-yellow-dark); border-color: var(--hg-yellow-dark); }
.hg-btn--secondary { background: #fff; color: var(--hg-ink); border-color: var(--hg-border-strong); }
.hg-btn--secondary:hover { border-color: var(--hg-ink); }
.hg-btn--ghost { background: transparent; color: var(--hg-muted); border-color: transparent; text-decoration: underline; }
.hg-btn--ghost:hover { color: var(--hg-ink); }
.hg-btn--lg { padding: 14px 24px; font-size: 1rem; }
.hg-btn--sm { padding: 8px 12px; font-size: var(--hg-fs-xs); }
.hg-btn--block { width: 100%; }
.hg-section-band--dark .hg-btn--secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); }
.hg-section-band--dark .hg-btn--secondary:hover { border-color: #fff; }

.hg-link-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: var(--hg-fs-sm); font-weight: 600; color: var(--hg-ink); text-decoration: none; }
.hg-link-arrow:hover { text-decoration: underline; }
.hg-link-arrow .hg-icon { transition: transform .15s ease; }
.hg-link-arrow:hover .hg-icon { transform: translateX(3px); }

/* ---------- Badges, chips, score ---------- */
.hg-badge {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 3px 9px; border-radius: 999px;
	font-size: var(--hg-fs-xs); font-weight: 650; letter-spacing: .01em; white-space: nowrap;
	background: var(--hg-surface-alt); color: var(--hg-text); border: 1px solid var(--hg-border);
}
.hg-badge--pick { background: var(--hg-yellow); border-color: var(--hg-yellow); color: #14161A; }
.hg-badge--good { background: var(--hg-success-soft); border-color: #C9E6D8; color: var(--hg-success); }
.hg-badge--warn { background: var(--hg-danger-soft); border-color: #F0D2D2; color: var(--hg-danger); }
.hg-badge--neutral { background: #EEF1F4; border-color: #DDE2E7; color: #3B434C; }
.hg-badge--promo { background: var(--hg-ink); border-color: var(--hg-ink); color: var(--hg-yellow); }
.hg-badge--ad { background: #fff; border-color: var(--hg-border-strong); color: var(--hg-muted); font-weight: 600; }

.hg-chip {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 4px 10px; margin: 0 4px 4px 0; border-radius: var(--hg-radius-sm);
	background: var(--hg-surface-alt); border: 1px solid var(--hg-border);
	font-size: var(--hg-fs-xs); color: #3B434C; text-decoration: none;
}
.hg-chip--lg { padding: 7px 13px; font-size: var(--hg-fs-sm); background: #fff; }
.hg-chip--active { background: var(--hg-yellow); border-color: var(--hg-yellow); color: #14161A; font-weight: 600; }

.hg-score { display: inline-flex; align-items: baseline; gap: 2px; font-weight: 800; color: var(--hg-ink); }
.hg-score b { font-size: 1.05rem; }
.hg-score span { font-size: var(--hg-fs-xs); color: var(--hg-muted); font-weight: 600; }
.hg-score--lg b { font-size: 2rem; letter-spacing: -.02em; }
.hg-score--lg span { font-size: var(--hg-fs-sm); }

/* ---------- Cartes produit ---------- */
.hg-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--hg-space-4); }
.hg-product-grid--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.hg-card {
	display: flex; flex-direction: column; background: #fff;
	border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg);
	overflow: hidden; transition: border-color .15s ease, box-shadow .15s ease;
}
@media (hover: hover) {
	.hg-card:hover { border-color: var(--hg-border-strong); box-shadow: var(--hg-shadow); }
	.hg-card:hover .hg-card__img { transform: scale(1.025); }
}
.hg-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--hg-surface-alt); display: grid; place-items: center; }
.hg-card__link { display: block; width: 100%; height: 100%; }
.hg-card__img, .hg-card__media img { width: 100%; height: 100%; object-fit: contain; padding: var(--hg-space-4); transition: transform .25s ease; }
.hg-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--hg-border-strong); }
.hg-card__badges { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; gap: 5px; }
.hg-card__promo { position: absolute; bottom: 10px; left: 10px; z-index: 2; }
.hg-compare-toggle {
	position: absolute; top: 8px; right: 8px; z-index: 2;
	display: inline-flex; align-items: center; gap: 5px;
	padding: 5px 9px; border-radius: 999px; cursor: pointer;
	background: #fff; border: 1px solid var(--hg-border-strong);
	font-size: var(--hg-fs-xs); font-weight: 600; color: var(--hg-muted);
}
.hg-compare-toggle .hg-icon { opacity: .35; }
.hg-compare-toggle[aria-pressed="true"] { background: var(--hg-yellow); border-color: var(--hg-yellow); color: #14161A; }
.hg-compare-toggle[aria-pressed="true"] .hg-icon { opacity: 1; }

.hg-card__body { display: flex; flex-direction: column; gap: var(--hg-space-2); padding: var(--hg-space-4); flex: 1; }
.hg-card__brand { font-size: var(--hg-fs-xs); font-weight: 650; text-transform: uppercase; letter-spacing: .07em; color: var(--hg-muted); margin: 0; }
.hg-card__title { font-size: 1rem; line-height: 1.32; font-weight: 700; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hg-card__title a { text-decoration: none; }
.hg-card__title a:hover { text-decoration: underline; }
.hg-card__facts { display: flex; flex-wrap: wrap; margin-top: 2px; }
.hg-card__price { margin-top: auto; padding-top: var(--hg-space-2); }
.hg-card .hg-btn { margin-top: var(--hg-space-2); }
.hg-card .hg-link-arrow { align-self: flex-start; font-size: var(--hg-fs-xs); color: var(--hg-muted); }

.hg-price { display: flex; align-items: baseline; gap: 5px; }
.hg-price strong { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; color: var(--hg-ink); }
.hg-price__from { font-size: var(--hg-fs-xs); color: var(--hg-muted); }
.hg-price--empty { font-size: var(--hg-fs-sm); color: var(--hg-muted); font-style: italic; }
.hg-price__sub, .hg-price__tco { font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: 2px 0 0; }
.hg-price__tco strong { font-size: var(--hg-fs-xs); color: var(--hg-text); }

/* ---------- Etats vides ---------- */
.hg-empty {
	display: flex; flex-direction: column; align-items: center; gap: var(--hg-space-2);
	text-align: center; padding: var(--hg-space-7) var(--hg-space-4);
	background: var(--hg-surface-alt); border: 1px dashed var(--hg-border-strong);
	border-radius: var(--hg-radius-lg); color: var(--hg-muted);
}
.hg-empty__title { font-weight: 650; color: var(--hg-text); margin: 0; }
.hg-empty__text { margin: 0; max-width: 46ch; font-size: var(--hg-fs-sm); }
.hg-empty .hg-btn { margin-top: var(--hg-space-2); }

/* ---------- Mentions et bandeaux ---------- */
.hg-disclosure {
	display: flex; align-items: flex-start; gap: 8px;
	font-size: var(--hg-fs-xs); color: var(--hg-muted); line-height: 1.5;
	background: var(--hg-yellow-soft); border: 1px solid #F3E2B4;
	border-radius: var(--hg-radius); padding: 10px 13px; margin: var(--hg-space-4) 0;
}
.hg-disclosure .hg-icon { color: var(--hg-yellow-dark); margin-top: 1px; }
.hg-disclosure a { font-weight: 600; color: var(--hg-ink); }

.hg-notice { background: var(--hg-surface-alt); border: 1px solid var(--hg-border); border-radius: var(--hg-radius); padding: var(--hg-space-3) var(--hg-space-4); margin-bottom: var(--hg-space-3); }
.hg-notice__main { margin: 0 0 3px; font-size: var(--hg-fs-sm); }
.hg-notice__sub { margin: 0; font-size: var(--hg-fs-xs); color: var(--hg-muted); }
.hg-notice__sub a { font-weight: 600; color: var(--hg-ink); }

/* ---------- Fil d'Ariane ---------- */
.hg-breadcrumb { padding: var(--hg-space-4) 0; font-size: var(--hg-fs-xs); color: var(--hg-muted); }
.hg-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.hg-breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--hg-border-strong); }
.hg-breadcrumb a { text-decoration: none; }
.hg-breadcrumb a:hover { text-decoration: underline; }

/* ---------- Recherche ---------- */
.hg-search { position: relative; display: flex; align-items: center; gap: var(--hg-space-2); }
.hg-search__icon { position: absolute; left: 14px; color: var(--hg-muted); pointer-events: none; display: flex; }
.hg-search__input {
	flex: 1; width: 100%; padding: 12px 14px 12px 44px;
	border: 1px solid var(--hg-border-strong); border-radius: var(--hg-radius);
	font-size: var(--hg-fs-sm); background: #fff; color: var(--hg-text);
}
.hg-search--lg .hg-search__input { padding: 16px 16px 16px 48px; font-size: 1rem; border-radius: var(--hg-radius-lg); }
.hg-search--lg { box-shadow: var(--hg-shadow); border-radius: var(--hg-radius-lg); }
.hg-search__input::placeholder { color: #8B939C; }
.hg-search__results {
	position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
	background: #fff; border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg);
	box-shadow: var(--hg-shadow-lg); max-height: 62vh; overflow-y: auto; padding: var(--hg-space-2);
}
.hg-search__group-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--hg-muted); padding: 8px 10px 4px; margin: 0; }
.hg-search__item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--hg-radius-sm); text-decoration: none; color: var(--hg-text); }
.hg-search__item:hover, .hg-search__item.is-active { background: var(--hg-surface-alt); }
.hg-search__item img { width: 34px; height: 34px; object-fit: contain; border-radius: var(--hg-radius-sm); background: var(--hg-surface-alt); }
.hg-search__item-label { font-size: var(--hg-fs-sm); font-weight: 600; }
.hg-search__item-meta { margin-left: auto; font-size: var(--hg-fs-xs); color: var(--hg-muted); }
.hg-search__empty { padding: 14px; font-size: var(--hg-fs-sm); color: var(--hg-muted); }
@media (max-width: 640px) { .hg-search__submit { display: none; } }

/* ---------- Header ---------- */
.hg-header { position: sticky; top: 0; z-index: 80; background: #fff; border-bottom: 1px solid var(--hg-border); }
.hg-header__bar { display: flex; align-items: center; gap: var(--hg-space-5); min-height: 68px; }
.hg-header__logo { display: flex; align-items: center; flex: none; }
.hg-header__logo img { max-height: 40px; width: auto; }
.hg-logo__text { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; color: var(--hg-ink); }
.hg-logo__text b { color: var(--hg-yellow-dark); font-weight: 800; }
.hg-header__nav { flex: 1; }
.hg-header__actions { display: flex; align-items: center; gap: var(--hg-space-2); margin-left: auto; }
.hg-header__search-toggle, .hg-burger {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: var(--hg-radius);
	background: #fff; border: 1px solid var(--hg-border); cursor: pointer; color: var(--hg-ink);
}
.hg-burger { display: none; }
.hg-header__compare { position: relative; }
.hg-header__compare-count {
	display: none; position: absolute; top: -6px; right: -6px;
	min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px;
	background: var(--hg-ink); color: var(--hg-yellow);
	font-size: 11px; font-weight: 700; line-height: 19px; text-align: center;
}
.hg-header__compare.is-active .hg-header__compare-count { display: block; }
.hg-header__searchbar { display: none; padding: 0 0 var(--hg-space-4); }
.hg-header__searchbar.is-open { display: block; }

.hg-nav > ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.hg-nav > ul > li > a {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 10px 13px; border-radius: var(--hg-radius);
	font-size: var(--hg-fs-sm); font-weight: 650; color: var(--hg-ink); text-decoration: none;
}
.hg-nav > ul > li > a:hover, .hg-nav > ul > li:focus-within > a { background: var(--hg-surface-alt); }
.hg-nav .sub-menu { list-style: none; margin: 0; padding: 0; }

.hg-mega { position: absolute; left: 0; right: 0; top: 100%; z-index: 70; background: #fff; border-top: 1px solid var(--hg-border); border-bottom: 1px solid var(--hg-border); box-shadow: var(--hg-shadow-lg); display: none; }
.hg-mega.is-open { display: block; }
.hg-mega__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--hg-space-5); padding: var(--hg-space-6) var(--hg-space-4); max-width: var(--hg-container); margin-inline: auto; }
.hg-mega__col h3 { font-size: var(--hg-fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--hg-muted); margin: 0 0 var(--hg-space-3); }
.hg-mega__col h3 a { text-decoration: none; color: inherit; }
.hg-mega__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.hg-mega__col a { display: block; padding: 6px 8px; margin-left: -8px; border-radius: var(--hg-radius-sm); font-size: var(--hg-fs-sm); color: var(--hg-text); text-decoration: none; }
.hg-mega__col a:hover { background: var(--hg-surface-alt); color: var(--hg-ink); }

@media (max-width: 1024px) {
	.hg-burger { display: inline-flex; }
	.hg-header__nav { position: fixed; inset: 68px 0 0 auto; width: min(88vw, 380px); background: #fff; border-left: 1px solid var(--hg-border); transform: translateX(100%); transition: transform .2s ease; overflow-y: auto; padding: var(--hg-space-4); z-index: 90; }
	.hg-header__nav.is-open { transform: none; }
	.hg-nav > ul { flex-direction: column; gap: 0; }
	.hg-nav > ul > li { border-bottom: 1px solid var(--hg-border); }
	.hg-nav > ul > li > a { padding: 14px 4px; justify-content: space-between; width: 100%; }
	.hg-mega { position: static; display: none; box-shadow: none; border: 0; }
	.hg-mega.is-open { display: block; }
	.hg-mega__inner { grid-template-columns: 1fr; padding: 0 0 var(--hg-space-4); gap: var(--hg-space-4); }
}

/* ---------- Hero ---------- */
.hg-hero { background: linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 100%); padding-block: var(--hg-space-8) var(--hg-space-9); border-bottom: 1px solid var(--hg-border); }
.hg-hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: var(--hg-space-8); align-items: center; }
.hg-hero__title { font-size: var(--hg-fs-hero); line-height: 1.06; letter-spacing: -.03em; font-weight: 820; color: var(--hg-ink); margin: 0 0 var(--hg-space-4); }
.hg-hero__lead { font-size: 1.06rem; line-height: 1.6; color: var(--hg-muted); max-width: 54ch; margin: 0 0 var(--hg-space-5); }
.hg-hero__search-label { font-size: var(--hg-fs-sm); font-weight: 650; margin: 0 0 var(--hg-space-2); }
.hg-hero__cta { display: flex; flex-wrap: wrap; gap: var(--hg-space-3); margin-top: var(--hg-space-5); }
.hg-trust { display: flex; flex-wrap: wrap; gap: var(--hg-space-4); list-style: none; margin: var(--hg-space-5) 0 0; padding: 0; }
.hg-trust li { display: flex; align-items: center; gap: 7px; font-size: var(--hg-fs-xs); font-weight: 600; color: var(--hg-muted); }
.hg-trust .hg-icon { color: var(--hg-yellow-dark); }

.hg-hero__stage { position: relative; aspect-ratio: 1 / .92; background: var(--hg-surface-dark); border-radius: 24px; overflow: hidden; box-shadow: var(--hg-shadow-lg); }
.hg-hero__stage::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 70% 15%, rgba(255,193,7,.16), transparent 60%); }
.hg-hero__device { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 18px; border-radius: var(--hg-radius-lg); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(6px); }
.hg-hero__device span { font-size: 11px; font-weight: 600; letter-spacing: .04em; color: #C6CDD6; }
.hg-hero__device .hg-icon { color: var(--hg-yellow); }
.hg-hero__device--cam { top: 9%; left: 8%; }
.hg-hero__device--hub { top: 40%; right: 9%; }
.hg-hero__device--bell { bottom: 11%; left: 16%; }
.hg-hero__phone { position: absolute; right: 12%; bottom: 9%; width: 46%; display: grid; gap: 6px; padding: 14px; border-radius: var(--hg-radius-lg); background: rgba(255,255,255,.95); box-shadow: var(--hg-shadow-lg); }
.hg-hero__phone-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--hg-muted); padding: 6px 8px; border-radius: var(--hg-radius-sm); background: var(--hg-surface-alt); }
.hg-hero__phone-row b { color: var(--hg-ink); }
.hg-hero__phone-row.is-best { background: var(--hg-yellow); }
.hg-hero__phone-row.is-best b { color: #14161A; }

@media (max-width: 900px) {
	.hg-hero__inner { grid-template-columns: 1fr; gap: var(--hg-space-6); }
	.hg-hero__visual { order: -1; }
	.hg-hero__stage { aspect-ratio: 5 / 4; }
}

/* ---------- Cartes categories ---------- */
.hg-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: var(--hg-space-3); }
.hg-cat-card {
	display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto;
	align-items: center; column-gap: var(--hg-space-3); row-gap: 2px;
	padding: var(--hg-space-4); background: #fff; border: 1px solid var(--hg-border);
	border-radius: var(--hg-radius-lg); text-decoration: none; color: var(--hg-text);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.hg-cat-card:hover { border-color: var(--hg-ink); box-shadow: var(--hg-shadow); }
.hg-cat-card__icon { grid-row: span 2; display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--hg-radius); background: var(--hg-yellow-soft); color: var(--hg-ink); }
.hg-cat-card__label { font-weight: 700; font-size: var(--hg-fs-sm); }
.hg-cat-card__desc { grid-column: 2; font-size: var(--hg-fs-xs); color: var(--hg-muted); line-height: 1.35; }
.hg-cat-card__arrow { grid-row: span 2; color: var(--hg-border-strong); }
.hg-cat-card:hover .hg-cat-card__arrow { color: var(--hg-ink); }
.hg-cat-card--alt .hg-cat-card__icon { background: var(--hg-ink); color: var(--hg-yellow); }

/* ---------- Onglets ---------- */
.hg-tabs__nav { display: flex; align-items: center; gap: 4px; border-bottom: 1px solid var(--hg-border); margin-bottom: var(--hg-space-5); overflow-x: auto; }
.hg-tabs__nav button {
	padding: 11px 16px; background: none; border: 0; border-bottom: 2px solid transparent;
	font-size: var(--hg-fs-sm); font-weight: 650; color: var(--hg-muted); cursor: pointer; white-space: nowrap;
}
.hg-tabs__nav button[aria-selected="true"] { color: var(--hg-ink); border-bottom-color: var(--hg-yellow); }
.hg-tabs__link { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; padding: 11px 8px; font-size: var(--hg-fs-sm); font-weight: 600; color: var(--hg-muted); text-decoration: none; white-space: nowrap; }

/* ---------- Bloc comparatif abonnement ---------- */
.hg-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--hg-space-4); }
.hg-split__card { background: var(--hg-surface-dark-2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--hg-radius-lg); padding: var(--hg-space-6); }
.hg-split__card h3 { font-size: 1.3rem; font-weight: 750; color: #fff; margin: 0 0 var(--hg-space-4); }
.hg-split__card .hg-list-check li { color: #D5DAE1; }
.hg-split__card .hg-icon { color: var(--hg-yellow); }
.hg-split__note { font-size: var(--hg-fs-xs); color: #8B939C; margin: var(--hg-space-4) 0; }

.hg-list-check, .hg-list-warn { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.hg-list-check li, .hg-list-warn li { display: flex; align-items: flex-start; gap: 9px; font-size: var(--hg-fs-sm); line-height: 1.45; }
.hg-list-check .hg-icon { color: var(--hg-success); margin-top: 2px; }
.hg-list-warn .hg-icon { color: var(--hg-muted); margin-top: 2px; }

/* ---------- Promotions ---------- */
.hg-promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--hg-space-4); }
.hg-promo-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg); overflow: hidden; }
.hg-promo-card__media { position: relative; display: block; aspect-ratio: 4 / 3; background: var(--hg-surface-alt); }
.hg-promo-card__media img { width: 100%; height: 100%; object-fit: contain; padding: var(--hg-space-4); }
.hg-promo-card__media .hg-badge { position: absolute; top: 10px; left: 10px; }
.hg-promo-card__body { display: flex; flex-direction: column; gap: 6px; padding: var(--hg-space-4); flex: 1; }
.hg-promo-card__body h2, .hg-promo-card__body h3 { font-size: .95rem; line-height: 1.32; font-weight: 700; margin: 0; }
.hg-promo-card__body a { text-decoration: none; }
.hg-promo-card__price { margin: 0; display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.hg-promo-card__price s { font-size: var(--hg-fs-xs); color: var(--hg-muted); }
.hg-promo-card__price strong { font-size: 1.25rem; font-weight: 800; }
.hg-promo-card__save { font-size: var(--hg-fs-xs); color: var(--hg-success); font-weight: 600; }
.hg-promo-card__meta { font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: 0; }
.hg-promo-card .hg-btn { margin-top: auto; }

/* ---------- Liens comparatifs et marques ---------- */
.hg-link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--hg-space-3); }
.hg-link-card { display: flex; align-items: center; justify-content: space-between; gap: var(--hg-space-3); padding: var(--hg-space-4); background: #fff; border: 1px solid var(--hg-border); border-radius: var(--hg-radius); font-size: var(--hg-fs-sm); font-weight: 600; text-decoration: none; color: var(--hg-text); }
.hg-link-card:hover { border-color: var(--hg-ink); }
.hg-link-card .hg-icon { color: var(--hg-border-strong); }
.hg-link-card:hover .hg-icon { color: var(--hg-ink); }

.hg-brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: var(--hg-space-3); }
.hg-brand-card { display: grid; place-items: center; aspect-ratio: 3 / 2; padding: var(--hg-space-4); background: #fff; border: 1px solid var(--hg-border); border-radius: var(--hg-radius); text-decoration: none; }
.hg-brand-card:hover { border-color: var(--hg-ink); }
.hg-brand-card img { max-width: 100%; max-height: 46px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .15s, opacity .15s; }
.hg-brand-card:hover img { filter: none; opacity: 1; }
.hg-brand-card__name { font-weight: 700; font-size: var(--hg-fs-sm); color: var(--hg-ink); }

.hg-brand-index { columns: 3 220px; column-gap: var(--hg-space-6); margin-top: var(--hg-space-4); }
.hg-brand-index__group { break-inside: avoid; margin-bottom: var(--hg-space-5); }
.hg-brand-index__group h3 { font-size: var(--hg-fs-sm); font-weight: 800; color: var(--hg-ink); border-bottom: 2px solid var(--hg-yellow); padding-bottom: 4px; margin: 0 0 var(--hg-space-2); }
.hg-brand-index ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 3px; }
.hg-brand-index a { font-size: var(--hg-fs-sm); text-decoration: none; }
.hg-brand-index a:hover { text-decoration: underline; }
.hg-input { width: 100%; max-width: 380px; padding: 11px 14px; border: 1px solid var(--hg-border-strong); border-radius: var(--hg-radius); font-size: var(--hg-fs-sm); }

/* ---------- Pourquoi / etapes ---------- */
.hg-why { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--hg-space-5); }
.hg-why__item h3 { font-size: var(--hg-fs-h3); font-weight: 700; margin: var(--hg-space-3) 0 6px; }
.hg-why__item p { font-size: var(--hg-fs-sm); color: var(--hg-muted); line-height: 1.55; margin: 0; }
.hg-why__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--hg-radius); background: var(--hg-yellow-soft); color: var(--hg-ink); }

.hg-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--hg-space-5); list-style: none; margin: 0; padding: 0; }
.hg-steps li { padding-top: var(--hg-space-4); border-top: 2px solid rgba(255,255,255,.14); }
.hg-steps li > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 999px; background: var(--hg-yellow); color: #14161A; font-weight: 800; font-size: var(--hg-fs-sm); }
.hg-steps h3 { font-size: var(--hg-fs-h3); font-weight: 700; color: #fff; margin: var(--hg-space-3) 0 6px; }
.hg-steps p { font-size: var(--hg-fs-sm); line-height: 1.55; margin: 0; }
.hg-steps__disclosure { margin-top: var(--hg-space-6); font-size: var(--hg-fs-xs); color: #8B939C; max-width: 74ch; }
.hg-steps__disclosure a { color: var(--hg-yellow); font-weight: 600; }

/* ---------- Guides ---------- */
.hg-guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--hg-space-4); }
.hg-guide-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg); overflow: hidden; }
.hg-guide-card:hover { border-color: var(--hg-border-strong); box-shadow: var(--hg-shadow); }
.hg-guide-card__media { display: block; aspect-ratio: 16 / 9; background: var(--hg-surface-alt); }
.hg-guide-card__media img { width: 100%; height: 100%; object-fit: cover; }
.hg-guide-card__body { display: flex; flex-direction: column; gap: 7px; padding: var(--hg-space-4); flex: 1; }
.hg-guide-card__body h2, .hg-guide-card__body h3 { font-size: 1.05rem; line-height: 1.3; font-weight: 700; margin: 0; }
.hg-guide-card__body h2 a, .hg-guide-card__body h3 a { text-decoration: none; }
.hg-guide-card__body p { font-size: var(--hg-fs-sm); color: var(--hg-muted); line-height: 1.5; margin: 0; }
.hg-guide-card__meta { font-size: var(--hg-fs-xs); color: var(--hg-muted); }
.hg-guide-card .hg-link-arrow { margin-top: auto; }

/* ---------- FAQ ---------- */
.hg-accordion { border-top: 1px solid var(--hg-border); }
.hg-accordion__item { border-bottom: 1px solid var(--hg-border); }
.hg-accordion h3 { margin: 0; }
.hg-accordion__trigger { display: flex; align-items: center; justify-content: space-between; gap: var(--hg-space-3); width: 100%; padding: 18px 4px; background: none; border: 0; text-align: left; font-size: 1rem; font-weight: 650; color: var(--hg-ink); cursor: pointer; }
.hg-accordion__trigger .hg-icon { flex: none; color: var(--hg-muted); transition: transform .18s ease; }
.hg-accordion__trigger[aria-expanded="true"] .hg-icon { transform: rotate(180deg); }
.hg-accordion__panel { padding: 0 4px 18px; font-size: var(--hg-fs-sm); color: var(--hg-muted); line-height: 1.62; max-width: 76ch; }
.hg-accordion__panel p { margin: 0 0 10px; }

/* ---------- Archive ---------- */
.hg-archive__head { max-width: 74ch; margin-bottom: var(--hg-space-5); }
.hg-archive__intro { font-size: 1rem; color: var(--hg-muted); line-height: 1.6; }
.hg-archive__toolbar { display: flex; align-items: center; justify-content: space-between; gap: var(--hg-space-4); flex-wrap: wrap; padding: var(--hg-space-3) 0; border-block: 1px solid var(--hg-border); margin-bottom: var(--hg-space-5); }
.hg-archive__count { margin: 0; font-size: var(--hg-fs-sm); }
.hg-archive__count .hg-muted { font-weight: 400; }
.hg-archive__controls { display: flex; align-items: center; gap: var(--hg-space-3); }
.hg-sort { display: flex; align-items: center; gap: 8px; font-size: var(--hg-fs-sm); }
.hg-sort select { padding: 8px 10px; border: 1px solid var(--hg-border-strong); border-radius: var(--hg-radius); font-size: var(--hg-fs-sm); background: #fff; }
.hg-archive__layout { display: grid; grid-template-columns: 264px minmax(0, 1fr); gap: var(--hg-space-6); align-items: start; }
.hg-filters-open { display: none; }

.hg-filters { position: sticky; top: 88px; background: #fff; border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg); padding: var(--hg-space-4); max-height: calc(100vh - 110px); overflow-y: auto; }
.hg-filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--hg-space-3); }
.hg-filters__title { display: flex; align-items: center; gap: 7px; font-size: var(--hg-fs-sm); font-weight: 750; margin: 0; }
.hg-filters__close { display: none; background: none; border: 0; cursor: pointer; color: var(--hg-muted); }
.hg-filters__active { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; padding-bottom: var(--hg-space-3); border-bottom: 1px solid var(--hg-border); margin-bottom: var(--hg-space-2); }
.hg-filters__reset { font-size: var(--hg-fs-xs); font-weight: 600; color: var(--hg-muted); text-decoration: underline; }
.hg-filters__group { border-bottom: 1px solid var(--hg-border); }
.hg-filters__group:last-child { border-bottom: 0; }
.hg-filters__group summary { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; font-size: var(--hg-fs-sm); font-weight: 650; cursor: pointer; list-style: none; }
.hg-filters__group summary::-webkit-details-marker { display: none; }
.hg-filters__group[open] summary .hg-icon { transform: rotate(180deg); }
.hg-filters__group summary .hg-icon { color: var(--hg-muted); transition: transform .15s ease; }
.hg-filters__group ul { list-style: none; margin: 0; padding: 0 0 var(--hg-space-3); display: grid; gap: 2px; }
.hg-filters__option { display: flex; align-items: center; gap: 9px; padding: 6px 6px; margin-left: -6px; border-radius: var(--hg-radius-sm); font-size: var(--hg-fs-sm); text-decoration: none; color: var(--hg-text); }
.hg-filters__option:hover { background: var(--hg-surface-alt); }
.hg-checkbox { display: grid; place-items: center; width: 17px; height: 17px; flex: none; border: 1px solid var(--hg-border-strong); border-radius: 4px; background: #fff; }
.hg-filters__option.is-active .hg-checkbox { background: var(--hg-yellow); border-color: var(--hg-yellow); color: #14161A; }
.hg-filters__name { flex: 1; }
.hg-filters__count { font-size: var(--hg-fs-xs); color: var(--hg-muted); }

@media (max-width: 1024px) {
	.hg-archive__layout { grid-template-columns: 1fr; }
	.hg-filters-open { display: inline-flex; }
	.hg-filters-wrap { position: fixed; inset: 0; z-index: 95; background: rgba(13,15,18,.45); display: none; }
	.hg-filters-wrap.is-open { display: block; }
	.hg-filters { position: absolute; inset: 0 0 0 auto; width: min(90vw, 360px); max-height: none; border-radius: 0; border: 0; }
	.hg-filters__close { display: block; }
}

.hg-pagination { margin-top: var(--hg-space-6); }
.hg-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 6px; }
.hg-pagination .page-numbers { display: grid; place-items: center; min-width: 38px; height: 38px; padding: 0 10px; border: 1px solid var(--hg-border); border-radius: var(--hg-radius); font-size: var(--hg-fs-sm); text-decoration: none; }
.hg-pagination .page-numbers.current { background: var(--hg-ink); border-color: var(--hg-ink); color: #fff; font-weight: 650; }

/* ---------- Fiche produit ---------- */
.hg-product__hero { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: var(--hg-space-7); align-items: start; margin-bottom: var(--hg-space-7); }
.hg-product__gallery { position: sticky; top: 92px; }
.hg-product__image { width: 100%; aspect-ratio: 1; object-fit: contain; background: var(--hg-surface-alt); border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg); padding: var(--hg-space-6); }
.hg-product__image--empty { display: grid; place-items: center; color: var(--hg-border-strong); }
.hg-product__thumbs { display: flex; gap: 8px; list-style: none; margin: var(--hg-space-3) 0 0; padding: 0; }
.hg-product__thumbs img { width: 68px; height: 68px; object-fit: contain; background: var(--hg-surface-alt); border: 1px solid var(--hg-border); border-radius: var(--hg-radius-sm); padding: 6px; }
.hg-product__brand { font-size: var(--hg-fs-xs); font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--hg-muted); margin: 0 0 var(--hg-space-2); }
.hg-product__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--hg-space-4); }
.hg-product__verdict { font-size: 1.05rem; line-height: 1.55; color: var(--hg-text); margin: 0 0 var(--hg-space-4); }
.hg-product__score { display: flex; align-items: center; gap: var(--hg-space-3); padding: var(--hg-space-3) 0; border-block: 1px solid var(--hg-border); margin-bottom: var(--hg-space-4); }
.hg-product__score-label { display: flex; flex-direction: column; font-size: var(--hg-fs-xs); font-weight: 650; }
.hg-product__score-label a { font-weight: 500; color: var(--hg-muted); }
.hg-product__facts { display: flex; flex-wrap: wrap; margin-bottom: var(--hg-space-4); }
.hg-product__pricebox { background: var(--hg-surface-alt); border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg); padding: var(--hg-space-5); }
.hg-product__checked { font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: var(--hg-space-2) 0 0; }
.hg-product__cta { display: flex; flex-wrap: wrap; gap: var(--hg-space-3); margin-top: var(--hg-space-4); }
.hg-product__cta .hg-compare-toggle { position: static; padding: 14px 24px; border-radius: var(--hg-radius); font-size: 1rem; }
@media (max-width: 900px) {
	.hg-product__hero { grid-template-columns: 1fr; gap: var(--hg-space-5); }
	.hg-product__gallery { position: static; }
}

/* ---------- Variantes ---------- */
.hg-variant-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: var(--hg-space-3); }
.hg-variant-card { padding: var(--hg-space-4); background: #fff; border: 1px solid var(--hg-border); border-radius: var(--hg-radius); }
.hg-variant-card.is-default { border-color: var(--hg-yellow); box-shadow: 0 0 0 1px var(--hg-yellow); }
.hg-variant-card__label { font-size: var(--hg-fs-sm); font-weight: 650; margin: 0 0 6px; }
.hg-variant-card__price { font-size: 1.2rem; font-weight: 800; margin: 0; }
.hg-variant-card__unit, .hg-variant-card__gtin { font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: 3px 0 0; }

/* ---------- Tableau d'offres ---------- */
.hg-offers { border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg); overflow: hidden; background: #fff; }
.hg-offers__head, .hg-offer { display: grid; grid-template-columns: var(--hg-offers-cols, minmax(150px, 1.4fr) .8fr .9fr .8fr .8fr minmax(150px, 1fr)); gap: var(--hg-space-3); align-items: center; padding: var(--hg-space-4); }
.hg-offers__head { background: var(--hg-surface-alt); border-bottom: 1px solid var(--hg-border); font-size: var(--hg-fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--hg-muted); }
.hg-offer { border-bottom: 1px solid var(--hg-border); position: relative; }
.hg-offer:last-child { border-bottom: 0; }
.hg-offer--best { background: #FFFCF2; box-shadow: inset 3px 0 0 var(--hg-yellow); }
.hg-offer__merchant { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.hg-merchant__logo { max-width: 92px; max-height: 30px; width: auto; height: auto; object-fit: contain; }
.hg-merchant__label { font-size: var(--hg-fs-sm); font-weight: 650; }
.hg-merchant__logo + .hg-merchant__label { display: none; }
.hg-offer__price { font-size: var(--hg-fs-sm); }
.hg-offer__before { display: block; font-size: var(--hg-fs-xs); color: var(--hg-muted); }
.hg-offer__total strong { font-size: 1.15rem; font-weight: 800; }
.hg-offer__shipping, .hg-offer__stock { font-size: var(--hg-fs-sm); color: var(--hg-muted); }
.hg-offer__coupon { font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: 6px 0 0; }
.hg-offer__coupon code { background: var(--hg-yellow-soft); border: 1px dashed var(--hg-yellow-dark); border-radius: 4px; padding: 1px 6px; font-weight: 700; color: var(--hg-ink); }
.hg-offer__note { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: var(--hg-space-3); font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: 4px 0 0; }

@media (max-width: 860px) {
	.hg-offers__head { display: none; }
	.hg-offer { grid-template-columns: 1fr 1fr; padding: var(--hg-space-4); }
	.hg-offer__merchant { grid-column: 1 / -1; }
	.hg-offer__price, .hg-offer__shipping, .hg-offer__total, .hg-offer__stock { display: flex; flex-direction: column; gap: 2px; }
	.hg-offer__price::before, .hg-offer__shipping::before, .hg-offer__total::before, .hg-offer__stock::before {
		content: attr(data-label); font-size: 10px; font-weight: 700; letter-spacing: .08em;
		text-transform: uppercase; color: var(--hg-muted);
	}
	.hg-offer__cta { grid-column: 1 / -1; }
	.hg-offer__cta .hg-btn { width: 100%; }
}

/* ---------- Cout 3 ans ---------- */
.hg-tco__box { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--hg-space-3); padding: var(--hg-space-5); background: var(--hg-ink); border-radius: var(--hg-radius-lg); color: #fff; }
.hg-tco__value { font-size: 2.4rem; font-weight: 820; letter-spacing: -.03em; color: var(--hg-yellow); margin: 0; }
.hg-tco__label { font-size: var(--hg-fs-sm); color: #B9C0C9; margin: 0; }
.hg-tco__assumptions { font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: var(--hg-space-3) 0 0; max-width: 84ch; line-height: 1.55; }

/* ---------- Avis ---------- */
.hg-verdict__score { margin-bottom: var(--hg-space-4); }
.hg-prose { max-width: 76ch; font-size: 1rem; line-height: 1.7; color: var(--hg-text); }
.hg-prose h2 { font-size: var(--hg-fs-h2); font-weight: 750; margin: var(--hg-space-7) 0 var(--hg-space-3); }
.hg-prose h3 { font-size: 1.2rem; font-weight: 700; margin: var(--hg-space-5) 0 var(--hg-space-2); }
.hg-prose p { margin: 0 0 var(--hg-space-4); }
.hg-prose ul, .hg-prose ol { margin: 0 0 var(--hg-space-4); padding-left: 1.3em; }
.hg-prose li { margin-bottom: 6px; }
.hg-prose a { color: var(--hg-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.hg-prose blockquote { border-left: 3px solid var(--hg-yellow); padding-left: var(--hg-space-4); margin: var(--hg-space-5) 0; color: var(--hg-muted); }

.hg-proscons { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--hg-space-4); margin: var(--hg-space-5) 0; }
.hg-proscons__col { padding: var(--hg-space-5); border-radius: var(--hg-radius-lg); border: 1px solid var(--hg-border); }
.hg-proscons__col--pro { background: var(--hg-success-soft); border-color: #C9E6D8; }
.hg-proscons__col--con { background: var(--hg-surface-alt); }
.hg-proscons__col h3 { font-size: var(--hg-fs-h3); font-weight: 750; margin: 0 0 var(--hg-space-3); }

.hg-forwho { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--hg-space-4); }
.hg-forwho__block { padding: var(--hg-space-5); border-left: 3px solid var(--hg-yellow); background: var(--hg-surface-alt); border-radius: 0 var(--hg-radius) var(--hg-radius) 0; }
.hg-forwho__block--avoid { border-left-color: var(--hg-border-strong); }
.hg-forwho__block h3 { font-size: var(--hg-fs-h3); font-weight: 700; margin: 0 0 8px; }
.hg-forwho__block p { font-size: var(--hg-fs-sm); line-height: 1.6; color: var(--hg-muted); margin: 0; }

.hg-scorebreak { margin-top: var(--hg-space-5); border: 1px solid var(--hg-border); border-radius: var(--hg-radius); }
.hg-scorebreak summary { display: flex; align-items: center; justify-content: space-between; padding: var(--hg-space-4); font-size: var(--hg-fs-sm); font-weight: 650; cursor: pointer; list-style: none; }
.hg-scorebreak summary::-webkit-details-marker { display: none; }
.hg-scorebreak ul { list-style: none; margin: 0; padding: 0 var(--hg-space-4) var(--hg-space-4); display: grid; gap: 10px; }
.hg-scorebreak li { display: grid; grid-template-columns: minmax(120px, 1fr) 2fr auto; align-items: center; gap: var(--hg-space-3); font-size: var(--hg-fs-sm); }
.hg-scorebreak__bar { height: 7px; background: var(--hg-border); border-radius: 999px; overflow: hidden; }
.hg-scorebreak__bar i { display: block; height: 100%; background: var(--hg-yellow); }
.hg-scorebreak__value { font-weight: 650; font-size: var(--hg-fs-xs); }
.hg-scorebreak p { padding: 0 var(--hg-space-4) var(--hg-space-4); margin: 0; font-size: var(--hg-fs-xs); }

/* ---------- Abonnement, specs, compat ---------- */
.hg-subscription__answer { display: flex; align-items: baseline; gap: var(--hg-space-3); flex-wrap: wrap; margin: 0 0 var(--hg-space-4); }
.hg-subscription__answer strong { font-size: 1.8rem; font-weight: 820; letter-spacing: -.02em; }
.hg-subscription__answer span { font-size: var(--hg-fs-sm); color: var(--hg-muted); }
.hg-subscription__grid, .hg-specs dl, .hg-provider-card__specs, .hg-provider__specs { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: var(--hg-space-2); background: none; border: 0; border-radius: 0; overflow: visible; margin: 0; }
.hg-subscription__grid > div, .hg-specs dl > div, .hg-provider-card__specs > div, .hg-provider__specs > div { background: #fff; border: 1px solid var(--hg-border); border-radius: var(--hg-radius); padding: var(--hg-space-3) var(--hg-space-4); }
.hg-subscription__grid dt, .hg-specs dt, .hg-provider-card__specs dt, .hg-provider__specs dt { font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: 0 0 3px; }
.hg-subscription__grid dd, .hg-specs dd, .hg-provider-card__specs dd, .hg-provider__specs dd { font-size: var(--hg-fs-sm); font-weight: 600; margin: 0; }
.hg-subscription__plan { font-size: var(--hg-fs-sm); color: var(--hg-muted); margin-top: var(--hg-space-4); max-width: 78ch; }
.hg-specs__group { margin-bottom: var(--hg-space-5); }
.hg-specs__group h3 { font-size: var(--hg-fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--hg-muted); margin: 0 0 var(--hg-space-2); }
.hg-specs__source { font-size: var(--hg-fs-xs); color: var(--hg-muted); }
.hg-compat__list { display: flex; flex-wrap: wrap; gap: 8px; }
.hg-alternative__why { font-size: var(--hg-fs-xs); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--hg-yellow-dark); margin: 0 0 8px; }

/* ---------- Comparateur ---------- */
.hg-compare__controls { display: flex; align-items: center; gap: var(--hg-space-4); flex-wrap: wrap; padding: var(--hg-space-3) 0; border-block: 1px solid var(--hg-border); margin-bottom: var(--hg-space-5); }
.hg-compare__count { margin: 0; font-size: var(--hg-fs-sm); font-weight: 650; }
.hg-switch { display: inline-flex; align-items: center; gap: 8px; font-size: var(--hg-fs-sm); cursor: pointer; }
.hg-compare__scroll { overflow-x: auto; border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg); }
.hg-compare__table { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
.hg-compare__table th, .hg-compare__table td { padding: var(--hg-space-3) var(--hg-space-4); text-align: left; font-size: var(--hg-fs-sm); border-bottom: 1px solid var(--hg-border); vertical-align: top; }
.hg-compare__table thead th { position: sticky; top: 0; z-index: 3; background: #fff; border-bottom: 2px solid var(--hg-border); }
.hg-compare__corner { min-width: 170px; }
.hg-compare__product { display: flex; flex-direction: column; gap: 7px; position: relative; min-width: 170px; }
.hg-compare__product a { text-decoration: none; display: flex; flex-direction: column; gap: 5px; }
.hg-compare__product img { width: 100%; max-width: 130px; aspect-ratio: 1; object-fit: contain; background: var(--hg-surface-alt); border-radius: var(--hg-radius-sm); }
.hg-compare__brand { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--hg-muted); }
.hg-compare__title { font-size: var(--hg-fs-sm); font-weight: 700; line-height: 1.3; }
.hg-compare__remove { position: absolute; top: 0; right: 0; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 999px; background: #fff; border: 1px solid var(--hg-border); cursor: pointer; color: var(--hg-muted); }
.hg-compare__section th { background: var(--hg-ink); color: #fff; font-size: var(--hg-fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; position: static; }
.hg-compare__row th { font-weight: 600; color: var(--hg-muted); background: var(--hg-surface-alt); }
.hg-compare__row td.is-best { background: #FFFCF2; font-weight: 750; box-shadow: inset 0 0 0 1px var(--hg-yellow); }
.hg-compare__table--compact { min-width: 720px; }
.hg-rank { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 8px; border-radius: 999px; background: var(--hg-yellow); color: #14161A; font-size: var(--hg-fs-xs); font-weight: 800; }
body.hg-diff-only .hg-compare__row.is-same { display: none; }

/* ---------- Tiroir de comparaison ---------- */
.hg-tray { position: fixed; left: 0; right: 0; bottom: 0; z-index: 85; background: var(--hg-ink); color: #fff; box-shadow: 0 -6px 24px rgba(0,0,0,.24); }
.hg-tray__inner { display: flex; align-items: center; gap: var(--hg-space-4); max-width: var(--hg-container); margin-inline: auto; padding: var(--hg-space-3) var(--hg-space-4); }
.hg-tray__label { font-size: var(--hg-fs-sm); font-weight: 700; margin: 0; white-space: nowrap; }
.hg-tray__count { display: inline-grid; place-items: center; min-width: 22px; height: 22px; margin-left: 6px; border-radius: 999px; background: var(--hg-yellow); color: #14161A; font-size: var(--hg-fs-xs); font-weight: 800; }
.hg-tray__items { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; flex: 1; overflow-x: auto; }
.hg-tray__items li { position: relative; flex: none; }
.hg-tray__items img { width: 44px; height: 44px; object-fit: contain; background: #fff; border-radius: var(--hg-radius-sm); }
.hg-tray__ph { display: grid; place-items: center; width: 44px; height: 44px; background: rgba(255,255,255,.12); border-radius: var(--hg-radius-sm); font-size: 11px; }
.hg-tray__items button { position: absolute; top: -5px; right: -5px; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 999px; background: #fff; color: var(--hg-ink); border: 0; cursor: pointer; font-size: 11px; line-height: 1; }
.hg-tray__actions { display: flex; align-items: center; gap: var(--hg-space-2); margin-left: auto; }
.hg-tray .hg-btn--ghost { color: #B9C0C9; }
.hg-tray .is-disabled { opacity: .55; pointer-events: none; }
@media (max-width: 640px) {
	.hg-tray__inner { flex-wrap: wrap; gap: var(--hg-space-2); }
	.hg-tray__items { order: 3; width: 100%; }
	.hg-tray__actions { margin-left: auto; }
	.hg-tray .hg-btn { padding: 9px 14px; }
}

/* ---------- Editorial ---------- */
.hg-editorial__head { max-width: 74ch; margin-bottom: var(--hg-space-5); }
.hg-editorial__meta { display: flex; flex-wrap: wrap; gap: var(--hg-space-3); font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: var(--hg-space-3) 0 0; }
.hg-editorial__cover { margin: 0 0 var(--hg-space-5); }
.hg-editorial__cover img { width: 100%; border-radius: var(--hg-radius-lg); }
.hg-answer { padding: var(--hg-space-5); background: var(--hg-yellow-soft); border: 1px solid #F3E2B4; border-radius: var(--hg-radius-lg); margin-bottom: var(--hg-space-5); }
.hg-answer__label { font-size: var(--hg-fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--hg-yellow-dark); margin: 0 0 6px; }
.hg-answer p:last-child { margin: 0; font-size: 1.05rem; line-height: 1.6; }
.hg-answer--lead p:last-child { font-size: 1.15rem; }

/* ---------- Marque, fournisseur ---------- */
.hg-brand__hero { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: var(--hg-space-6); align-items: center; padding-bottom: var(--hg-space-6); border-bottom: 1px solid var(--hg-border); }
.hg-brand__logo { display: grid; place-items: center; aspect-ratio: 3 / 2; background: var(--hg-surface-alt); border-radius: var(--hg-radius-lg); padding: var(--hg-space-4); font-weight: 800; }
.hg-brand__logo img { max-width: 100%; max-height: 64px; object-fit: contain; }
.hg-brand__intro { font-size: var(--hg-fs-sm); color: var(--hg-muted); line-height: 1.6; max-width: 70ch; }
.hg-brand__facts { display: flex; flex-wrap: wrap; gap: var(--hg-space-5); list-style: none; margin: var(--hg-space-4) 0 0; padding: 0; }
.hg-brand__facts li { display: flex; flex-direction: column; font-size: var(--hg-fs-sm); }
.hg-brand__facts span { font-size: var(--hg-fs-xs); color: var(--hg-muted); }
.hg-brand__brief-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--hg-space-5); }
.hg-brand__brief-grid h3 { font-size: var(--hg-fs-h3); font-weight: 700; margin: 0 0 8px; }
.hg-brand__brief-grid p { font-size: var(--hg-fs-sm); color: var(--hg-muted); line-height: 1.6; margin: 0 0 10px; }
.hg-plan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: var(--hg-space-3); }
.hg-plan-card { padding: var(--hg-space-4); background: #fff; border: 1px solid var(--hg-border); border-radius: var(--hg-radius); }
.hg-plan-card h3 { font-size: var(--hg-fs-sm); font-weight: 700; margin: 0 0 6px; }
.hg-plan-card__price { font-size: 1.2rem; font-weight: 800; margin: 0 0 8px; }
.hg-plan-card p { font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: 0 0 4px; }
@media (max-width: 720px) { .hg-brand__hero { grid-template-columns: 1fr; } }

.hg-provider-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: var(--hg-space-4); }
.hg-provider-card { display: flex; flex-direction: column; gap: var(--hg-space-4); padding: var(--hg-space-5); background: #fff; border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg); }
.hg-provider-card__head { display: flex; align-items: center; gap: var(--hg-space-3); }
.hg-provider-card__logo { max-width: 84px; max-height: 40px; width: auto; height: auto; object-fit: contain; }
.hg-provider-card__id { flex: 1; }
.hg-provider-card__title { font-size: 1.05rem; font-weight: 750; margin: 0; }
.hg-provider-card__title a { text-decoration: none; }
.hg-provider-card__name { font-weight: 800; font-size: 1rem; }
.hg-provider-card__plan { font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: 2px 0 0; }
.hg-provider-card__foot { margin-top: auto; display: grid; gap: 8px; justify-items: start; }
.hg-provider-card__foot .hg-btn { width: 100%; }
.hg-provider-card__checked { font-size: var(--hg-fs-xs); color: var(--hg-muted); margin: 0; }
.hg-provider__hero { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: var(--hg-space-6); align-items: start; margin-bottom: var(--hg-space-6); }
.hg-provider__logo { display: grid; place-items: center; aspect-ratio: 3 / 2; background: var(--hg-surface-alt); border-radius: var(--hg-radius-lg); padding: var(--hg-space-4); }
.hg-provider__logo img { max-width: 100%; max-height: 64px; object-fit: contain; }
.hg-provider__lead { font-size: 1.02rem; color: var(--hg-muted); line-height: 1.6; max-width: 68ch; }
.hg-provider__price { display: flex; flex-direction: column; gap: 3px; padding: var(--hg-space-4); background: var(--hg-surface-alt); border-radius: var(--hg-radius); margin: var(--hg-space-4) 0; }
.hg-provider__price strong { font-size: 1.5rem; font-weight: 820; letter-spacing: -.02em; }
.hg-provider__price span { font-size: var(--hg-fs-xs); color: var(--hg-muted); }
.hg-provider__specs--full { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
@media (max-width: 720px) { .hg-provider__hero { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.hg-footer { background: var(--hg-surface-dark); color: #B9C0C9; padding-block: var(--hg-space-8) var(--hg-space-5); }
.hg-footer__top { display: grid; grid-template-columns: minmax(0, 1.2fr) repeat(auto-fit, minmax(150px, 1fr)); gap: var(--hg-space-6); padding-bottom: var(--hg-space-6); border-bottom: 1px solid rgba(255,255,255,.1); }
.hg-footer__brand img { max-height: 42px; width: auto; margin-bottom: var(--hg-space-3); }
.hg-footer__brand .hg-logo__text { color: #fff; }
.hg-footer__brand a { text-decoration: none; }
.hg-footer__tagline { font-size: var(--hg-fs-sm); line-height: 1.6; max-width: 40ch; margin: var(--hg-space-3) 0 0; }
.hg-footer__col h3 { font-size: var(--hg-fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin: 0 0 var(--hg-space-3); }
.hg-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.hg-footer__col a { font-size: var(--hg-fs-sm); color: #B9C0C9; text-decoration: none; }
.hg-footer__col a:hover { color: #fff; text-decoration: underline; }
.hg-footer__bottom { display: flex; flex-wrap: wrap; gap: var(--hg-space-4); justify-content: space-between; padding-top: var(--hg-space-5); font-size: var(--hg-fs-xs); }
.hg-footer__legal { max-width: 82ch; line-height: 1.6; margin: 0; }
.hg-footer__legal a { color: var(--hg-yellow); }

/* ---------- Preferences systeme ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
@media print { .hg-header, .hg-footer, .hg-tray, .hg-filters { display: none !important; } }

.hg-footer__brand .hg-logo__text b { color: var(--hg-yellow); }
.hg-logo__text { display:inline-block; line-height:1; }


/* ---------- Fiche produit : avis en un seul panneau ---------- */
.hg-verdict__panel { background: #fff; border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg); padding: var(--hg-space-5); }
.hg-verdict__panel > .hg-prose--full { max-width: none; }
.hg-verdict__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--hg-space-4); margin-top: var(--hg-space-5); }
.hg-vbox { padding: var(--hg-space-5); border: 1px solid var(--hg-border); border-radius: var(--hg-radius-lg); background: var(--hg-surface-alt); }
.hg-vbox h3 { font-size: var(--hg-fs-h3); font-weight: 750; margin: 0 0 var(--hg-space-3); }
.hg-vbox p { font-size: var(--hg-fs-sm); line-height: 1.6; margin: 0; }
.hg-vbox ul { margin: 0; }
.hg-vbox--pro, .hg-vbox--for { background: var(--hg-success-soft); border-color: #C9E6D8; }
.hg-vbox--for p { color: var(--hg-text); }
.hg-vbox--con, .hg-vbox--avoid { background: var(--hg-surface-alt); border-color: var(--hg-border); }
.hg-vbox--avoid p { color: var(--hg-muted); }
.hg-verdict__panel .hg-scorebreak { margin-top: var(--hg-space-5); }
@media (max-width: 820px) {
	.hg-verdict__grid { grid-template-columns: 1fr; }
	.hg-verdict__panel { padding: var(--hg-space-4); }
}

/* ---------- Mention prix + affiliation sous le bloc prix ---------- */
.hg-pricenote { margin-top: var(--hg-space-4); padding-top: var(--hg-space-3); border-top: 1px solid var(--hg-border); }
.hg-pricenote p { margin: 0 0 6px; font-size: var(--hg-fs-xs); line-height: 1.6; color: var(--hg-muted); }
.hg-pricenote p:last-child { margin-bottom: 0; }
.hg-pricenote__aff a { color: var(--hg-ink); text-decoration: underline; text-underline-offset: 2px; }