/* Sabit Sosyal Medya İkonları */
.fixed-social-icons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

.fixed-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.fixed-social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.fixed-social-icon-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

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

.fixed-social-icon-whatsapp {
  background-color: #25D366;
}

/* Mobil Cihazlar İçin Uyarlama */
@media (max-width: 768px) {
  .fixed-social-icons {
    right: 10px;
  }
  
  .fixed-social-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .fixed-social-icons {
    top: auto;
    bottom: 90px;
    flex-direction: row;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
  }
  
  .fixed-social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
