salla-social,
salla-social > ul {
  display: flex;
  align-items: center;
  justify-content: center;   
  gap: 14px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

salla-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f2f2f4;
  color: #4a4a4a;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

salla-social a .s-social-icon svg,
salla-social a svg {
  display: block;
  width: 20px;
  height: 20px;
}

salla-social a .s-social-icon svg path,
salla-social a svg path {
  fill: currentColor;
}

salla-social a:hover,
salla-social a:focus-visible {
  transform: translateY(-2px);
  color: #fff;
}
salla-social a:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}

salla-social a[href*="instagram"]:hover { background: #e4405f; }
salla-social a[href*="snapchat"]:hover  { background: #111; color: #fffc00; }
salla-social a[href*="tiktok"]:hover    { background: #010101; }
salla-social a[href*="youtube"]:hover   { background: #ff0000; }
salla-social a[href*="facebook"]:hover  { background: #1877f2; }