/* MAIN FIXED BAR */
.fixed-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

/* ICON LINKS */
.fixed-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #f58220;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

/* LAST ICON BORDER REMOVE */
.fixed-social a:last-child {
  border-bottom: none;
}

/* HOVER EFFECT */
.fixed-social a:hover {
  background: #d96b0d;
  transform: translateX(-5px);
}

/* OPTIONAL: Rounded look */
.fixed-social a:first-child {
  border-top-left-radius: 6px;
}

.fixed-social a:last-child {
  border-bottom-left-radius: 6px;
}
