/* ============================================
   LDLC Guide PC Portable — Design System
   ============================================ */

/* --- Custom Properties --- */
:root {
    --navy: #0a3782;
    --navy-dark: #1e2b50;
    --white: #fff;
    --gray-body: #505050;
    --gray-dark: #282828;
    --gray-medium: #969696;
    --gray-border: #e1e1e1;
    --gray-bg: #f0f0f0;
    --orange: #ff8200;
    --blue-info: #0096c8;
    --blue-light: #d9eef4;
    --green-stock: #32b414;
    --red-promo: #e61414;
    --green-mint: #6AD4B0;

    --font-sans: Montserrat, sans-serif;

    --shadow-sm: 0 1px 1px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 5px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 2px 5px rgba(0, 0, 0, 0.25);

    --radius: 4px;
    --radius-pill: 40px;
    --radius-badge: 100px;

    --header-h: 80px;
    --meganav-h: 40px;
    --header-total: calc(var(--header-h) + var(--meganav-h));
    --sticky-h: 52px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-total) + var(--sticky-h));
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: var(--gray-body);
    background: var(--gray-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: all .2s;
}

a:hover {
    color: var(--blue-info);
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.sbloc {
    background: var(--white);
    margin: 0 auto 22px;
    max-width: 1500px;
    padding: 22px 30px;
    position: relative;
    width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--navy-dark);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    transition: all .2s;
}

.site-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Burger menu — hidden on desktop */
.burger-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
}

.burger-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-top: 2px;
}

.site-header .logo {
    flex-shrink: 0;
    max-width: 160px;
}

.site-header .logo img {
    display: block;
    height: auto;
    width: 100%;
}

/* Header search */
.header-search {
    flex: 1;
    min-width: 0;
    display: flex;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
}

.header-search-universes {
    flex-shrink: 0;
    background: var(--gray-bg);
    border-radius: 4px 0 0 4px;
}

.header-search-universes select {
    height: 100%;
    padding: 0 31px 0 13px;
    border: none;
    background: transparent;
    color: var(--gray-body);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%23505050' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.header-search-universes select option {
    background: var(--gray-bg);
    color: var(--gray-body);
}

.header-search-field {
    flex: 1;
    display: flex;
    background: var(--white);
}

.header-search-field input {
    flex: 1;
    border: none;
    padding: 0 14px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--gray-dark);
    outline: none;
    min-width: 0;
}

.header-search-field input::placeholder {
    color: var(--gray-medium);
}

.header-search-btn {
    flex-shrink: 0;
    width: 44px;
    border: none;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    border-left: 1px solid var(--gray-border);
}

.header-search-btn:hover {
    background: var(--gray-bg);
}

.header-search-btn svg {
    width: 20px;
    height: 20px;
    color: var(--navy);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.header-actions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 4px 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-actions a:hover {
    color: var(--white);
}

.header-actions a svg {
    width: 24px;
    height: 24px;
}

.header-actions a span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* ============================================
   MEGA NAV
   ============================================ */
.mega-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    height: var(--meganav-h);
    background: var(--navy-dark);
    border-top: none;
}

.mega-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
    gap: 0;
}

.mega-nav-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    height: 100%;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s;
    border-right: 1px solid hsla(0, 0%, 100%, 0.2);
}

.mega-nav-item:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.mega-nav-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.85;
}

.mega-nav-chevron {
    width: 12px !important;
    height: 12px !important;
    opacity: 0.5;
}

.mega-nav-item--highlight {
    background: #00B4D8;
    color: var(--white);
    border-radius: 4px;
    height: 30px;
    padding: 0 12px;
    margin-right: 4px;
}

.mega-nav-item--highlight svg {
    opacity: 1;
}

.mega-nav-item--highlight:hover {
    background: #00a0c0;
    color: var(--white);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-total) + 20px) 15px 40px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-bottom: 48px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-info);
    margin-bottom: 20px;
    opacity: 0;
    animation: heroReveal .5s ease-out 0.2s forwards;
}

.hero-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
    color: var(--gray-dark);
    margin-bottom: 20px;
    opacity: 0;
    animation: heroReveal .5s ease-out 0.3s forwards;
}

.hero-title .highlight {
    color: var(--navy);
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--gray-dark);
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0;
    animation: heroReveal .5s ease-out 0.4s forwards;
}

.hero-scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: heroReveal .5s ease-out 0.5s forwards;
}

.hero-scroll-cue span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--navy);
}

.hero-scroll-cue .scroll-arrow {
    width: 20px;
    height: 20px;
    color: var(--navy);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================
   PERSONA SELECTOR
   ============================================ */
.persona-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
    justify-content: center;
}

.persona-card {
    background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 22px 20px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    position: relative;
}

.persona-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
}

.persona-card.is-active {
    border-color: var(--blue-info);
    box-shadow: inset 0 0 0 2px var(--blue-info);
}

.persona-card .persona-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    color: var(--navy);
}

.persona-card .persona-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 6px;
}

.persona-card .persona-subtitle {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 16px;
    line-height: 1.5;
}

.persona-card .persona-cta {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background: var(--navy);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    transition: opacity .2s;
}

.persona-card:hover .persona-cta {
    opacity: .85;
}

.persona-cta--disabled {
    background: var(--gray-border) !important;
    color: var(--gray-medium) !important;
    cursor: default;
    pointer-events: none;
}

/* ============================================
   STICKY NAV
   ============================================ */
.sticky-nav-wrapper {
    position: fixed;
    top: var(--header-total);
    left: 0;
    right: 0;
    z-index: 99;
    height: var(--sticky-h);
    overflow: hidden;
    pointer-events: none;
}

.sticky-nav {
    height: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transform: translateY(-100%);
    transition: transform .3s;
    pointer-events: none;
}

.sticky-nav.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.sticky-nav-persona {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.sticky-nav-persona svg {
    width: 18px;
    height: 18px;
}

.sticky-nav-tabs {
    display: flex;
    gap: 4px;
    list-style: none;
}

.sticky-nav-tab {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-medium);
    padding: 14px 16px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    text-transform: uppercase;
}

.sticky-nav-tab:hover {
    color: var(--gray-dark);
}

.sticky-nav-tab.is-active {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

/* ============================================
   SECTIONS — Common
   ============================================ */
.section {
    max-width: 1500px;
    margin: 0 auto 10px auto;
    padding: 50px 90px;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.section--fullscreen {
    min-height: calc(100vh - var(--header-total) - var(--sticky-h));
    display: flex;
    align-items: flex-start;
}

.section > .container {
    max-width: none;
    width: 100%;
    padding: 0;
}

.section--fullscreen > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section scroll cue */
.section-scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    text-decoration: none;
    color: var(--navy);
}

.section-scroll-cue span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.6;
}

.chevrons-animated {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -4px;
}

.chevrons-animated svg {
    width: 32px;
    height: 32px;
    color: var(--navy);
    opacity: 0.3;
    animation: chevronPulse 1.8s ease-in-out infinite;
}

.chevrons-animated svg:nth-child(1) {
    animation-delay: 0s;
}

.chevrons-animated svg:nth-child(2) {
    animation-delay: 0.2s;
    margin-top: -12px;
}

.chevrons-animated svg:nth-child(3) {
    animation-delay: 0.4s;
    margin-top: -12px;
}

@keyframes chevronPulse {
    0%, 100% { opacity: 0.15; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(4px); }
}

.section--alt {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background: var(--blue-info);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.title-1 {
    color: var(--gray-medium);
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 20px;
}

.title-3 {
    color: var(--gray-body);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 20px;
}

.section-intro {
    font-size: 16px;
    color: var(--gray-medium);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   SPECS CARDS
   ============================================ */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spec-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 22px 20px;
    transition: all .2s;
}

.spec-card:hover {
    border-color: var(--blue-info);
    box-shadow: var(--shadow-md);
}

.spec-card .spec-icon {
    width: 36px;
    height: 36px;
    color: var(--navy);
    margin-bottom: 16px;
}

.spec-card .spec-name {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.spec-card .spec-value {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.spec-card .spec-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-mint);
    margin-bottom: 12px;
}

.spec-card .spec-desc {
    font-size: 13px;
    color: var(--gray-medium);
    line-height: 1.5;
}

.spec-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-info);
    text-transform: uppercase;
    margin-top: 12px;
    display: inline-block;
    letter-spacing: 0.02em;
}

