/* ==========================================================================
   1. DESIGN SYSTEM & VARIABLES (Charte unifiée et optimisée HARRY.)
   ========================================================================= */
:root {
    --hr-white: #FFFFFF;
    --hr-bg-creme: #FDFBF7;     
    --hr-bg-sable: #F4EFE6;     
    --hr-card-bg: #FFFFFF;      
    --hr-navy: #101B2B;         
    --hr-saffron: #E06A3B;      
    
    /* Palette Macro-nutritionnelle */
    --hr-color-prot: #101B2B;
    --hr-color-lip: #E5A93C;
    --hr-color-gluc: #E06A3B;
    --hr-color-fib: #8C99A8;
    --hr-color-ash: #B8C2CC;
    --hr-color-moist: #D2C9BD;
    
    --hr-border: #DED8CD;       
    --hr-text-muted: #526071;
    
    /* Rayons maximisés selon les versions */
    --hr-radius-sm: 8px;
    --hr-radius-md: 14px;
    --hr-radius-lg: 24px;
    
    --hr-shadow: 0 4px 24px rgba(16, 27, 43, 0.04);
    --hr-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Variables pour le split dynamique */
    --transition-ultra: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ==========================================================================
   2. RESET & STYLES DE BASE (Optimisé pour la finesse "Inter")
   ========================================================================= */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: 'Inter', sans-serif !important;
    background-color: var(--hr-white);
    color: var(--hr-navy);
    line-height: 1.5;
    /* Force le rendu fin, lissé et élégant de ton template d'origine */
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* Empêche WordPress d'alourdir ou de grossir les liens et la tagline */
.hr-c-footer-links a, 
.hr-c-nav a, 
.hr-nav a {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important; /* Calé sur le regular/medium fin du template */
    -webkit-font-smoothing: antialiased !important;
}

.hr-c-footer-tagline {
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased !important;
}

h1, h2, h3, h4, .hr-c-logo, .hr-logo { 
    font-family: 'Inter', sans-serif !important; 
    font-weight: 800; 
    -webkit-font-smoothing: antialiased !important;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--hr-transition); 
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

/* Utilitaires globaux de sectionnement */
.hr-container, .hr-u-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.hr-section, .hr-u-section { padding: 80px 0; background-color: var(--hr-white); }
.hr-u-section-sable, .hr-section-sable { padding: 80px 0; background-color: var(--hr-bg-sable); }
.hr-u-section-creme, .hr-section-analytique { padding: 80px 0; background-color: var(--hr-bg-creme); }
.hr-u-section-title { font-size: 32px; margin-bottom: 16px; line-height: 1.2; letter-spacing: -1px; text-align: center; }
.hr-section-title { font-size: 28px; margin-bottom: 28px; line-height: 1.3; font-weight: 800; letter-spacing: -0.5px; }
.hr-u-section-title.centered { text-align: center; }
.hr-u-section-subtitle { text-align: center; color: var(--hr-text-muted); max-width: 650px; margin: 0 auto 48px; font-size: 16px; }

/* Grilles génériques et adaptatives */
.hr-u-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.hr-u-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hr-u-grid-4, .hr-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 1100px) { .hr-u-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px) { .hr-u-grid-4, .hr-grid-4 { grid-template-columns: repeat(2, 1fr); } .hr-u-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .hr-u-section, .hr-section, .hr-section-sable, .hr-section-analytique, .hr-u-section-sable, .hr-u-section-creme { padding: 60px 0; }
    .hr-u-grid-2 { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 650px) { .hr-u-grid-4, .hr-grid-4 { grid-template-columns: 1fr; } }

/* ==========================================================================
   3. HEADER & LOGO (Composant global réutilisé)
   ========================================================================= */
/* ==========================================================================
   3. HEADER & LOGO (Composant global réutilisé et optimisé PNG)
   ========================================================================= */
.hr-c-header, .hr-header { 
    border-bottom: 1px solid var(--hr-border); 
    position: sticky; 
    top: 0; 
    background: rgba(255, 255, 255, 0.96); 
    backdrop-filter: blur(8px); 
    z-index: 100; 
}
.hr-c-header-inner, .hr-header-inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 80px; 
}

/* Ajustement et comportement du logo PNG */
.hr-logo-link { 
    display: flex; 
    align-items: center; 
    text-decoration: none;
}
.hr-logo-img { 
    width: 160px; 
    height: 40px; 
    object-fit: contain; 
    display: block; 
    border: none !important; 
    padding: 0 !important;
    margin: 0 !important;
}

/* Reset complet pour bloquer les listes verticales de WordPress */
.hr-c-nav ul { 
    display: flex; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    align-items: center; 
}
.hr-c-nav li { 
    margin: 0; 
    padding: 0; 
    list-style: none;
}
.hr-c-nav a, .hr-nav a { 
    font-weight: 600; 
    margin-left: 24px; 
    font-size: 15px; 
    color: var(--hr-navy); 
    text-decoration: none; 
    transition: var(--hr-transition); 
    display: inline-block; 
}
.hr-c-nav a:hover, .hr-nav a:hover { 
    color: var(--hr-saffron); 
}

@media (max-width: 768px) { 
    .hr-c-nav, .hr-nav { display: none; } 
}

/* Boutons d'action standards réutilisés */
.hr-c-btn-action, .hr-c-btn-cta, .hr-btn-cta { background: var(--hr-saffron); color: var(--hr-white); border: none; padding: 14px 32px; border-radius: var(--hr-radius-sm); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; display: inline-block; text-align: center; transition: var(--hr-transition); text-decoration: none; }
.hr-c-btn-action:hover, .hr-c-btn-cta:hover, .hr-btn-cta:hover { opacity: 0.95; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(224, 106, 61, 0.2); }

