.pb-floating-actions .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pb-floating-actions {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 999998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.pb-floating-actions .pb-float {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 20px;
}

.pb-floating-actions .pb-float:hover,
.pb-floating-actions .pb-float:focus {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.pb-floating-actions .pb-float:focus-visible {
  outline: 2px solid #1863dc;
  outline-offset: 2px;
}

.pb-facebook { background: #1877f2; }
.pb-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.pb-youtube { background: #ff0000; }
.pb-linkedin { background: #0a66c2; }
.pb-call { background: #0056a7; }
.pb-whatsapp { background: #25d366; }

@media (max-width: 767px) {
  .pb-floating-actions {
    right: 12px;
    bottom: 72px;
    gap: 8px;
  }

  .pb-floating-actions .pb-float {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}