/* --- Spec Modal --- */
.spec-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.spec-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.spec-modal {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 560px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: transform .3s;
}

.spec-modal-overlay.is-open .spec-modal {
    transform: translateY(0);
}

.spec-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 0;
    background: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--gray-medium);
    line-height: 1;
}

.spec-modal-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-border);
}

.spec-modal-header .spec-name {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.spec-modal-header .spec-value {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.spec-modal-header .spec-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-medium);
}

.spec-modal-body {
    font-size: 14px;
    line-height: 21px;
    color: var(--gray-body);
}

.spec-modal-body .title-3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.spec-modal-body .title-3 + .title-3,
.spec-modal-body p + .title-3,
.spec-modal-body ul + .title-3 {
    margin-top: 24px;
}

.spec-modal-body ul {
    padding-left: 20px;
    margin: 0;
}

.spec-modal-body li {
    margin-bottom: 8px;
}

/* --- Guide CTA --- */
.guide-cta {
    text-align: center;
    margin-top: 32px;
}

.guide-cta-text {
    font-size: 15px;
    color: var(--gray-medium);
    margin-bottom: 12px;
}

.btn--outline {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid var(--navy);
    border-radius: var(--radius-pill);
    color: var(--navy);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    cursor: pointer;
    background: transparent;
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* --- Guide Comprendre Modal --- */
.guide-modal {
    max-width: 700px;
}

.guide-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--gray-border);
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.guide-tabs::-webkit-scrollbar {
    display: none;
}

.guide-tab {
    flex-shrink: 0;
    padding: 10px 18px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-medium);
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}

.guide-tab:hover {
    color: var(--navy);
}

.guide-tab.is-active {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

.guide-panel {
    display: none;
}

.guide-panel.is-active {
    display: block;
}

.guide-panel h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.guide-panel h3:not(:first-child) {
    margin-top: 20px;
}

.guide-panel p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.guide-panel ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.guide-panel li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.guide-tip {
    background: var(--blue-light);
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray-dark);
}

.guide-tip strong {
    color: var(--navy);
}

/* ============================================
   TRAPS / PITFALLS
   ============================================ */
.traps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trap-card {
    background: var(--white);
    border-radius: 8px;
    padding: 28px;
    transition: all .25s ease;
    border: 1px solid var(--gray-border);
    border-top: 3px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.trap-card--danger { border-top-color: var(--red-promo); }
.trap-card--warning { border-top-color: var(--orange); }
.trap-card--tip { border-top-color: var(--green-stock); }

.trap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.trap-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-badge);
    line-height: 1.4;
    display: inline-block;
    margin-bottom: 16px;
}

.trap-badge--danger {
    background: rgba(230, 20, 20, 0.1);
    color: var(--red-promo);
}

.trap-badge--warning {
    background: rgba(255, 130, 0, 0.1);
    color: var(--orange);
}

.trap-badge--tip {
    background: rgba(50, 180, 20, 0.1);
    color: var(--green-stock);
}

.trap-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.trap-text {
    font-size: 14px;
    color: var(--gray-body);
    line-height: 1.7;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-card.is-recommended {
    border: 2px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, var(--blue-info), var(--navy)) border-box;
    box-shadow: 0 0 0 3px rgba(0, 150, 200, 0.12);
}

.product-card.is-recommended:hover {
    box-shadow: 0 0 0 3px rgba(0, 150, 200, 0.12), var(--shadow-md);
}

