/* Sticky Call Now button (mobile-first) */
.sbp-sticky-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  background: #dc2626; /* red-600 */
  color: #fff;
}

.sbp-sticky-call:hover { background: #b91c1c; }

.sbp-sticky-call small {
  font-weight: 600;
  opacity: .9;
  margin-left: 10px;
}

/* Keep it compact on desktop: bottom-right "pill" */
@media (min-width: 768px) {
  .sbp-sticky-call {
    left: auto;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 12px 14px;
  }
}

/* Add breathing room so bottom button doesn’t cover content */
body { padding-bottom: 78px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }
