/* ==========================================================================
   BASE & VARIABLES
   ========================================================================== */
:root {
    --color-bg: #050505;
    --color-bg-alt: #111111;
    --color-text: #fdfdfd;
    --color-text-muted: #888888;
    --color-accent: #d4af37;
    --font-title: 'Quicksand', sans-serif;
    --font-sans: 'Inter', sans-serif;
    --spacing-section: 12vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* Application de Quicksand avec le poids 300 (très fin) */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 300;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw + 1rem, 7rem);
    line-height: 1.05;
    font-weight: 500;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Espacement vertical du titre principal Hero */
.title-line-1 {
    display: block;
    margin-bottom: 0.2em;
}

.title-line-2 {
    display: block;
}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Logo Textuel --- */
.logo-container {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-texte {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.logo-container:hover .logo-texte {
    opacity: 0.9;
}

.extension {
    color: #4A7AFF;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 11px;
    color: #ffffff;
    margin-top: 4px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.link-destockage {
    font-family: var(--font-sans);
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.link-destockage:hover {
    color: var(--color-text);
}

/* --- Menu Déroulant (Dropdown) --- */
.dropdown-menu-container {
    position: relative;
    display: inline-block;
}

.nav-link {
    font-family: var(--font-sans);
    color: var(--color-text);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--color-accent);
}

.caret {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-menu-container:hover .caret {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(5, 5, 5, 0.95);
    min-width: 200px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    backdrop-filter: blur(12px);
    z-index: 10000;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-menu-container:hover .dropdown-content {
    display: block;
    opacity: 1;
}

.dropdown-content a {
    color: var(--color-text-muted);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-accent);
}

.dropdown-menu-container::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

.pulse-dot {
    color: #c62828;
    font-size: 1.2rem;
    line-height: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.search-container {
    display: flex;
    align-items: center;
    background: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0.5rem 1.2rem;
}

.search-container:focus-within {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.search-container input {
    background: transparent;
    border: none;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    outline: none;
    width: 150px;
    transition: width 0.4s;
}

.search-container input::placeholder {
    color: var(--color-text-muted);
}

.search-container input:focus {
    width: 220px;
}

.search-icon {
    width: 18px;
    stroke: var(--color-text-muted);
    fill: none;
    stroke-width: 2;
    margin-left: 10px;
    cursor: pointer;
    transition: stroke 0.3s ease;
}

.search-container:focus-within .search-icon {
    stroke: var(--color-accent);
}

.cta-rendezvous {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 0 1.5rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    cursor: pointer;
    height: 48px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.cta-rendezvous:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.stealth-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.social-dock {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9500;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 10px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.social-link {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--color-accent);
    transform: scale(1.15);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

section {
    width: 100%;
    padding: 0 5vw;
}

/* ==========================================================================
   SECTION HERO & SLIDER
   ========================================================================== */
.hero-cinema {
    position: relative;
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0a0a;
    z-index: -2;
    overflow: hidden;
}

.media-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.media-slide.active {
    opacity: 1;
    z-index: 1;
}

.media-slide img, .media-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Voile sombre supprimé pour permettre l'effet négatif sur l'image claire */
    background: transparent;
    z-index: -1;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 5vw;
    pointer-events: none;
    /* ATTENTION : PAS DE Z-INDEX ICI ! C'est ce qui bloquait le mix-blend-mode */
}

.hero-content h1 {
    color: var(--color-text);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-content h1 .extension {
    color: var(--color-text);
}

.hero-subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: clamp(0.75rem, 1vw, 1rem);
    margin-top: 1.5rem;
    display: block;
    /* Ombre légère pour le sous-titre doré */
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.9);
}

/* --- MOTEUR DU SLIDER HERO COMPARATEUR (V2) --- */
.hero-compare-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    --position: 50%;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: pan-y;
    /* ATTENTION : PAS DE Z-INDEX ICI NON PLUS ! */
}

.compare-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.compare-overlay {
    clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
}

.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 4px;
    background-color: var(--color-accent);
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
}

.handle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: rgba(5, 5, 5, 0.8);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.handle-icon svg {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   CONTENUS & UNIVERS
   ========================================================================== */
.universes-section {
    margin-top: -5vh;
    text-align: center;
}

.universes-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.universes-section > p {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-inline: auto;
}

.universes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
}

.universe-card {
    background: var(--color-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.universe-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.universe-card .tag {
    font-family: var(--font-sans);
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.universe-card ul {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.universe-card ul li {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.universe-card ul li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
}

.universe-cta {
    font-family: var(--font-sans);
    color: var(--color-text);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-bottom: 1px solid var(--color-accent);
    align-self: flex-start;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.universe-cta:hover {
    color: var(--color-accent);
}

/* --- CARROUSEL DES MARQUES --- */
.brands-section {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 5vw;
    background: var(--color-bg-alt);
}

.brands-section p {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.carousel-container { 
    width: 100%; 
    overflow: hidden; 
    position: relative; 
    padding: 2rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.carousel-track { 
    display: flex; 
    width: max-content;
    animation: scroll-left 35s linear infinite; 
}

.carousel-track:hover {
    animation-play-state: paused;
}

.brand-item { 
    font-family: 'Space Grotesk', sans-serif; 
    font-weight: 600; 
    font-size: 2.5rem; /* Taille réduite d'environ 20% */
    letter-spacing: 0.15em; 
    padding: 0 4rem;
    color: var(--color-text-muted); /* Gris standard du design system */
    transition: all 0.4s ease;
    cursor: default;
    opacity: 0.6; /* Opacité rehaussée pour gagner 20% de clarté au repos */
}

.brand-item:hover { 
    color: var(--color-accent); 
    opacity: 1;
    transform: scale(1.05); 
}

@keyframes scroll-left { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.module-360 {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

/* ==========================================================================
   TEMOIGNAGES / REVIEWS (CARROUSEL HORIZONTAL)
   ========================================================================== */
.reviews-section {
    background-color: var(--color-bg-alt);
    padding: 6rem 5vw;
    position: relative;
}

.reviews-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.reviews-header-flex h2 {
    margin-bottom: 0.5rem;
}

/* Piste de défilement */
.reviews-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Cache la barre Firefox */
    -ms-overflow-style: none; /* Cache la barre IE */
    padding-bottom: 1rem;
}

.reviews-track::-webkit-scrollbar {
    display: none; /* Cache la barre Chrome/Safari */
}

/* Carte individuelle */
.review-card {
    background: var(--color-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 380px; /* Largeur fixe de la carte */
    scroll-snap-align: start; /* Aimantation */
}

/* En-tête de carte (Étoiles + Date) */
.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-card p {
    flex-grow: 1; /* Pousse l'auteur vers le bas */
}

.stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.review-author {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9rem;
}

/* Boutons de navigation du Slider */
.slider-controls {
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(5, 5, 5, 0.8);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover:not(:disabled) {
    background: var(--color-accent);
    color: #000;
}

.slider-btn:disabled {
    opacity: 0.3;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   FOOTER & COMPOSANTS LÉGAUX / RGPD
   ========================================================================== */
footer {
    background: #000;
    padding: 6rem 5vw 3rem 5vw;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a, .footer-col span {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.footer-bottom-links a {
    color: var(--color-text-muted);
    margin-left: 1.5rem;
    text-decoration: none;
    cursor: pointer;
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

.footer-credits {
    width: 100%;
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.footer-credits a {
    color: var(--color-text-muted);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: var(--color-accent);
}

/* --- Bannière RGPD --- */
.rgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    gap: 2rem;
    font-size: 0.85rem;
    color: #ccc;
    transition: transform 0.5s, opacity 0.4s;
}

.rgpd-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    display: none !important;
}

.rgpd-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.rgpd-actions {
    display: flex;
    gap: 1rem;
}

.btn-rgpd {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-text-muted);
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.8rem;
}

.btn-rgpd.accept {
    background: var(--color-text);
    color: var(--color-bg);
    border-color: var(--color-text);
}

/* --- Modales Mentions Légales & CGV --- */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: #0f0f0f;
    border: 1px solid var(--color-accent);
    padding: 45px 40px;
    max-width: 750px;
    width: 100%;
    max-height: 75vh;
    overflow-y: auto;
    position: relative;
}

.modal-content h3 {
    font-family: var(--font-title);
    color: var(--color-accent);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.modal-content p, .modal-content li {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

/* --- Menu Burger & Overlay Mobile --- */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    flex-direction: column;
    padding: 1rem 5vw;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.9);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILES & TABLETTES)
   ========================================================================== */
@media (max-width: 860px) {
    /* On cache les menus Desktop pour faire de la place */
    .dropdown-menu-container, .link-destockage, .cta-rendezvous {
        display: none;
    }

    /* On affiche l'icône Hamburger */
    .stealth-menu-btn {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    /* Correction de la barre de recherche pour qu'elle soit utilisable */
    .search-container {
        padding: 0.5rem 0.8rem;
        border-color: rgba(255, 255, 255, 0.1);
    }
    .search-container input {
        width: 100px; /* Le champ reste cliquable */
        padding: 0;
    }
    .search-container:focus-within input {
        width: 140px; /* S'élargit quand on tape dedans */
        padding-left: 0.5rem;
    }

    /* Layout général */
    .grid-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .module-360 { order: -1; }
    .rgpd-banner, .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    /* Ajustements du slider d'avis */
    .reviews-header-flex { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .review-card { flex: 0 0 85vw; } /* Occupe 85% de l'écran sur mobile */
    .slider-controls { display: none; } /* Masquage des boutons sur mobile */

    /* Repositionnement horizontal du dock social sur smartphone */
    .social-dock {
      top: auto;
      bottom: 80px;
      right: 10px;
      flex-direction: column; /* Le retour à la verticale ! */
      padding: 15px 10px; /* On rétablit les proportions verticales */
      transform: none;
    }
}