.product-image {
    position: relative;
    background: var(--gray-bg);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.product-image img {
    max-height: 180px;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: var(--radius-badge);
    z-index: 2;
}

.product-badge--budget {
    background: var(--gray-border);
    color: var(--gray-dark);
}

.product-badge--recommended {
    background: var(--navy);
    color: var(--white);
}

.product-badge--premium {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
}

.product-badge--ecosystem {
    background: var(--gray-dark);
    color: var(--white);
}

.product-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.product-ref {
    font-size: 12px;
    color: var(--gray-medium);
    margin-bottom: 16px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.product-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-body);
    background: var(--gray-bg);
    padding: 4px 10px;
    border-radius: var(--radius-badge);
    white-space: nowrap;
}

.product-divider {
    height: 1px;
    background: var(--gray-border);
    margin-bottom: 16px;
}

.product-verdict {
    font-size: 13px;
    color: var(--gray-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

.verdict-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.verdict-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.verdict-bar-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-medium);
    width: 90px;
    flex-shrink: 0;
}

.verdict-bar-track {
    flex: 1;
    height: 6px;
    background: var(--gray-bg);
    border-radius: 3px;
    overflow: hidden;
}

.verdict-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--navy);
    width: 0;
    transition: width .5s ease-out;
}

.verdict-bar-fill--high {
    background: var(--green-mint);
}

.verdict-bar-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-dark);
    width: 32px;
    text-align: right;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--gray-border);
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    border-radius: 40px;
    padding: 10px 17px 9px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #462814;
    background: #ffc800;
    cursor: pointer;
    transition: all .2s;
}

.btn-cart:hover {
    opacity: .9;
}

.btn-cart svg {
    width: 16px;
    height: 16px;
    stroke: #462814;
}

.product-price {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-info);
}

.product-price sup {
    font-size: 15px;
    color: var(--blue-info);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 10px 17px 9px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    background: var(--blue-info);
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.btn-outline:hover {
    color: var(--white);
    opacity: .9;
    text-decoration: none;
    outline: none;
}

.btn-outline svg {
    width: 14px;
    height: 14px;
}

/* Recommendation box */
.recommendation-box {
    margin-top: 22px;
    padding: 20px;
    background: var(--blue-light);
    border: 2px solid var(--blue-info);
    border-radius: var(--radius);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.recommendation-box svg {
    width: 24px;
    height: 24px;
    color: var(--green-mint);
    flex-shrink: 0;
    margin-top: 2px;
}

.recommendation-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-body);
}

.recommendation-box strong {
    color: var(--gray-dark);
}

.selection-browse {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 24px;
    border: 1px dashed var(--gray-border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-medium);
    font-size: 14px;
    transition: all .2s;
}

.selection-browse:hover {
    border-color: var(--navy);
    color: var(--gray-dark);
}

.selection-browse-cta {
    font-weight: 700;
    color: var(--navy);
}

/* ============================================
   ACCESSORIES
   ============================================ */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.accessory-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 24px 16px 20px;
    text-align: center;
    text-decoration: none;
    transition: all .2s;
}

.accessory-card:hover {
    border-color: var(--blue-info);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.accessory-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 14px;
}

.accessory-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-dark);
    line-height: 1.3;
}

.accessories-cta {
    text-align: center;
    margin-top: 28px;
}


/* ============================================
   FOOTER LDLC OFFICIEL
   ============================================ */
.ldlc-footer {
    background: var(--navy-dark);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.6;
}

.ldlc-footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.ldlc-footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

.ldlc-footer .top {
    padding: 40px 0 0;
}

.ldlc-footer .f1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ldlc-footer .f1 > div > strong {
    display: block;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 10px;
    margin-bottom: 14px;
    position: relative;
}

.ldlc-footer .f1 > div > strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #8a9cc0;
}

.ldlc-footer .f1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ldlc-footer .f1 ul li {
    margin-bottom: 5px;
    font-size: 12.5px;
}

.ldlc-footer .fcontact {
    text-align: left;
}

.ldlc-footer .fcontact-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ldlc-footer .fcontact .pic {
    flex-shrink: 0;
}

.ldlc-footer .fcontact .pic img {
    width: 90px;
    height: auto;
}

.ldlc-footer .fcontact .txt {
    flex: 1;
}

