.social-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.social-icons a {
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons a span {
    display: block;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    overflow: hidden;
}

.icon-instagram {
  background-image: url('https://iamthesweetspot.com/wp-content/themes/hello-elementor-child/assets/icons/svgs/instagram.svg');
}

.icon-tiktok {
  background-image: url('https://iamthesweetspot.com/wp-content/themes/hello-elementor-child/assets/icons/svgs/tiktok.svg');
}

.icon-facebook {
  background-image: url('https://iamthesweetspot.com/wp-content/themes/hello-elementor-child/assets/icons/svgs/facebook.svg');
}

.icon-twitter {
  background-image: url('https://iamthesweetspot.com/wp-content/themes/hello-elementor-child/assets/icons/svgs/twitter.svg');
}

.icon-youtube {
  background-image: url('https://iamthesweetspot.com/wp-content/themes/hello-elementor-child/assets/icons/svgs/youtube.svg');
}

.icon-pinterest {
  background-image: url('https://iamthesweetspot.com/wp-content/themes/hello-elementor-child/assets/icons/svgs/pinterest.svg');
}

.icon-linkedin {
  background-image: url('https://iamthesweetspot.com/wp-content/themes/hello-elementor-child/assets/icons/svgs/linkedin.svg');
}

@media (max-width: 767px) {
  .social-icons {
    gap: 28px;
  }

  .social-icons a {
    width: 22px;
    height: 22px;
  }
}