.social-bar {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.social-bar__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0c0705;
  border: 1px solid #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.social-bar__btn:hover {
  background: #c9a84c;
  border-color: #c9a84c;
  transform: scale(1.1);
}

.social-bar__btn:hover svg {
  fill: #0c0705;
  stroke: #0c0705;
}

.social-bar__btn svg {
  width: 20px;
  height: 20px;
  transition: fill 0.25s ease, stroke 0.25s ease;
}

.social-bar__btn--fb svg {
  fill: #c9a84c;
}

.social-bar__btn--ig svg {
  fill: none;
  stroke: #c9a84c;
  stroke-width: 2;
}

@media (max-width: 768px) {
  .social-bar {
    right: 10px;
    gap: 8px;
  }
  .social-bar__btn {
    width: 38px;
    height: 38px;
  }
  .social-bar__btn svg {
    width: 17px;
    height: 17px;
  }
}
