/* Стили виджета Мессенджеры для фронтенда */
.messengers-widget {
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  bottom: 10px;
  right: 10px;
}

.messengers-widget__icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.messengers-widget__item {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.messengers-widget__item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.messengers-widget__icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.messengers-widget__caption {
  color: #fff;
  padding: 1px 7px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
  align-self: center;
}
@media (max-width: 768px) {
  .messengers-widget__caption {
    font-size: 11px;
  }
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .messengers-widget {
    bottom: 5px;
    right: 5px;
  }

  .messengers-widget__item {
    width: 45px;
    height: 45px;
  }
}
