
.side-social{
  position:fixed;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:90;
}
.side-social a{
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:var(--primary, #b08968);
  color:#fff;
  box-shadow:0 8px 20px -6px rgba(0,0,0,0.35);
  transition:background 0.2s ease, transform 0.2s ease;
}
.side-social a:hover{
  background:var(--primary-hover, #96714f);
  transform:scale(1.08);
}
.side-social svg{ width:20px; height:20px; }

@media (max-width:720px){
  .side-social{ right:12px; gap:10px; }
  .side-social a{ width:40px; height:40px; }
  .side-social svg{ width:18px; height:18px; }
}


