.layout-horizontal .header-top {
    background-color: #fff;
    padding: 0.7rem;
}
.layout-horizontal .header-top .logo img {
    height: 48px;
}

/* Pictos ronds de l'en-tete. Sous 1200px, un script les deplace dans le menu replie — sans
   jamais les dupliquer : le bandeau du haut ne peut porter le logo, cinq pictos et le burger. */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media screen and (max-width: 1199px) {
    /* Le gabarit pose overflow:hidden sur .main-navbar, ce qui rognerait les panneaux deroulants
       des pictos une fois deplaces dedans. */
    .layout-horizontal .main-navbar {
        overflow: visible;
    }
    /* :not(:empty) : pas de separateur orphelin si les pictos n'ont pas ete deplaces. */
    .layout-horizontal .main-navbar .header-icons-slot:not(:empty) {
        margin-bottom: 0.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .layout-horizontal .main-navbar .header-icons {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    /* 48px x 5 pictos ne tiennent pas sur une ligne de telephone. */
    .layout-horizontal .main-navbar .header-icons .avatar-lg .avatar-content {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    /* Ces panneaux sont des <ul> : dans le menu, ils heritent du display:flex des listes de la
       barre, plus specifique que le display:none de Bootstrap, et restaient donc ouverts. */
    .layout-horizontal .main-navbar .header-icons .dropdown-menu {
        display: none;
    }
    /* Largeur bornee a l'ecran : a leur largeur naturelle, ces panneaux en debordaient. */
    .layout-horizontal .main-navbar .header-icons .dropdown-menu.show {
        display: block;
        width: max-content;
        max-width: calc(100vw - 2rem);
        max-height: 60vh;
        overflow-y: auto;
    }
    /* Les pictos restent ronds : sans cela le conteneur du panneau s'etire et deforme
       l'avatar qui lui sert de bouton. */
    .layout-horizontal .main-navbar .header-icons .dropdown {
        flex: 0 0 auto;
    }
    /* Bootstrap met les lignes en nowrap : « Vente sur X du 01/01/2026 (M123) » depassait
       la largeur du panneau et se retrouvait coupee. Sur telephone, on passe a la ligne. */
    .layout-horizontal .main-navbar .header-icons .dropdown-menu .dropdown-item {
        white-space: normal;
    }
    /* Sous-menu des langues remis dans le flux : pose en absolu, il etait rogne par le panneau
       qui defile, qui n'en montrait qu'une langue et demie. */
    .layout-horizontal .main-navbar .header-icons .lang-switcher__menu {
        position: static;
        margin: 0;
        border: 0;
        box-shadow: none;
    }
}

/* Tableaux DataTables sur telephone. Ces regles annulent des alignements du style fourni par
   DataTables (charge avant cette feuille, a specificite egale). */
@media screen and (max-width: 767px) {
    /* « Afficher N entrees » et « Rechercher » arrivent centre et aligne a droite : cale a
       gauche, comme le reste de la page. */
    div.dataTables_wrapper div.dataTables_length,
    div.dataTables_wrapper div.dataTables_length label,
    div.dataTables_wrapper div.dataTables_filter,
    div.dataTables_wrapper div.dataTables_filter label {
        text-align: left;
    }
    /* Avec scrollX, la cellule du message « aucune donnee disponible » est aussi large que le
       tableau : centre, le message tombait pour moitie hors de l'ecran. */
    table.dataTable td.dataTables_empty {
        text-align: left;
    }
}

/* Confort tactile, sous 992px seulement : le doigt n'a pas la precision du curseur, et Safari
   iOS a une reaction propre aux petits champs. Rien de tout cela ne concerne le bureau. */

/* Sous 16px, Safari iOS agrandit la page au focus d'un champ et ne la ramene pas ensuite. Les
   utilitaires « sm » de Bootstrap sont a 14px : seule leur police change ici. */
@media screen and (max-width: 991px) {
    .form-control-sm,
    .form-select-sm,
    .select2-container .select2-search__field {
        font-size: 16px;
    }
}

/* Cibles de moins de 44px de cote : la zone sensible est elargie par un pseudo-element, donc
   sans deplacer le picto ni la mise en page. A reserver aux pictos isoles — entre deux voisins,
   des zones qui se chevauchent rendent le clic imprevisible. */
@media screen and (max-width: 991px) {
    .burger-btn,
    .geo-top-banner__close,
    .btn-sort-col,
    .box_site .btn,
    .lang-switcher > summary {
        position: relative;
    }
    .burger-btn::after,
    .geo-top-banner__close::after,
    .btn-sort-col::after,
    .box_site .btn::after,
    .lang-switcher > summary::after {
        content: "";
        position: absolute;
        /* Mesures d'origine : de 20x27 pour le burger a 34x31 pour les boutons des cartes de site. */
        top: -10px;
        right: -10px;
        bottom: -10px;
        left: -10px;
    }
    /* Pagination : ses boutons se touchent, un tampon mordrait sur le voisin. Taille reelle, donc. */
    .page-item .page-link {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Fenetre « Informations & metriques » d'un site. */

/* Bloc TrustFlow / CitationFlow. L'ordre du DOM va colonne par colonne pour que le telephone
   empile les deux blocs entiers ; le placement explicite ci-dessous realigne chaque element
   avec son homologue sur grand ecran, leurs hauteurs differant. */
/* Seuil a 992px et non 768 : sur une tablette, la disposition de bureau de cette fenetre
   reclamait 887px pour 747 disponibles. */
@media screen and (min-width: 992px) {
    .psd-metrics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* Derniere ligne en 1fr : le fond gris descend jusqu'en bas dans la colonne qui a le
           moins de lignes, comme le faisaient les cellules du tableau d'origine. */
        grid-template-rows: auto auto 1fr;
    }
    .psd-metrics-grid > :nth-child(1) { grid-area: 1 / 1; }
    .psd-metrics-grid > :nth-child(2) { grid-area: 2 / 1; }
    .psd-metrics-grid > :nth-child(3) { grid-area: 3 / 1; }
    .psd-metrics-grid > :nth-child(4) { grid-area: 1 / 2; }
    .psd-metrics-grid > :nth-child(5) { grid-area: 2 / 2; }
    .psd-metrics-grid > :nth-child(6) { grid-area: 3 / 2; }
}

@media screen and (max-width: 991px) {
    /* Le cercle du logo occupe une colonne fixe de 150px, soit plus du tiers d'un ecran de
       telephone, pour un element decoratif : le nom du site et son lien sont juste a cote. */
    .psd-logo-col {
        display: none;
    }
    /* Sans min-width: 0, un element flex garde la largeur minimale de son contenu : les tableaux
       de metriques elargissaient la fenetre bien au-dela de l'ecran. Chaque maillon compte. */
    .psd-form,
    .psd-content,
    .psd-main {
        min-width: 0;
    }
    /* Le formulaire est l'enfant direct de .modal-dialog, lui-meme en flex : sans largeur
       imposee il se cale sur son contenu au lieu de la largeur de la fenetre. */
    .psd-form {
        width: 100%;
    }
}

/* Titre de cette fenetre : pose en absolu a left: 50%, il ne disposait que de la moitie droite
   de sa bande et passait sur deux lignes. !important : les utilitaires de position de Bootstrap
   le sont aussi. */
@media screen and (max-width: 767px) {
    #popup_site_details .modal-header h4 {
        left: 0 !important;
        right: 0;
        transform: translateY(-50%) !important;
        padding: 0 52px 0 14px;
        text-align: center;
    }
}

/* Fiche de vente : tableau libelle / valeur dont les deux colonnes sont bloquees par leur
   contenu — libelles insecables d'un cote, URL et code sans point de coupure de l'autre — et
   qui faisait defiler la page entiere. !important : text-nowrap est un utilitaire Bootstrap. */
@media screen and (max-width: 767px) {
    .sell-summary th {
        white-space: normal !important;
    }
    .sell-summary td {
        overflow-wrap: anywhere;
    }
}

/* Cellule du code a copier. max-width: 0 empeche une cellule d'imposer la largeur de son
   contenu dans un tableau a largeur automatique : sans elle, l'URL etirait le tableau de 300px,
   bureau compris. La regle etait en style en ligne, donc hors de portee d'une feuille. */
.sell-summary td.sell-html-code {
    max-width: 0;
}
/* Le code se replie et se lit en entier sur grand ecran ; le defilement est reserve au
   telephone, ou le repli donnait six lignes en escalier. */
.sell-summary td.sell-html-code pre {
    white-space: pre-wrap;
}
@media screen and (max-width: 767px) {
    .sell-summary td.sell-html-code pre {
        white-space: pre;
        overflow-x: auto;
    }
}

/* Badges et filtres rapides du catalogue : des cadres en ligne, qui se cassent en escalier sur
   telephone puisque chacun prend la largeur de son contenu. */
@media screen and (max-width: 767px) {
    .filter-box {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    /* !important : les marges utilitaires de Bootstrap (mx-2) le sont aussi. */
    .filter-box label {
        display: block;
        margin: 0.25rem 0 !important;
    }
}

/* Messagerie : liste des conversations a gauche, fil a droite. Ces dimensions etaient en style
   en ligne, donc impossibles a adapter au telephone. */
.messagerie-row {
    height: 500px;
}
.messagerie-list {
    width: 310px;
    max-height: 500px;
    overflow-y: auto;
}
.messagerie-thread {
    height: 100%;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    /* Empiles : sinon la liste gardait ses 310px et il ne restait qu'une bande de 80px pour
       le fil, dont le contenu debordait par-dessus le pied de page. */
    .messagerie-row {
        height: auto;
    }
    .messagerie-list {
        width: 100%;
        max-height: 45vh;
        /* Empiles, la separation va dessous et non a droite. !important : les utilitaires de
           bordure de Bootstrap (.border-end) le sont aussi. */
        border-right: 0 !important;
        border-bottom: 1px solid #dee2e6 !important;
    }
    .messagerie-thread {
        height: auto;
        overflow: visible;
    }
}

/* Carrousels du tableau de bord : leurs fleches sont decalees de -15px et -88px, plus que la
   marge disponible autour du carrousel jusqu'a 1024px — elles sortaient de l'ecran et faisaient
   defiler la page. Ramenees sous le carrousel jusqu'a 1023px.
   !important : les valeurs d'origine sont en style en ligne. */
@media screen and (max-width: 1023px) {
    #carouselSpecialSites,
    #carouselLastSites {
        padding-bottom: 3rem;
    }
    #carouselSpecialSites .carousel-control-prev,
    #carouselSpecialSites .carousel-control-next,
    #carouselLastSites .carousel-control-prev,
    #carouselLastSites .carousel-control-next {
        top: auto !important;
        bottom: 0.5rem !important;
        width: 44px !important;
        height: 35px !important;
        opacity: 1;
    }
    #carouselSpecialSites .carousel-control-prev,
    #carouselLastSites .carousel-control-prev {
        left: calc(50% - 50px) !important;
        right: auto !important;
    }
    #carouselSpecialSites .carousel-control-next,
    #carouselLastSites .carousel-control-next {
        left: auto !important;
        right: calc(50% - 50px) !important;
    }
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {color: #435ebe !important;}
.hover:hover {color:#41bbde;}

.text-mgl-dark{color: #435ebe !important;}
.text-mgl-light{color: #41bbde !important;}
.bg-mgl-dark{background-color: #435ebe !important;}
.bg-mgl-light{background-color: #41bbde !important;}
.border-mgl-dark {border-color: #435ebe !important;}
.border-mgl-light {border-color: #41bbde !important;}


.bg-semrush{background-color: #ff622d;}
.bg-seobserver{background-color: #e6800b;}
.bg-ahrefs{background-color: #2e3c56;}
.bg-majestic{background-color: #2d526d;}
.bg-sistrix{background-color: #1269d3;}
.bg-moz{background-color: #89d6f3;}
.bg-haloscan{background-color: #1e1e2d;}

.pull-right {
    float: right;
}
.page-item:first-child, .page-item:last-child {margin:0}


.table thead th {
    position: sticky;
}
.table thead th .btn-dark{
    color: white;
    background-color: #00000033;
    border: #00000033!important;
    border-radius: 0 0 0 5px;
}

.table .categories_container {
    max-height: 100px;
    overflow: overlay;
    font-size: 0.9em;
}

.links-list {
    background: #fff;
    box-shadow: 0 0 20px #666;
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    left: -122px;
    top: -60px;
    z-index: 110;
}
.links-list:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-left-color: #fff;
    border-width: 10px;
    margin-top: -10px;
}
.links-list a { display:block; }

.hidden {
    display: none !important;
}

.btn-sort-col {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 4px;
}

.select2-container--default .select2-selection--multiple {
    border-color: #dce7f1 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #41bbde33;
    border: 1px solid #41bbde;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
    color: #41bbde;
    font-weight: normal;
    font-size: 12px;
}
.select2-container--default .select2-search--inline .select2-search__field {
    font-size: 14px;
    margin:0;
}

.select2-container--default .select2-selection--single {
    border-radius: 0.2rem;
    font-size: .875rem;
    min-height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    background-color: #fff;
    border: 1px solid #dce7f1;
    color: #607080;
    font-weight: 400;
    line-height: 1.5;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #adb5bd;
    top: -2px !important;
    position: relative;
    left: -7px;
}



a.badge.bg-secondary:hover{color:#fff;}

.modal .modal-header .close{
    padding: 4px 10px;
}
.modal .modal-header .close:hover {
    background: #ffffff66;
}

.shake {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.table-md.dataTable-table tr td, .table-md.dataTable-table tr th, .table-sm.dataTable-table tr td, .table-sm.dataTable-table tr th, .table.table-md tr td, .table.table-md tr th, .table.table-sm tr td, .table.table-sm tr th {
    padding: 0.5rem 0.25rem;
}

.table {
    --bs-table-striped-bg: rgba(0,0,0,0.03);
}

.table.cart .url {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 240px;
}

.alert .alert-heading {
    color: white !important;
}
.modal .white {color: white !important}

/** tooltipster **/
.tooltipster-mgl .tooltipster-box{
    border: 2px solid #41bbde;
    background: #70cfea;
    color: #fff;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #41bbde;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #41bbde;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #41bbde;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #41bbde;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #41bbde;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #41bbde;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #41bbde;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #41bbde;
}

/** Thin Scrollbar **/
.thin_scroll_bar::-webkit-scrollbar {width: 2px;}
.thin_scroll_bar::-webkit-scrollbar-track {background: #f1f1f1cc;}
.thin_scroll_bar::-webkit-scrollbar-thumb {background: #888888cc;}
.thin_scroll_bar::-webkit-scrollbar-thumb:hover {background: #41bbdecc;}

.toggle_favorite_site {
    cursor: pointer;
}

/** Majestic **/
.ttf_label
{
    font-family:Verdana,Arial,Helvetica,sans-serif;
    font-weight:700;
    border-radius:4px;
    padding:0 5px;
    display:inline-block
}

.ttf_label.arts
{
    background:#ff6700!important;
    color:#fff
}
.ttf_label.news
{
    background:#76D54B!important;
    color:#333 !important;
}
.ttf_label.society
{
    background:#7A69CD!important;
    color:#fff !important;
}
.ttf_label.computers
{
    background:#f33!important;
    color:#fff !important;
}
.ttf_label.business
{
    background:#C5C88E!important;
    color:#333 !important;
}
.ttf_label.regional
{
    background:#F582B9!important;
    color:#fff !important;
}
.ttf_label.recreation
{
    background:#89C7CB!important;
    color:#333 !important;
}
.ttf_label.sports
{
    background:#55355D!important;
    color:#fff !important;
}
.ttf_label.kids
{
    background:#fc0!important;
    color:#333 !important;
}
.ttf_label.reference
{
    background:#C84770!important;
    color:#fff !important;
}
.ttf_label.games
{
    background:#557832!important;
    color:#fff !important;
}
.ttf_label.home
{
    background:#d95!important;
    color:#fff !important;
}
.ttf_label.shopping
{
    background:#600!important;
    color:#fff !important;
}
.ttf_label.health
{
    background:#009!important;
    color:#fff !important;
}
.ttf_label.science
{
    background:#6BD39A!important;
    color:#333 !important;
}
.ttf_label.world
{
    background:#577!important;
    color:#fff !important;
}
.ttf_label.adult
{
    background:#333!important;
    color:#fff !important;
}

.ttf_label.recreation
{
    background:#89C7CB!important;
    color:#fff !important;
}


table td.site_name {
    min-width: 240px;
}
table a.site_name_value {
    text-overflow: ellipsis;
    max-width: 206px;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}

.loading_overlay {
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000aa;
    z-index: 1000000;
    font-size: 50px;
    color: #41bbde;
    text-align: center;
}
.loading_overlay .loading_overlay_content {
    position: absolute;
    width: 100%;
    top:50%;
}

.layout-horizontal .main-navbar .submenu {
    width:300px;
}
.layout-horizontal .main-navbar .submenu .submenu-group {
    width:300px;
}

.conversation-item:hover {
    background: #41bbde33 !important;
    transition: background 0.15s, opacity 0.15s;
    cursor: pointer;
}

.conv-active {
    background: #41bbde33 !important;
    transition: background 0.15s, opacity 0.15s;
}

#conversation-list .conversation-row {
    max-width: 100%;
}

#conversation-list .conversation-item {
    min-width: 0;
    max-width: 100%;
}

#conversation-list .conversation-site-name {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.dot-unread {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #dd3254;
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 4px;
}

.form-control:focus,
.btn-link:focus {
    box-shadow: none !important;
}

#conversation-list .no-result-placeholder {
    background: #fff;
}

/* Cette boite blanche est posee en fixe, sa hauteur se voit donc : sans height: auto elle suit
   le height: 100% de Bootstrap et son blanc descend jusqu'en bas de l'ecran. Les plafonds en
   style en ligne qui compensaient rognaient le pied et son bouton d'envoi sur telephone. */
#popup_messages {
    display: none;
    position: fixed;
    z-index: 10050;
    top: 10vh;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 !important;
    background-clip: border-box !important;
    width: 500px;
    background: rgba(255,255,255,1);
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
}
@media (max-width:600px) {
    #popup_messages { width:96vw; left:2vw; transform:none; }
}

#popup_messages .modal-content,
#popup_messages .modal-header {
    border-radius: 0 !important;
    background-clip: border-box !important;
}

.dropdown-menu {
    z-index: 2000;
}

.box_site{
    border-radius : 3px;
    border-top:16px solid #40bcde;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
.box_site .ttf_label {
    max-width: 100%;
}
.box_site .box_site_badge{
    font-size: 12px;
    background-color: #445ec7;
    padding: 1px;
    width: 100%;
    line-height: 16px;
    border-radius:3px;
    color: #fff;
    text-align: center;
    margin: 4px 0;
}
.box_site_badge_value {
    background-color: #fff;
    color : #445ec7;
    text-align: center;
    float: right;
    width:60%;
    border-radius: 2px;
}
.fs-7 {
    font-size: 14px;
}
.fs-8 {
    font-size: 12px;
}
.fs-9 {
    font-size: 11px;
}

/* ============================================================
   Bannière partenaire Horusium (dashboard client)
   ============================================================ */
a.horusium-banner,
.horusium-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 28px;
    margin: 0 0 24px 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #031532 0%, #0d3b6e 100%);
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(3, 21, 50, 0.18);
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
    position: relative;
}
.horusium-banner::after {
    content: "";
    position: absolute;
    top: -40%; right: -10%;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(0,179,215,0.35) 0%, rgba(0,179,215,0) 70%);
    pointer-events: none;
}
.horusium-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(3, 21, 50, 0.28);
}
.horusium-banner__left {
    display: flex; flex-direction: column; gap: 6px; flex-shrink: 0;
    position: relative; z-index: 1;
}
.horusium-banner__logo { height: 32px; width: auto; }
.horusium-banner__tag {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    color: #00b3d7;
}
.horusium-banner__center { flex: 1; min-width: 0; position: relative; z-index: 1; }
.horusium-banner .horusium-banner__center h3 {
    margin: 0 0 4px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
}
.horusium-banner .horusium-banner__center p {
    margin: 0; font-size: 14px; color: rgba(255,255,255,0.85);
}
.horusium-banner__line { line-height: 1.5; }
.horusium-banner__line + .horusium-banner__line { margin-top: 2px; }
.horusium-banner__center strong { color: #00b3d7; font-weight: 700; }
.horusium-banner__line--promo {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap;
}
.horusium-banner__line--promo .promo-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #00b3d7;
    color: #031532;
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}
.horusium-banner__center .promo-code {
    display: inline-block;
    background: rgba(0, 179, 215, 0.18);
    border: 1px dashed #00b3d7;
    color: #ffffff;
    padding: 1px 8px;
    border-radius: 4px;
    font-family: "SFMono-Regular", Consolas, Menlo, monospace;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.horusium-banner__right { position: relative; z-index: 1; }
.horusium-banner__cta {
    display: inline-block;
    padding: 10px 18px;
    background: #00b3d7;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: background .15s ease;
}
.horusium-banner:hover .horusium-banner__cta { background: #009bb8; }

@media (max-width: 768px) {
    .horusium-banner { flex-direction: column; align-items: flex-start; text-align: left; gap: 14px; }
    .horusium-banner__right { width: 100%; }
    .horusium-banner__cta { display: block; text-align: center; }
}
/* ============================================================
   Fin bannière Horusium
   ============================================================ */