/* Direct WhatsApp launcher */
.cm-chat{
  position:fixed;
  right:var(--cm-right);
  bottom:var(--cm-bottom);
  z-index:999999;
  font-family:Helvetica Neue,Arial,sans-serif;
}
.cm-chat__launcher{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:38px;
  padding:0 12px;
  background:#000;
  border:1px solid #111;
  border-radius:8px;
  box-shadow:0 3px 12px rgba(0,0,0,.12);
  color:#fff;
  cursor:pointer;
  font-size:12px;
  font-weight:700;
  letter-spacing:-.01em;
  line-height:1;
  text-decoration:none;
  transition:transform .2s ease,box-shadow .2s ease;
}
.cm-chat__launcher:hover,
.cm-chat__launcher:focus-visible{
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}
.cm-chat__launcher:focus-visible{
  outline:2px solid #fff;
  outline-offset:3px;
}
.cm-chat__launcher-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  flex:0 0 16px;
}
.cm-chat__launcher-label{white-space:nowrap}
@media (max-width:767px){
  .cm-chat{
    right:var(--cm-right-mobile);
    bottom:var(--cm-bottom-mobile);
  }
  .cm-chat__launcher{
    min-height:37px;
    padding:0 11px;
    font-size:11px;
  }
}
