#sticky-call.sticky-call-bar{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:9998;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px;
  background:rgba(10,61,98,.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  padding-bottom:calc(10px + env(safe-area-inset-bottom));
  max-width:720px;
  margin:0 auto;
}

.sticky-call-btn{
  flex:1 1 0;
  min-width:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:48px;
  padding:0 14px;
  border-radius:14px;
  color:#fff !important;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  line-height:1;
  white-space:nowrap;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}

.sticky-call-btn:hover,
.sticky-call-btn:focus{
  color:#fff !important;
  text-decoration:none;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.sticky-call-btn:active{
  transform:translateY(0);
  box-shadow:0 4px 12px rgba(0,0,0,.14);
}

.sticky-call-phone{
  background:linear-gradient(135deg,#ef4444,#dc2626);
}

.sticky-call-wa{
  background:linear-gradient(135deg,#22c55e,#16a34a);
}

.sticky-call-transfer{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.sticky-call-text{
  overflow:hidden;
  text-overflow:ellipsis;
}

.sticky-call-svg{
  width:18px;
  height:18px;
  flex:0 0 18px;
  display:block;
  color:#fff;
}

.sticky-call-svg-wa{
  width:20px;
  height:20px;
  flex:0 0 20px;
}

@media (max-width:480px){
  #sticky-call.sticky-call-bar{
    left:8px;
    right:8px;
    bottom:8px;
    gap:8px;
    padding:8px;
    padding-bottom:calc(8px + env(safe-area-inset-bottom));
    border-radius:16px;
  }

  .sticky-call-btn{
    height:46px;
    padding:0 10px;
    font-size:13px;
    border-radius:12px;
    gap:6px;
  }

  .sticky-call-svg{
    width:16px;
    height:16px;
    flex:0 0 16px;
  }

  .sticky-call-svg-wa{
    width:18px;
    height:18px;
    flex:0 0 18px;
  }
}
