.ctcbct-floating-buttons {
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: fixed;
}

.ctcbct-position-bottom-right {
  right: 22px;
}

.ctcbct-position-bottom-left {
  left: 22px;
}

.ctcbct-floating-buttons .ctcbct-button {
  align-items: center;
  background: #0f766e;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
  color: #fff !important;
  display: inline-flex;
  font: 700 14px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  gap: 9px;
  min-height: 48px;
  padding: 7px 16px 7px 9px;
  position: relative;
  text-decoration: none !important;
}

.ctcbct-floating-buttons .ctcbct-button:hover,
.ctcbct-floating-buttons .ctcbct-button:focus,
.ctcbct-floating-buttons .ctcbct-button:visited {
  color: #fff !important;
  transform: translateY(-1px);
}

.ctcbct-floating-buttons .ctcbct-button-call {
  background: #1d4ed8;
}

.ctcbct-button-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
  display: inline-flex;
  flex: 0 0 auto;
  height: 31px;
  justify-content: center;
  width: 31px;
}

.ctcbct-button-whatsapp .ctcbct-button-icon {
  color: #0f766e;
}

.ctcbct-button-call .ctcbct-button-icon {
  color: #1d4ed8;
}

.ctcbct-button-label {
  color: #fff !important;
}

.ctcbct-svg-icon {
  display: block;
  height: 18px;
  width: 18px;
}

.ctcbct-tooltip {
  align-items: center;
  background: var(--ctcbct-tooltip-bg, #0f172a);
  border-radius: 12px;
  bottom: auto;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.22);
  color: var(--ctcbct-tooltip-color, #fff);
  display: flex;
  gap: 10px;
  max-width: 330px;
  min-width: 235px;
  opacity: 0;
  padding: 10px 10px 10px 12px;
  pointer-events: none;
  position: absolute;
  right: calc(100% + 14px);
  top: calc(50% + 12px);
  transform: translate(-10px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ctcbct-position-bottom-right .ctcbct-tooltip {
  left: auto;
  right: calc(100% + 14px);
}

.ctcbct-position-bottom-left .ctcbct-tooltip {
  left: calc(100% + 14px);
  right: auto;
  transform: translate(10px, -50%);
}

.ctcbct-tooltip[hidden] {
  display: none;
}

.ctcbct-tooltip.ctcbct-tooltip-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.ctcbct-tooltip-text {
  flex: 1;
  font-size: var(--ctcbct-tooltip-font-size, 13px);
  line-height: 1.35;
}

.ctcbct-tooltip-close {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.16);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 22px;
  height: 30px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 30px;
}

@media (max-width: 640px) {
  .ctcbct-floating-buttons {
    bottom: 16px;
  }

  .ctcbct-position-bottom-right {
    right: 14px;
  }

  .ctcbct-position-bottom-left {
    left: 14px;
  }

  .ctcbct-floating-buttons .ctcbct-button {
    min-height: 44px;
    padding: 6px 14px 6px 8px;
  }
}