/* Badges / Pills / Chips */
.hr-pill-group, .hr-c-pill-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.hr-pill, .hr-c-pill { background: #EBF0F5; color: var(--hr-navy); padding: 6px 14px; border-radius: var(--hr-radius-lg); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; display: inline-block; margin-bottom: 8px; }
.hr-pill-active, .hr-c-pill-active { background: var(--hr-navy); color: var(--hr-white); }

/* Mini barres macro-nutritionnelles */
.hr-c-macro-bar, .hr-macro-bar { display: flex; height: 12px; border-radius: var(--hr-radius-sm); overflow: hidden; background: #EED; margin-top: 8px; width: 100%; }
.hr-macro-bar { height: 24px; margin-bottom: 30px; }
.hr-c-macro-bar-segment, .hr-bar-segment { height: 100%; }
.hr-seg-prot { background: var(--hr-color-prot); }
.hr-seg-lip { background: var(--hr-color-lip); }
.hr-seg-gluc { background: var(--hr-color-gluc); }
.hr-seg-fib { background: var(--hr-color-fib); } 
.hr-seg-ash { background: var(--hr-color-ash); }
.hr-seg-moist { background: var(--hr-color-moist); }

.hr-label-prot { color: #000000 !important; }
.hr-label-lip { color: var(--hr-color-lip) !important; }
.hr-label-gluc { color: var(--hr-color-gluc) !important; }
.hr-label-fib { color: var(--hr-color-fib) !important; } 
.hr-label-ash { color: var(--hr-color-ash) !important; }
.hr-label-moist { color: var(--hr-color-moist) !important; }

/* Tooltip interactif unifié */
.hr-c-tooltip-trigger, .hr-tooltip-trigger { display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; background: #EBF0F5; color: var(--hr-text-muted); font-size: 10px; font-weight: 700; border-radius: 50%; cursor: help; position: relative; margin-left: 4px; vertical-align: middle; transition: var(--hr-transition); }
.hr-c-tooltip-trigger:hover, .hr-tooltip-trigger:hover { background: var(--hr-navy); color: var(--hr-white); }

.hr-c-tooltip-trigger::after, .hr-tooltip-trigger::after { content: attr(data-tooltip); position: absolute; bottom: 85%; left: 50%; transform: translateX(-50%) scale(0.9); width: 240px; padding: 12px 14px; background: var(--hr-navy); color: var(--hr-white); font-size: 12px; line-height: 1.4; font-weight: 400; text-transform: none; letter-spacing: normal; border-radius: var(--hr-radius-sm); box-shadow: 0 4px 15px rgba(0,0,0,0.15); opacity: 0; visibility: hidden; pointer-events: none; z-index: 10; transition: all 0.15s ease-in-out; }
.hr-tooltip-trigger::before { content: ""; position: absolute; bottom: 76%; left: 50%; transform: translateX(-50%); border-width: 6px; border-style: solid; border-color: var(--hr-navy) transparent transparent transparent; opacity: 0; visibility: hidden; pointer-events: none; z-index: 10; transition: all 0.15s ease-in-out; }

.hr-c-tooltip-trigger:hover::after, .hr-tooltip-trigger:hover::after, .hr-tooltip-trigger:focus::after { opacity: 1; visibility: visible; transform: translateX(-50%) scale(1); }
.hr-tooltip-trigger:hover::before, .hr-tooltip-trigger:focus::before { opacity: 1; visibility: visible; }

/* Liens de maillage "Voir tout" harmonisés */
.hr-c-brand-index-link, .hr-more-link { display: inline-flex; align-items: center; gap: 6px; color: var(--hr-navy); font-size: 15px; font-weight: 700; margin-top: 32px; justify-content: center; width: 100%; text-decoration: none; transition: var(--hr-transition); }
.hr-c-brand-index-link:hover, .hr-more-link:hover { color: var(--hr-saffron); }
.hr-c-brand-index-link svg, .hr-more-link svg { transition: transform 0.2s ease-in-out; }
.hr-c-brand-index-link:hover svg, .hr-more-link:hover svg { transform: translateX(4px); }
.hr-u-flex-center { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; margin-top: 32px; }
.hr-more-link-wrapper { text-align: center; margin-top: 32px; }

/* Liens d'achat génériques */
.hr-c-shop-links-container { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.hr-c-shop-link-item { display: flex; justify-content: space-between; align-items: center; background: #FFFFFF; border: 2px solid var(--hr-navy); border-radius: var(--hr-radius-sm); padding: 10px 14px; text-decoration: none; transition: var(--hr-transition); }
.hr-c-shop-link-item:hover { border-color: var(--hr-saffron); }
.hr-c-shop-link-name { font-size: 14px; font-weight: 700; color: var(--hr-navy); }
.hr-c-shop-link-btn { background: var(--hr-saffron); color: var(--hr-white); font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 6px 16px; border-radius: 4px; letter-spacing: 0.5px; }

/* ==========================================================================
   4. COMPOSANTS DE LA ZONE HERO DYNAMIQUE & SPLIT
   ========================================================================= */
.hr-c-hero-home { padding: 60px 0 40px; text-align: center; }
.hr-c-hero-home h1 { font-size: 46px; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 20px; color: var(--hr-navy); }
.hr-c-hero-home h1 span { color: var(--hr-saffron); }
.hr-c-hero-home p { color: var(--hr-text-muted); max-width: 750px; margin: 0 auto; font-size: 17px; line-height: 1.6; }
@media (max-width: 600px) { .hr-c-hero-home h1 { font-size: 32px; } }

.dynamic-hero-section {
    width: 100%;
    height: 70vh;
    min-height: 520px;
    background-color: #0c1219;
    overflow: hidden;
    border-radius: var(--hr-radius-lg);
    box-shadow: 0 20px 50px rgba(16, 27, 43, 0.08);
    margin-bottom: 80px;
}
.hero-split-wrapper { display: flex; width: 100%; height: 100%; transition: var(--transition-ultra); }
.hero-pane { flex: 1; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition-ultra); cursor: pointer; }
.pane-image-container { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; }
.pane-bg { position: absolute; inset: -10%; width: 120%; height: 120%; background-size: cover; background-position: center; filter: blur(4px) grayscale(30%) brightness(0.45); transform: scale(1); transition: var(--transition-ultra); }
.data-overlay { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.5; transition: var(--transition-ultra); z-index: 2; }

/* Interface Scanner */
.action-block { position: relative; z-index: 3; padding: 24px 48px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; background: transparent; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.block-title { font-size: 1.35rem; font-weight: 700; color: #FFFFFF; letter-spacing: 2px; text-transform: uppercase; margin: 0; position: relative; display: flex; align-items: center; gap: 10px; z-index: 2; }
.block-title svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 3; transition: transform 0.4s ease; }

.action-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(
        0 0, 15px 0, 15px 2px, 2px 2px, 2px 15px, 0 15px, 
        100% 0, 100% 15px, calc(100% - 2px) 15px, calc(100% - 2px) 2px, calc(100% - 15px) 2px, calc(100% - 15px) 0, 
        100% 100%, calc(100% - 15px) 100%, calc(100% - 15px) calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) calc(100% - 15px), 100% calc(100% - 15px), 
        0 100%, 0 calc(100% - 15px), 2px calc(100% - 15px), 2px calc(100% - 2px), 15px calc(100% - 2px), 15px 100%
    );
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}
.macro-scanner-bar { position: absolute; bottom: -6px; left: 0; width: 100%; height: 4px; display: flex; background: rgba(255, 255, 255, 0.05); overflow: hidden; opacity: 0; transform: scaleY(0); transition: all 0.4s ease; z-index: 3; }
.scan-seg { height: 100%; }
.scan-prot { background: #FFFFFF; width: 45%; }
.scan-lip { background: var(--hr-color-lip); width: 25%; }
.scan-gluc { background: var(--hr-saffron); width: 30%; }

@keyframes laserScan { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.macro-scanner-bar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent); transform: translateX(-100%); }

.hero-split-wrapper:hover .hero-pane { flex: 0.6; }
.hero-split-wrapper .hero-pane:hover { flex: 1.4; }
.hero-pane:hover .pane-bg { filter: blur(0) grayscale(0) brightness(0.8); transform: scale(1.04); }
.hero-pane:hover .action-block::before { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); background: rgba(16, 27, 43, 0.7); border-color: rgba(255, 255, 255, 0.4); }
.hero-pane:hover .macro-scanner-bar { opacity: 1; transform: scaleY(1); }
.hero-pane:hover .macro-scanner-bar::after { animation: laserScan 1.6s infinite linear; }
.hero-pane:hover .block-title svg { transform: translateX(4px); }

.cat-pane:hover .action-block::before { border-color: var(--hr-saffron); }
.cat-pane:hover .block-title { color: var(--hr-saffron); }
.dog-pane:hover .action-block::before { border-color: var(--hr-color-lip); }
.dog-pane:hover .block-title { color: var(--hr-color-lip); }

@media (max-width: 900px) {
    .dynamic-hero-section { height: auto; min-height: 520px; }
    .hero-split-wrapper { flex-direction: column; }
    .hero-split-wrapper:hover .hero-pane { flex: none; }
    .hero-pane { flex: 1; min-height: 260px; }
    .pane-bg { filter: blur(2px) grayscale(10%) brightness(0.6); }
    .hero-pane:hover .pane-bg { filter: blur(2px) grayscale(10%) brightness(0.6); transform: none; }
    .action-block::before { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); background: rgba(16, 27, 43, 0.75); border-color: rgba(255, 255, 255, 0.2); }
    .macro-scanner-bar { opacity: 1; transform: scaleY(1); }
    .block-title { font-size: 1.15rem; }
}

/* ==========================================================================
   5. SYSTEME DE FILTRAGE (Page Catalogue / Index)
   ========================================================================= */
.hr-c-mobile-filter-bar { display: none; position: sticky; top: 80px; z-index: 90; background: var(--hr-white); padding: 12px 0; border-bottom: 1px solid var(--hr-border); }
@media (max-width: 991px) { .hr-c-mobile-filter-bar { display: block; } }

.hr-c-btn-open-filter { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--hr-navy); color: var(--hr-white); padding: 14px; border-radius: var(--hr-radius-sm); font-weight: 700; text-transform: uppercase; font-size: 13px; border: none; cursor: pointer; transition: var(--hr-transition); }
.hr-c-btn-open-filter:hover { background: var(--hr-saffron); }

.hr-c-filter-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(16, 27, 43, 0.4); z-index: 1000; opacity: 0; visibility: hidden; transition: var(--hr-transition); }
.hr-c-filter-overlay.active { opacity: 1; visibility: visible; }
.hr-c-filter-title { font-size: 22px; margin-bottom: 20px; letter-spacing: -0.5px; }
@media (max-width: 991px) { .hr-c-filter-title { display: none; } }

.hr-c-filter-drawer { position: fixed; top: 0; left: -100%; width: 380px; max-width: 85%; height: 100%; background: var(--hr-white); z-index: 1001; box-shadow: 10px 0 30px rgba(0,0,0,0.08); transition: var(--hr-transition); display: flex; flex-direction: column; }
.hr-c-filter-drawer.active { left: 0; }

@media (min-width: 992px) {
    .hr-c-filter-drawer { position: static; width: 100%; max-width: 100%; height: auto; box-shadow: none; border: 1px solid var(--hr-border); border-radius: var(--hr-radius-md); margin-bottom: 40px; background: transparent; }
    .hr-c-filter-header-mobile, .hr-c-filter-footer-mobile { display: none !important; }
    .hr-c-filter-body { padding: 32px; background: var(--hr-white); border-radius: var(--hr-radius-md); box-shadow: var(--hr-shadow); }
    .hr-c-filter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 8px; }
    .hr-c-advanced-columns { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
    .hr-c-components-subgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
}

.hr-c-filter-header-mobile { padding: 20px; border-bottom: 1px solid var(--hr-border); display: flex; justify-content: space-between; align-items: center; background: var(--hr-white); }
.hr-c-filter-header-mobile button { background: none; border: none; font-size: 28px; line-height: 1; cursor: pointer; color: var(--hr-navy); }
.hr-c-filter-body { flex: 1; overflow-y: auto; padding: 20px; }
.hr-c-filter-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.hr-c-filter-group label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--hr-navy); margin-bottom: 8px; }

.hr-c-filter-select, .hr-c-filter-input { width: 100%; padding: 12px 14px; border: 1px solid var(--hr-border); border-radius: var(--hr-radius-sm); background: var(--hr-white); font-family: 'Inter'; font-weight: 600; font-size: 14px; outline: none; color: var(--hr-navy); transition: var(--hr-transition); appearance: none; -webkit-appearance: none; }
.hr-c-filter-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23101B2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.hr-c-filter-select:focus, .hr-c-filter-input:focus { border-color: var(--hr-navy); box-shadow: 0 0 0 3px rgba(16, 27, 43, 0.04); }

.hr-c-split-row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 14px; width: 100%; }
.hr-c-chips-container { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; min-height: 24px; }
.hr-c-chip { background: var(--hr-bg-sable); color: var(--hr-navy); font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 50px; display: flex; align-items: center; gap: 8px; animation: popIn 0.2s ease; border: 1px solid transparent; }
.hr-c-chip span { cursor: pointer; font-size: 16px; line-height: 1; color: var(--hr-saffron); font-weight: 400; transition: var(--hr-transition); }
.hr-c-chip span:hover { color: var(--hr-navy); }

.hr-c-accordion { border-top: 1px solid var(--hr-border); margin-top: 12px; padding-top: 8px; }
.hr-c-accordion-btn { width: auto; text-align: left; background: none; border: none; padding: 14px 0; font-weight: 700; font-size: 13px; text-transform: uppercase; color: var(--hr-saffron); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.5px; transition: var(--hr-transition); }
.hr-c-accordion-btn:hover { color: var(--hr-navy); }
.hr-c-accordion-btn span { font-size: 16px; font-weight: 500; }
.hr-c-accordion-content { display: none; padding-top: 10px; padding-bottom: 10px; }
.hr-c-accordion-content.active { display: block; }

.hr-c-range-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; width: 100%; }
.hr-c-range-col { background: var(--hr-bg-creme); border: 1px solid var(--hr-border); border-radius: var(--hr-radius-sm); display: flex; align-items: center; padding: 0 12px; width: 100%; transition: var(--hr-transition); }
.hr-c-range-col:focus-within { border-color: var(--hr-navy); background: var(--hr-white); }
.hr-c-range-col span { font-size: 9px; font-weight: 800; color: var(--hr-text-muted); text-transform: uppercase; white-space: nowrap; margin-right: 8px; flex-shrink: 0; letter-spacing: 0.5px; }
.hr-c-range-col input { border: none; background: transparent; padding: 11px 0; width: 100%; text-align: left; font-weight: 700; outline: none; font-size: 14px; color: var(--hr-navy); flex-grow: 1; }
.hr-c-range-col input::-webkit-outer-spin-button, .hr-c-range-col input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.hr-c-range-col input[type=number] { -moz-appearance: textfield; }

.hr-c-advanced-section-title { font-size: 14px; font-weight: 800; text-transform: uppercase; color: var(--hr-navy); margin-top: 10px; margin-bottom: 20px; border-bottom: 2px solid var(--hr-navy); padding-bottom: 6px; letter-spacing: 0.5px; }
.hr-c-accordion-subgroup { margin-bottom: 16px; width: 100%; }
.hr-c-accordion-subgroup-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--hr-navy); margin-bottom: 6px; }

.hr-c-filter-actions-desktop { margin-top: 16px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--hr-border); padding-top: 20px; }
.hr-c-desktop-counter { font-size: 14px; font-weight: 600; color: var(--hr-navy); display: none; }
@media (min-width: 992px) { .hr-c-desktop-counter { display: block; } }

#btnReset { background: none; border: none; font-size: 13px; font-weight: 700; text-decoration: underline; cursor: pointer; color: var(--hr-text-muted); transition: var(--hr-transition); }
#btnReset:hover { color: var(--hr-saffron); }

.hr-c-filter-footer-mobile { padding: 20px; border-top: 1px solid var(--hr-border); background: var(--hr-white); }
.hr-c-filter-footer-mobile button { width: 100%; background: var(--hr-saffron); color: var(--hr-white); border: none; padding: 16px; border-radius: var(--hr-radius-sm); font-weight: 800; text-transform: uppercase; cursor: pointer; transition: var(--hr-transition); }
.hr-c-filter-footer-mobile button:hover { background: var(--hr-navy); }
.hr-c-no-products { display: none; grid-column: 1 / -1; text-align: center; padding: 60px 40px; color: var(--hr-text-muted); font-weight: 600; font-size: 15px; }

/* ==========================================================================
   6. GRILLES DE PRODUITS & CARTES MINI (Standardisées)
   ========================================================================= */
.hr-c-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .hr-c-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .hr-c-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .hr-c-product-grid { grid-template-columns: 1fr; } }

.hr-c-card, .hr-c-card-mini, .hr-card-mini { 
    background: var(--hr-white); border: 1px solid var(--hr-border); border-radius: var(--hr-radius-md); padding: 28px 24px;
    display: flex; flex-direction: column; text-align: center; transition: var(--hr-transition); box-shadow: var(--hr-shadow);
}
.hr-c-card-mini, .hr-card-mini { padding: 24px 20px; justify-content: space-between; min-height: 340px; text-decoration: none; }
.hr-card-mini { min-height: auto; }

.hr-c-card:hover, .hr-c-card-mini:hover, .hr-card-mini:hover { transform: translateY(-6px); border-color: var(--hr-navy); box-shadow: 0 12px 32px rgba(16, 27, 43, 0.08); }
.hr-c-card-img, .hr-c-card-mini-img, .hr-card-mini-img { height: 160px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: var(--hr-white); border: 1px solid var(--hr-border); border-radius: var(--hr-radius-sm); padding: 10px; overflow: hidden; }
.hr-c-card-mini-img, .hr-card-mini-img { height: 140px; margin-bottom: 16px; }
.hr-card-mini-img { height: 120px; margin-bottom: 14px; }
.hr-c-card-img img, .hr-c-card-mini-img img, .hr-card-mini-img img { max-height: 100%; object-fit: contain; }

