.floating-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-right: none;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
}

.floating-social__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.floating-social__item {
  border-bottom: 1px solid #e0e0e0;
}

.floating-social__item:last-child {
  border-bottom: none;
}

.floating-social__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.floating-social__link:hover {
  background-color: #f5f8fa;
}

.floating-social__link img {
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .floating-social {
    display: none; /* Hide on mobile to avoid overlapping */
  }
}
