.uc-social-fixed {
  position: fixed;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 8px 8px 15px;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding-left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s 0.2s ease;
  animation: none;
  padding-right: 40px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.uc-social-fixed:hover {
  left: 0;
  padding-left: 8px;
}

.uc-social-fixed a {
  opacity: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.uc-social-fixed a:hover {
  opacity: 1;
  transform: scale(1.3);
}

.uc-social-fixed .t-sociallinks__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.uc-social-fixed::after {
  content: "▶";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #333;
  opacity: 0.7;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.uc-social-fixed:hover::after {
  opacity: 0;
  transform: translateY(-50%) translateX(15px);
}

@keyframes socialSlideIn {
  from {
    transform: translate(-30px, -50%);
    opacity: 0;
  }
  to {
    transform: translate(0, -50%);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .uc-social-fixed {
    position: absolute;
    top: 45%;
    left: 15px;
    transform: none;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 1px;
    border-radius: 16px;
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: none;
    padding-right: 1px;
     border: none;
  }
  
  .uc-social-fixed::after {
    display: none;
  }
  
  .uc-social-fixed:hover {
    left: 15px;
    padding-left: 1px;
  }

  .uc-social-fixed .t-sociallinks__wrapper {
    gap: 0;
  }

  .uc-social-fixed a {
    opacity: 1;
    transform: scale(0.7);
  }

  .uc-social-fixed a:hover {
    transform: scale(0.95);
  }
  
  .uc-social-fixed.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .uc-social-fixed {
    position: fixed;
    left: -60px;
    padding: 6px 6px 6px 12px;
    padding-right: 35px;
  }
  
  .uc-social-fixed:hover {
    left: 0;
    padding-left: 6px;
  }
  
  .uc-social-fixed .t-sociallinks__wrapper {
    gap: 20px;
  }
  
  .uc-social-fixed::after {
    right: 8px;
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .uc-social-fixed::after {
    font-size: 24px;
    right: 12px;
  }
}