.hr-c-card-brand, .hr-c-card-mini-brand { color: var(--hr-saffron); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.hr-c-card-title, .hr-c-card-mini-title, .hr-card-mini-title { font-size: 15px; font-weight: 800; color: var(--hr-navy); line-height: 1.4; margin-bottom: 20px; height: 42px; overflow: hidden; }
.hr-c-card-mini-title { font-size: 16px; margin-bottom: 16px; height: 36px; }
.hr-card-mini-title { font-size: 15px; margin-bottom: 8px; }
.hr-c-card-score, .hr-c-card-mini-score, .hr-card-mini-score { background: var(--hr-navy); color: var(--hr-white); font-weight: 700; font-size: 12px; padding: 6px 16px; border-radius: var(--hr-radius-sm); align-self: center; letter-spacing: 0.3px; display: inline-block; }
.hr-c-card-mini-score { padding: 4px 14px; }
.hr-card-mini-score { font-size: 11px; padding: 3px 12px; }

@media (max-width: 768px) {
    .hr-u-grid-4.hr-u-mobile-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 16px 24px; margin: 0 -24px; -webkit-overflow-scrolling: touch; }
    .hr-u-grid-4.hr-u-mobile-carousel::-webkit-scrollbar { display: none; }
    .hr-u-grid-4.hr-u-mobile-carousel .hr-c-card-mini { scroll-snap-align: center; flex: 0 0 260px; max-width: 80%; min-height: auto; }
}

/* ==========================================================================
   7. STRUCTURES DE PAGES SPÉCIFIQUES (Top X, Single Produit, Marque, Duel)
   ========================================================================= */
/* --- PAGE HERO PRODUIT (FOND BLANC) --- */
.hr-product-hero { padding: 40px 0; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 850px) { .hr-product-hero { grid-template-columns: 1fr; gap: 32px; } }
.hr-gallery-container { width: 100%; }
.hr-product-img-box { width: 100%; background: var(--hr-white); border-radius: var(--hr-radius-md); display: flex; justify-content: center; align-items: center; border: 1px solid var(--hr-border); padding: 30px; box-shadow: var(--hr-shadow); }
.hr-product-img-box img { max-height: 380px; object-fit: contain; }
.hr-main-title { font-size: 32px; line-height: 1.2; color: var(--hr-navy); font-weight: 800; letter-spacing: -1px; }
.hr-hero-desc { color: var(--hr-text-muted); font-size: 16px; margin-bottom: 30px; line-height: 1.6; }

.hr-conversion-block h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; color: var(--hr-navy); }
.hr-aff-list { display: flex; flex-wrap: wrap; gap: 10px; }
.hr-aff-row { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 12px 18px; background: var(--hr-white); border: 2px solid var(--hr-navy); border-radius: var(--hr-radius-sm); transition: var(--hr-transition); }
.hr-aff-row:hover { border-color: var(--hr-saffron); }
.hr-aff-vendor { font-weight: 700; font-size: 15px; color: var(--hr-navy); }

/* --- PAGE TOP 5 & TOP 3 --- */
.hr-top-card, .hr-top3-card { background: var(--hr-white); border: 2px solid var(--hr-navy); border-radius: var(--hr-radius-md); padding: 32px 20px 20px; position: relative; box-shadow: var(--hr-shadow); display: flex; flex-direction: column; justify-content: space-between; text-decoration: none; color: inherit; transition: var(--hr-transition); }
.hr-top3-card { padding: 32px 24px 24px; }
.hr-top-card:hover, .hr-top3-card:hover { transform: translateY(-4px); }

.hr-top-badge, .hr-top3-badge { position: absolute; top: -14px; left: 20px; background: var(--hr-saffron); color: var(--hr-white); font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: var(--hr-radius-sm); text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }
.hr-top3-badge { left: 24px; font-size: 12px; padding: 4px 16px; }

.hr-top-card-img-box { height: 130px; max-width: 100%; background: var(--hr-white); border: 1px solid var(--hr-border); border-radius: var(--hr-radius-sm); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; padding: 12px; margin-top: 10px; overflow: hidden; }
.hr-top-card-img-box img { max-height: 100%; max-width: 100%; object-fit: contain; }
.hr-top-card-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--hr-navy); line-height: 1.3; }

.hr-top-score-centered, .hr-top3-score-centered { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin: 16px 0; }
.hr-top-score-centered .num, .hr-top3-score-centered .num { font-size: 46px; font-weight: 800; color: var(--hr-navy); line-height: 1; }
.hr-top3-score-centered .num { font-size: 48px; }
.hr-top-score-centered .sub-block, .hr-top3-score-centered .sub-block { display: flex; flex-direction: column; text-align: left; }
.hr-top-score-centered .denom, .hr-top3-score-centered .denom { font-size: 12px; font-weight: 800; color: var(--hr-saffron); text-transform: uppercase; letter-spacing: 0.5px; }
.hr-top3-score-centered .denom { line-height: 1.2; }
.hr-top-score-centered .label, .hr-top3-score-centered .label { font-size: 11px; font-weight: 700; color: var(--hr-text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: -1px; }
.hr-top-score-centered .label { display: inline-flex; align-items: center; }

.hr-top-shop-box-topx, .hr-top3-shop-box { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--hr-border); display: flex; flex-direction: column; gap: 2px; width: 100%; }
.hr-top3-shop-box { margin-top: 18px; padding-top: 14px; gap: 8px; }

