/* iColorPacks unified floating actions */
.icp-floating-actions {
  position: fixed;
  left: 42px;
  bottom: 34px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}

.icp-floating-actions a,
.icp-floating-actions button {
  pointer-events: auto;
}

.icp-float-whatsapp,
.icp-float-plus {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s;
}

.icp-float-whatsapp:active, .icp-float-plus:active { transform: scale(0.9); }

.icp-float-whatsapp {
  background: #25d366;
}

.icp-float-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

.icp-float-plus {
  position: fixed;
  right: 44px;
  bottom: 34px;
  background: #d9b957;
  color: #050508;
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
}

/* Force hide all old floating elements */
.floating-email, .email-float, .email-floating, .icp-email, .icp-float-email,
.icp-mobile-sticky-cta, .icp-m-footer, .floating-whatsapp, .floating-quote-container,
.floating-quote, .wa-float, .rollback-floating-quote,
a[href^="mailto:"].floating-email, a[href^="mailto:"].email-float,
a[href^="mailto:"].email-floating, .icp-mobile-sticky-cta a[href^="mailto:"],
.icp-m-footer a[href^="mailto:"] {
  display: none !important;
}

@media (max-width: 768px) {
  .icp-floating-actions {
    left: 22px;
    bottom: 22px;
    gap: 12px;
  }

  .icp-float-whatsapp,
  .icp-float-plus {
    width: 58px;
    height: 58px;
  }

  .icp-float-whatsapp svg {
    width: 32px;
    height: 32px;
  }

  .icp-float-plus {
    right: 24px;
    bottom: 22px;
    font-size: 40px;
  }
}
