/* Barre mobile personnalisée */
#mobile-topbar { display:none; }

@media (max-width:768px) {
  #mobile-topbar{
    background:#222222;
    color:#fff;
    width:100%;
    box-sizing:border-box;
    padding:8px 12px;
    font-size:14px;
    line-height:1.4;
  }

  .mobile-topbar-line1{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:nowrap;
    white-space:nowrap;
    text-align:center;
  }

  .mobile-topbar-line2{
    margin-top:8px;
    display:flex;
    justify-content:center;
  }

  #mobile-topbar a,
  #mobile-topbar span{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    display:inline-flex;
    align-items:center;
    gap:6px;
  }

  #mobile-topbar i{ line-height:1; }
}

@media (min-width:769px){
  #mobile-topbar{ display:none !important; }
}
/* Fin barre mobile */