.hr-top-shop-row-topx, .hr-top3-shop-row { display: flex; justify-content: space-between; align-items: center; background: transparent; border: none; border-bottom: 1px solid rgba(16, 27, 43, 0.06); border-radius: 0; padding: 8px 4px; transition: var(--hr-transition); text-decoration: none; }
.hr-top3-shop-row { background: #FFFFFF; border: 2px solid var(--hr-navy); border-radius: var(--hr-radius-sm); padding: 8px 12px; }
.hr-top-shop-row-topx:last-child { border-bottom: none; }
.hr-top-shop-row-topx:hover { background-color: rgba(224, 106, 61, 0.04); padding-left: 8px; padding-right: 8px; border-radius: 4px; }
.hr-top3-shop-row:hover { border-color: var(--hr-saffron); }

.hr-top-vendor-name-topx, .hr-top3-vendor-name { font-size: 13px; font-weight: 600; color: var(--hr-navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.hr-top3-vendor-name { font-weight: 700; flex: none; }

.hr-top-cta-btn-topx, .hr-top3-cta-btn { color: var(--hr-saffron); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; display: inline-flex; align-items: center; gap: 4px; transition: var(--hr-transition); }
.hr-top3-cta-btn { background: var(--hr-saffron); color: var(--hr-white); padding: 5px 12px; border-radius: 4px; letter-spacing: 0.5px; }
.hr-top-shop-row-topx:hover .hr-top-cta-btn-topx { color: var(--hr-navy); }

@media (max-width: 768px) {
    .hr-top5-mobile-carousel, .hr-u-grid-3.hr-top3-mobile-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 20px 24px; margin: 0 -24px; -webkit-overflow-scrolling: touch; }
    .hr-top5-mobile-carousel::-webkit-scrollbar, .hr-u-grid-3.hr-top3-mobile-carousel::-webkit-scrollbar { display: none; }
    .hr-top-card, .hr-top3-card { scroll-snap-align: center; flex: 0 0 290px; max-width: 85%; }
    .hr-u-grid-3.hr-top3-mobile-carousel { scroll-behavior: smooth; }
}

/* --- ANALYSES CLINIQUES & DÉCRYPTAGE --- */
.hr-analysis-item { background: var(--hr-white); border: 1px solid var(--hr-border); border-radius: var(--hr-radius-md); padding: 32px; margin-bottom: 32px; box-shadow: var(--hr-shadow); }
.hr-analysis-item:last-child { margin-bottom: 0; }
.hr-analysis-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--hr-navy); padding-bottom: 16px; margin-bottom: 20px; }
.hr-analysis-prod-title { font-size: 20px; font-weight: 800; color: var(--hr-navy); }
.hr-analysis-score-badge { display: flex; align-items: center; gap: 4px; background: var(--hr-bg-creme); border: 1px solid var(--hr-border); padding: 6px 14px; border-radius: var(--hr-radius-sm); font-size: 13px; font-weight: 700; color: var(--hr-navy); text-transform: uppercase; letter-spacing: 0.5px; }
.hr-analysis-sub-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }

.hr-analysis-data-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 16px; }
.hr-analysis-data-box { background: var(--hr-bg-creme); border: 1px solid var(--hr-border); padding: 10px 14px; border-radius: var(--hr-radius-sm); display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.hr-analysis-data-box .lbl { font-weight: 600; display: flex; align-items: center; gap: 6px; }
.hr-analysis-data-box .lbl-bullet { width: 8px; height: 8px; border-radius: 2px; }
.hr-analysis-data-box .val { font-weight: 800; color: var(--hr-navy); }

.hr-analysis-indices-inline { display: flex; flex-direction: column; gap: 10px; background: var(--hr-bg-sable); padding: 14px; border-radius: var(--hr-radius-sm); }
.hr-analysis-index-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 700; color: var(--hr-navy); border-bottom: 1px solid rgba(16, 27, 43, 0.05); padding-bottom: 4px; }
.hr-analysis-index-row:last-child { border-bottom: none; padding-bottom: 0; }
.hr-analysis-index-row strong { color: var(--hr-saffron); font-weight: 800; }
.hr-analysis-index-lbl { display: inline-flex; align-items: center; }

.hr-analytique-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 50px; }
.hr-data-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--hr-border); font-size: 15px; }
.hr-data-row-sub { padding-left: 22px; color: var(--hr-text-muted); font-size: 13px; border-bottom: 1px dashed var(--hr-border); }
.hr-data-label { display: flex; align-items: center; font-weight: 600; }
.hr-data-bullet { width: 12px; height: 12px; border-radius: 3px; margin-right: 10px; }
.hr-data-value { font-weight: 700; }
.hr-caption-notice { text-align: center; font-size: 14px; font-style: italic; color: var(--hr-text-muted); margin-top: 30px; }

@media (max-width: 850px) {
    .hr-analysis-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hr-analysis-sub-grid, .hr-analytique-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* --- PAGE MARQUE --- */
.hr-brand-hero-grid { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: center; }
.hr-brand-logo-box { background: var(--hr-white); border: 1px solid var(--hr-border); border-radius: var(--hr-radius-md); padding: 30px; display: flex; align-items: center; justify-content: center; box-shadow: var(--hr-shadow); min-height: 160px; }
.hr-brand-desc { font-size: 16px; color: var(--hr-text-muted); line-height: 1.7; }
@media (max-width: 768px) {
    .hr-brand-hero-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .hr-brand-logo-box { max-width: 240px; margin: 0 auto; }
}
.hr-product-item-toggle { display: none; }
.hr-product-item-toggle.is-visible { display: flex; }
.hr-pagination-container { text-align: center; margin-top: 40px; }

/* --- MODULE DUEL & COMPARAISON --- */
.hr-c-duel-home-box, .hr-duel-box { background: var(--hr-navy); padding: 24px; border-radius: var(--hr-radius-md); display: flex; gap: 16px; box-shadow: var(--hr-shadow); width: 100%; align-items: center; margin: 0 auto; }
.hr-duel-box { padding: 16px; gap: 12px; }
.hr-c-duel-home-input, .hr-duel-input { flex: 1; padding: 16px; border: none; border-radius: var(--hr-radius-sm); font-family: inherit; font-size: 14px; background: var(--hr-white); color: var(--hr-navy); font-weight: 500; }
.hr-duel-input { padding: 12px 16px; }
.hr-c-duel-home-input:focus, .hr-duel-input:focus { outline: none; box-shadow: 0 0 0 3px rgba(224, 106, 61, 0.4); }
.hr-c-duel-home-vs { color: var(--hr-white); font-weight: 800; font-size: 15px; opacity: 0.6; letter-spacing: 0.5px; }
.hr-btn-duel { background: var(--hr-saffron); color: var(--hr-white); border: none; padding: 0 24px; border-radius: var(--hr-radius-sm); font-size: 13px; font-weight: 700; text-transform: uppercase; cursor: pointer; height: 100%; min-height: 44px; }

@media (max-width: 768px) {
    .hr-c-duel-home-box { flex-direction: column; gap: 12px; padding: 20px; }
    .hr-c-duel-home-box .hr-c-btn-action { width: 100%; }
    .hr-c-duel-home-input { width: 100%; text-align: center; }
}
@media (max-width: 550px) {
    .hr-duel-box { flex-direction: column; }
    .hr-btn-duel { padding: 12px; width: 100%; }
}

.hr-duel-header-block { display: grid; grid-template-columns: 1fr 180px 1fr; gap: 20px; align-items: end; border-bottom: 2px solid var(--hr-navy); padding-bottom: 24px; margin-bottom: 12px; }
.hr-duel-prod-meta { text-align: center; }
.hr-duel-prod-meta img { max-height: 120px; margin: 0 auto 12px; object-fit: contain; }
.hr-duel-brand { font-size: 12px; text-transform: uppercase; color: var(--hr-text-muted); font-weight: 700; letter-spacing: 0.5px; }
.hr-duel-title { font-size: 18px; font-weight: 800; line-height: 1.2; margin-bottom: 6px; }
.hr-duel-center-vs { text-align: center; font-weight: 800; font-size: 14px; color: var(--hr-text-muted); padding-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }

.hr-duel-row { display: grid; grid-template-columns: 1fr 200px 1fr; gap: 20px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--hr-border); text-align: center; }
.hr-duel-row.bg-grey { background-color: var(--hr-bg-creme); margin: 0 -24px; padding: 16px 24px; }
.hr-duel-label { font-size: 13px; font-weight: 700; color: var(--hr-navy); text-transform: uppercase; letter-spacing: 0.5px; position: relative; }
.hr-duel-value { font-size: 16px; font-weight: 700; color: var(--hr-navy); }
.hr-duel-value.high { color: var(--hr-saffron); font-size: 24px; font-weight: 800; }
.hr-duel-value-sub { font-size: 13px; font-weight: 700; color: var(--hr-navy); display: flex; align-items: center; justify-content: center; gap: 6px; }

.hr-duel-shop-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 30px 0; border-top: 1px dashed var(--hr-border); }
.hr-duel-shop-column { display: flex; flex-direction: column; gap: 12px; }
.hr-duel-shop-title { font-size: 13px; font-weight: 700; color: var(--hr-text-muted); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--hr-border); padding-bottom: 6px; }

.hr-duel-verdict-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 30px; }
.hr-duel-verdict-card { padding: 24px; border-radius: var(--hr-radius-md); border: 1px solid var(--hr-border); height: 100%; }
.hr-duel-verdict-card.atout { background: var(--hr-white); box-shadow: var(--hr-shadow); }
.hr-duel-verdict-card.vigilance { background: var(--hr-white); border: 1px solid var(--hr-border); color: var(--hr-navy); box-shadow: var(--hr-shadow); }
.hr-duel-verdict-card h4 { font-size: 15px; margin-bottom: 14px; line-height: 1.2; text-transform: uppercase; }

