.floating-social {
  position: fixed;
  right: 30px;
  bottom: 110px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-social__btn {
  position: relative;
  width: 52px;
  height: 52px;
  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.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-social__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.floating-social__btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.floating-social__btn--facebook {
  background: #1877f2;
}

.floating-social__btn--facebook:hover {
  background: #0f65d8;
}

.floating-social__btn--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-social__btn--youtube {
  background: #ff0000;
}

.floating-social__btn--youtube:hover {
  background: #e00000;
}

.floating-social__label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #1f2937;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.floating-social__label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1f2937;
}

.floating-social__btn:hover .floating-social__label {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .floating-social {
    right: 20px;
    bottom: 96px;
    gap: 10px;
  }

  .floating-social__btn {
    width: 48px;
    height: 48px;
  }

  .floating-social__btn svg {
    width: 22px;
    height: 22px;
  }

  .floating-social__label {
    display: none;
  }
}
