/* Wrapper */
#cb-contact-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Contact buttons (stacked) */
#cb-contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cb-hidden {
  display: none !important;
}

.cb-opened .cb-button-text {
  display: none;
}

/* Individual icons */
.cb-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}
.cb-btn:hover {
  transform: scale(1.1);
}
.cb-btn.whatsapp {
  background-color: #25d366;
}
.cb-btn.messenger {
  background-color: #0084ff;
}
.cb-btn.call {
  background-color: #9b59b6;
}
.cb-btn.telegram {
  background-color: #6c5ce7;
}
.cb-btn.app {
  background-color: #341f97;
}

/* Main Button (icon right, text left) */
.cb-floating-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}
.cb-floating-button:hover {
  transform: scale(1.05);
}

/* Rotating icon on hover */
.cb-floating-button .cb-button-icon i {
  transition: transform 0.5s ease;
}
.cb-floating-button:hover .cb-button-icon i {
  transform: rotate(20deg);
}

/* Auto pulse animation */
@keyframes cbPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.cb-animate {
  animation: cbPulse 0.5s ease;
}