/* Container */
.scb-wrap {
  position: fixed;
  z-index: 99998;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: var(--scb-bg, #941d83);
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: var(--scb-shadow, none);
}

/* Alignment options */
.scb-side-left  { left: 18px; transform: none; }
.scb-side-right { right: 18px; left: auto; transform: none; }
.scb-side-center{ left: 50%; transform: translateX(-50%); }

/* Buttons */
.scb-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: transparent;
  color: var(--scb-icon, #fff);
  text-decoration: none;
  transition: transform .16s ease, background-color .16s ease, opacity .16s ease;
  outline: none;
}
.scb-btn:focus-visible { box-shadow: 0 0 0 3px rgba(255,255,255,.45); }
.scb-btn:hover        { transform: translateY(-2px) scale(1.06); }

/* Reduce overlap with other floating widgets (e.g., scroll-to-top) */
@media (min-width: 768px) {
  .scb-wrap { bottom: 24px; }
}
@media (max-width: 767.98px) {
  .scb-wrap { bottom: 14px; padding: 8px 9px; }
  .scb-btn  { width: 42px; height: 42px; }
}

/* Respect Themify/Elementor z-index stacks */
body.admin-bar .scb-wrap { bottom: calc(18px + 32px); }