.ldlc-footer .fcontact .txt > strong {
    display: block;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.ldlc-footer .fcontact .txt > strong::after {
    display: none;
}

.ldlc-footer .phone-block {
    margin-bottom: 6px;
}

.ldlc-footer .phone-block a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    background: var(--blue-info);
    border: none;
    border-radius: 4px;
    padding: 10px 18px;
    text-decoration: none;
    transition: background 0.2s;
}

.ldlc-footer .phone-block a:hover {
    background: #007aa8;
    text-decoration: none;
}

.ldlc-footer .phone-block a svg {
    color: #6AD4B0;
}

.ldlc-footer .phone-block .small {
    font-size: 11px;
    color: #6a7da0;
    margin-top: 4px;
}

.ldlc-footer .mentions {
    font-size: 10px;
    color: #5a6d90;
    margin-top: 10px;
    line-height: 1.4;
}

.ldlc-footer .f2 {
    display: flex;
    justify-content: space-around;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ldlc-footer .f2-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ldlc-footer .f2-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: #8E95A7;
}

.f2-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 900;
    width: auto;
    min-width: 56px;
}

.ldlc-footer .f2-item strong {
    display: block;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ldlc-footer .f2-item p {
    font-size: 12px;
    color: #6a7da0;
    margin: 2px 0 0;
}

.ldlc-footer .f3 {
    display: flex;
    justify-content: center;
    padding: 28px 0 32px;
}

.ldlc-footer .f3 img {
    opacity: 1;
}

@media (max-width: 768px) {
    .ldlc-footer .f1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ldlc-footer .fcontact-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ldlc-footer .fcontact .txt > strong::after,
    .ldlc-footer .f1 > div > strong::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ldlc-footer .f2 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 24px 0;
    }
}

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(24px);
    background: var(--navy-dark);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    z-index: 2000;
    white-space: nowrap;
}

.toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.anim-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .3s;
}

.anim-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.anim-stagger > .anim-reveal:nth-child(1) { transition-delay: 0ms; }
.anim-stagger > .anim-reveal:nth-child(2) { transition-delay: 80ms; }
.anim-stagger > .anim-reveal:nth-child(3) { transition-delay: 160ms; }
.anim-stagger > .anim-reveal:nth-child(4) { transition-delay: 240ms; }
.anim-stagger > .anim-reveal:nth-child(5) { transition-delay: 320ms; }
.anim-stagger > .anim-reveal:nth-child(6) { transition-delay: 400ms; }

/* Verdict bar stagger */
.verdict-bars .verdict-bar-row:nth-child(1) .verdict-bar-fill { transition-delay: 200ms; }
.verdict-bars .verdict-bar-row:nth-child(2) .verdict-bar-fill { transition-delay: 300ms; }
.verdict-bars .verdict-bar-row:nth-child(3) .verdict-bar-fill { transition-delay: 400ms; }

/* ============================================
   FULLSCREEN SELECTION — Compact product cards
   ============================================ */
.section--fullscreen .section-header {
    margin-bottom: 16px;
}

.section--fullscreen .section-intro {
    margin-bottom: 8px;
}

.section--fullscreen .products-grid {
    gap: 16px;
}

.section--fullscreen .product-image {
    min-height: 140px;
    padding: 16px;
}

.section--fullscreen .product-image img {
    max-height: 120px;
}

.section--fullscreen .product-body {
    padding: 16px;
}

.section--fullscreen .product-name {
    font-size: 16px;
}

.section--fullscreen .product-ref {
    margin-bottom: 10px;
}

.section--fullscreen .product-tags {
    margin-bottom: 10px;
}

.section--fullscreen .product-verdict {
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section--fullscreen .verdict-bars {
    margin-bottom: 12px;
    gap: 6px;
}

.section--fullscreen .btn-outline {
    background: var(--navy);
}

/* ============================================
   RESPONSIVE — Container widths (LDLC breakpoints)
   ============================================ */
@media (min-width: 768px) {
    .container { width: 750px; }
}

@media (min-width: 992px) {
    .container { width: 970px; }
}

@media (min-width: 1024px) {
    .container { width: 1170px; }
}

@media (min-width: 1200px) {
    .container { width: 1500px; }
}

/* ============================================
   RESPONSIVE — Tablette (960px)
   ============================================ */
@media (max-width: 960px) {
    .section--fullscreen {
        min-height: auto;
        display: block;
    }

    .section--fullscreen > .container {
        display: block;
    }

    .persona-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .traps-grid {
        grid-template-columns: 1fr;
    }

    .accessories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-actions a span {
        display: none;
    }

    .header-actions a {
        padding: 4px 8px;
    }

    .header-search-universes {
        display: none;
    }

    .mega-nav-item span {
        display: none;
    }

    .mega-nav-item {
        padding: 0 10px;
    }

    .mega-nav-chevron {
        display: none;
    }
}

/* ============================================
   RESPONSIVE — Mobile (640px)
   ============================================ */
@media (max-width: 640px) {
    body {
        background: var(--white);
        line-height: 18px;
    }

    .burger-menu {
        display: flex;
    }

    .header-search {
        flex: none;
        display: flex;
        height: 36px;
        border-radius: 4px;
        order: 10;
        width: 100%;
        margin-top: 8px;
    }

    .header-search-universes {
        display: none !important;
    }

    .header-search-field input {
        font-size: 12px;
        padding: 0 10px;
    }

    .header-search-field input::placeholder {
        content: attr(data-mobile-placeholder);
    }

    .header-search-btn {
        width: 36px;
    }

    .header-search-btn svg {
        width: 16px;
        height: 16px;
    }

    .mega-nav {
        display: none;
    }

    :root {
        --header-h: auto;
        --header-total: 0px;
    }

    .site-header {
        position: relative;
        height: auto;
    }

    .site-header-inner {
        flex-wrap: wrap;
        gap: 0;
        padding: 8px 10px;
    }

    .site-header .logo {
        margin-right: auto;
        max-width: 120px;
    }

    .site-header .logo img {
        height: 28px;
    }

    .header-actions {
        gap: 0;
    }

    .header-actions a {
        padding: 4px 8px;
    }

    .header-actions a svg {
        width: 20px;
        height: 20px;
    }

    .header-actions a span {
        display: none;
    }

    .sbloc {
        margin: 0 0 20px;
        max-width: none;
        padding: 15px 20px;
    }

    .title-1 {
        font-size: 22px;
        line-height: 22px;
    }

    .title-3 {
        font-size: 16px;
    }

    .section {
        max-width: none;
        margin-bottom: 0;
        padding: 40px 15px;
        box-shadow: none;
    }

    .anim-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .anim-stagger > .anim-reveal {
        transition-delay: 0ms !important;
    }

    .persona-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .accessories-grid {
        grid-template-columns: 1fr;
    }

    .sticky-nav-persona {
        display: none;
    }

    .sticky-nav-tabs {
        width: 100%;
        justify-content: center;
    }

    .sticky-nav-tab {
        padding: 14px 12px;
        font-size: 12px;
    }

    .product-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .recommendation-box {
        flex-direction: column;
    }

    .section--fullscreen {
        min-height: 0;
        align-items: flex-start;
    }

    .section-scroll-cue {
        margin-top: 24px;
    }

    .trap-card {
        padding: 22px;
    }

    .section-header .section-intro {
        font-size: 14px;
    }

    .section-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .product-actions {
        width: 100%;
    }

    .btn-cart,
    .btn-outline {
        font-size: 12px;
        padding: 8px 14px;
    }

    .btn-cart svg {
        width: 14px;
        height: 14px;
    }

    .btn-outline svg {
        width: 12px;
        height: 12px;
    }

    .ldlc-footer .f1 {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .ldlc-footer .f1 > div > strong::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ldlc-footer .fcontact {
        text-align: center;
    }

    .ldlc-footer .f2 {
        display: none;
    }

    .ldlc-footer .top {
        padding: 30px 0 0;
    }

    .ldlc-footer .f3 {
        padding: 20px 0 24px;
    }
}
