

/* ---------- Bandeau “sticky call” mobile ---------- */
.asm-call-bar{
  position:sticky;
  bottom:0;
  background:var(--asm-orange);
  color:#111;
  padding:10px 14px;
  display:none;
  justify-content:space-between;
  align-items:center;
  z-index:30;
}

.asm-call-bar a{
  font-weight:800;
  color:#111;
}

@media (max-width:768px){
  .asm-call-bar{
    display:flex;
  }
}

