/* contact-bar-x.css – version 2.0 (NO TOGGLE) */
:root { --cbx-size:52px; --cbx-radius:36px; --cbx-gap:14px; }

.cbx-floating-bar {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: var(--cbx-gap);
  z-index: 999999;
}

.cbx-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  min-height: var(--cbx-size);
  border-radius: var(--cbx-radius);
  background: var(--cbx-item-color);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform .2s ease;
}

.cbx-item:hover {
  transform: scale(1.06);
}

.cbx-item .cbx-icon {
  width: calc(var(--cbx-size) * 0.6);
  height: calc(var(--cbx-size) * 0.6);
  border-radius: 50%;
  object-fit: contain;
}

.cbx-item .cbx-fa {
  width: calc(var(--cbx-size) * 0.6);
  height: calc(var(--cbx-size) * 0.6);
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cbx-label {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.cbx-anim-bounce .cbx-item {
  animation: cbx-bounce 1.2s infinite;
}

@keyframes cbx-bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
