.social-sidebar {
  position: fixed;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: rgba(240, 233, 223, 0.9);
  color: #050505;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background-color: #B0864A;
  color: #F0E9DF;
  transform: translateX(4px);
}

.social-icon.facebook:hover {
  background-color: #1877F2;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-icon.telegram:hover {
  background-color: #0088CC;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .social-sidebar {
    display: none;
  }
}