@media (max-width: 768px) {
    .hr-duel-header-block { grid-template-columns: 1fr 1fr; gap: 16px; padding-bottom: 16px; }
    .hr-duel-center-vs { display: none; }
    .hr-duel-prod-meta img { max-height: 90px; }
    .hr-duel-title { font-size: 15px; }
    .hr-duel-row { grid-template-columns: 1fr 1fr; gap: 8px 16px; padding: 14px 0; }
    .hr-duel-label { grid-column: 1 / span 2; grid-row: 1; text-align: center; background: var(--hr-bg-sable); padding: 3px 0; font-size: 11px; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
    .hr-duel-value { grid-row: 2; font-size: 14px; text-align: center !important; padding: 0 !important; }
    .hr-duel-value.high { font-size: 20px; }
    .hr-duel-value-sub { grid-row: 2; font-size: 13px; text-align: center !important; justify-content: center !important; padding: 0 !important; }
    .hr-duel-shop-wrapper, .hr-duel-verdict-wrapper { grid-template-columns: 1fr; gap: 24px; }
}

/* --- INDICES SCIENTIFIQUES BLOCS --- */
.hr-indices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
@media (max-width: 850px) { .hr-indices-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hr-indices-grid { grid-template-columns: 1fr; } }

.hr-index-card { background: var(--hr-white); border: 1px solid var(--hr-border); border-radius: var(--hr-radius-md); padding: 24px 15px; text-align: center; box-shadow: var(--hr-shadow); position: relative; }
.hr-index-label { font-size: 13px; font-weight: 800; color: var(--hr-navy); text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; justify-content: center; gap: 4px; }
.hr-index-val { font-size: 32px; font-weight: 800; margin: 6px 0; color: var(--hr-saffron); letter-spacing: -0.5px; }
.hr-index-desc { font-size: 12px; color: var(--hr-text-muted); }

/* --- FILTERS DE RECHERCHE INPUTS DE RÉFÉRENCES --- */
.hr-c-search-input-wrapper { margin-top: 14px; width: 100%; max-width: 280px; margin-left: auto; margin-right: auto; position: relative; }
.hr-c-search-input { width: 100%; background: var(--hr-bg-creme); border: 1px solid var(--hr-border); padding: 8px 12px; font-size: 12px; font-family: 'Inter', sans-serif; font-weight: 500; color: var(--hr-navy); border-radius: var(--hr-radius-sm); transition: var(--hr-transition); text-align: center; }
.hr-c-search-input:focus { outline: none; border-color: var(--hr-navy); background: var(--hr-white); }
.hr-c-search-input::placeholder { color: var(--hr-text-muted); font-style: italic; opacity: 0.8; }

/* ==========================================================================
   8. LISTES DE VERDICTS (Structures Standardisées & Uniques)
   ========================================================================= */
.hr-analysis-verdict-list, .hr-duel-verdict-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hr-duel-verdict-list { gap: 12px; font-size: 13px; line-height: 1.5; text-align: left; }

.hr-analysis-verdict-item, .hr-duel-verdict-item { position: relative; padding-left: 24px; font-size: 14px; line-height: 1.5; color: var(--hr-navy); }
.hr-duel-verdict-item { padding-left: 20px; }
.hr-analysis-verdict-item .mark, .hr-duel-verdict-item .hr-mark { position: absolute; left: 0; font-weight: 800; font-size: 15px; }

.hr-analysis-verdict-item.positive .mark, .hr-duel-verdict-item.atout-item .hr-mark { color: #137333; }
.hr-analysis-verdict-item.vigilance .mark, .hr-duel-verdict-item.vigilance-item .hr-mark { color: var(--hr-saffron); }
.hr-duel-verdict-item.atout-item, .hr-duel-verdict-item.vigilance-item { color: var(--hr-navy); }

/* Version Block 100% Largeur Unique */
.hr-verdict-list-unique { list-style: none; display: flex; flex-direction: column; gap: 16px; width: 100%; }
.hr-verdict-item-unique { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.6; color: var(--hr-navy); }
.hr-verdict-item-unique .hr-bullet-mark { position: absolute; left: 0; top: 0; font-weight: 800; font-size: 16px; }
.hr-verdict-item-unique.positive .hr-bullet-mark { color: #137333; }
.hr-verdict-item-unique.vigilance .hr-bullet-mark { color: var(--hr-saffron); }

/* --- TABLEAUX DE RATIONNEMENT RESPONSIVE --- */
.hr-table-responsive { overflow-x: auto; border: 1px solid var(--hr-border); border-radius: var(--hr-radius-md); }
.hr-table { width: 100%; border-collapse: collapse; font-size: 15px; background: var(--hr-white); }
.hr-table th, .hr-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--hr-border); }
.hr-table th { background: var(--hr-navy); color: var(--hr-white); font-weight: 600; }
.hr-table tr:last-child td { border-bottom: none; }
.hr-table tr:nth-child(even) { background-color: #FAF9F6; }

/* ==========================================================================
   9. STRUCTURES ET CLOUD DE LIENS SEO
   ========================================================================= */
.hr-seo-block, .hr-seo-text-block { margin-bottom: 40px; }
.hr-seo-block h3, .hr-seo-text-block h3 { font-size: 20px; margin-bottom: 12px; color: var(--hr-navy); font-weight: 800; letter-spacing: -0.3px; }
.hr-seo-block h3 { display: flex; align-items: center; gap: 8px; }
.hr-seo-text-block h3 { margin-bottom: 16px; }
.hr-seo-block p, .hr-seo-text-block p { color: var(--hr-text-muted); text-align: justify; font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.hr-seo-block p:last-child, .hr-seo-text-block p:last-child { margin-bottom: 0; }
.hr-seo-block:last-child, .hr-seo-text-block:last-child { margin-bottom: 0; }

.hr-links-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hr-link-tag { background: var(--hr-white); border: 1px solid var(--hr-border); padding: 8px 16px; border-radius: var(--hr-radius-sm); font-size: 13px; font-weight: 600; text-decoration: none; transition: var(--hr-transition); color: var(--hr-navy); }
.hr-link-tag:hover { border-color: var(--hr-navy); color: var(--hr-saffron); background: var(--hr-bg-creme); }

.hr-mesh-links-container { display: flex; flex-direction: column; gap: 12px; border-top: 1px dashed var(--hr-border); margin-top: 40px; padding-top: 24px; }

@keyframes popIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

/* ==========================================================================
   10. FOOTER DESIGN & AFFILIATION MASHUP
   ========================================================================= */
.hr-c-footer {
    background-color: var(--hr-navy);
    color: var(--hr-white);
    border-top: 4px solid var(--hr-saffron);
    padding: 80px 0 40px;
    font-size: 14px;
}
.hr-c-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 48px;
    margin-bottom: 30px;
}
.hr-c-footer-brand-col { display: flex; flex-direction: column; gap: 16px; }
.hr-c-footer-logo { font-size: 32px; font-weight: 800; letter-spacing: -1.5px; text-transform: uppercase; color: var(--hr-white); }
.hr-c-footer-logo span { color: var(--hr-saffron); }
.hr-c-footer-tagline { color: var(--hr-bg-sable); opacity: 0.75; font-size: 13px; line-height: 1.6; max-width: 320px; text-align: justify; }
.hr-c-footer-column h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--hr-saffron); margin-bottom: 24px; }
.hr-c-footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.hr-c-footer-links a { color: var(--hr-white); opacity: 0.8; font-weight: 500; transition: var(--hr-transition); display: inline-block; }
.hr-c-footer-links a:hover { opacity: 1; color: var(--hr-saffron); transform: translateX(2px); }

.hr-c-footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--hr-bg-sable); opacity: 0.6; }
.hr-c-footer-legal-links { display: flex; gap: 20px; }
.hr-c-footer-legal-links a:hover { text-decoration: underline; color: var(--hr-white); }

@media (max-width: 991px) {
    .hr-c-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; padding-bottom: 32px; margin-bottom: 24px; }
}
@media (max-width: 560px) {
    .hr-c-footer { padding: 60px 0 30px; }
    .hr-c-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hr-c-footer-column h4 { margin-bottom: 16px; }
    .hr-c-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .hr-c-footer-legal-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
}
