.floating-messengers {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-messengers__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.floating-messengers__btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.floating-messengers__btn:active {
  transform: scale(1.05);
}

/* Phone — green */
.floating-messengers__btn--phone {
  background: #25D366;
}

/* Telegram — blue */
.floating-messengers__btn--telegram {
  background: #2AABEE;
}

/* MAX — gradient blue-violet */
.floating-messengers__btn--max {
  background: linear-gradient(135deg, #4F8EF7 0%, #9B59B6 100%);
}

.floating-messengers__btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.floating-messengers__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 0;
}

@media (max-width: 768px) {
  .floating-messengers {
    right: 14px;
    bottom: 90px;
    gap: 10px;
  }

  .floating-messengers__btn {
    width: 48px;
    height: 48px;
  }

  .floating-messengers__btn svg {
    width: 24px;
    height: 24px;
  }
}
