.kc-messengers__fab {
  position: fixed;
  width: 64px;
  height: 64px;
  z-index: 9999;
}

.kc-messengers__fab--desktop {
  display: block;
}

.kc-messengers__fab--mobile {
  display: none;
}

@media (max-width: 767px) {
  .kc-messengers__fab--desktop {
    display: none;
  }

  .kc-messengers__fab--mobile {
    display: block;
  }
}

.kc-messengers__fab-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.kc-messengers__fab-btn {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 0 8px 25px rgba(79, 70, 229, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kc-messengers__fab-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 15px 40px rgba(79, 70, 229, 0.5);
}

.kc-messengers__fab-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.25;
  animation: kcMessengersPulse 2.8s infinite ease-in-out;
  z-index: -1;
}

@keyframes kcMessengersPulse {
  0% { transform: scale(0.9); opacity: 0.4; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0.4; }
}

.kc-messengers__icons {
  position: relative;
  width: 100%;
  height: 100%;
}

.kc-messengers__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.kc-messengers__icon.active {
  opacity: 1;
}

.kc-messengers__icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.kc-messengers__icon--whatsapp { background: #25D366; }
.kc-messengers__icon--telegram { background: #229ED9; }
.kc-messengers__icon--max { background: #7360F2; }

.kc-messengers__popup-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px;
}

.kc-messengers__channels {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 30px;
  background: rgba(231, 237, 246, 0.5);
  padding: 20px 15px;
  border-radius: 16px;
}

.kc-messengers__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.kc-messengers__channel:hover {
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
}

.kc-messengers__channel-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.kc-messengers__channel-icon img {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1);
}

.kc-messengers__channel-icon--max { background: linear-gradient(135deg, #6b5ce6, #8b7aff); }
.kc-messengers__channel-icon--whatsapp { background: #25D366; }
.kc-messengers__channel-icon--telegram { background: #34AADF; }

.kc-messengers__channel-text {
  font-weight: 600;
  font-size: 15px;
  color: #222;
}

.kc-messengers__phones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.kc-messengers__phone {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  padding: 8px 0;
}

.kc-messengers__phone:hover {
  color: inherit;
  text-decoration: none;
}

.kc-messengers__phone-icon {
  width: 48px;
  height: 48px;
  background: #f0f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b7eff !important;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%233b7eff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L7.09 10.09a16 16 0 0 0 6.5 6.5l1.45-1.45a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
}

.kc-messengers__phone-num {
  font-size: var(--font-size-big, 18px);
  font-weight: 600;
  display: block;
  color: #222;
}

.kc-messengers__phone-desc {
  font-size: 13px;
  color: #666;
  display: block;
}

.kc-messengers__qr-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  text-align: left;
}

.kc-messengers__qr-img {
  display: block;
  flex-shrink: 0;
  width: 143px;
  height: 143px;
}

.kc-messengers__qr-text {
  font-size: 15px;
  line-height: 1.4;
  color: #333;
}
