/* Social Icons Styles */
.social-icons-widget {
  text-align: center;
  padding: 20px 0;
}

.social-icons-list {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: currentColor;
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.social-icon:hover::before {
  opacity: 0.1;
}

.social-icon i {
  position: relative;
  z-index: 1;
}

/* Sizes */
.social-icons-small .social-icon {
  width: 35px;
  height: 35px;
  font-size: 16px;
}

.social-icons-medium .social-icon {
  width: 45px;
  height: 45px;
  font-size: 18px;
}

.social-icons-large .social-icon {
  width: 55px;
  height: 55px;
  font-size: 22px;
}

/* Styles */
.social-icons-circle .social-icon {
  border-radius: 50%;
}

.social-icons-square .social-icon {
  border-radius: 0;
}

.social-icons-rounded .social-icon {
  border-radius: 8px;
}

/* Colors */
.social-icons-default .social-icon {
  background: #f8f9fa;
  color: var(--text-color);
  border: 2px solid #e9ecef;
}

.social-icons-default .social-icon:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-icons-brand .social-icon-facebook {
  background: #3b5998;
  color: #fff;
}

.social-icons-brand .social-icon-zalo {
  background: #0068ff;
  color: #fff;
}

.social-icons-brand .social-icon-youtube {
  background: #ff0000;
  color: #fff;
}

.social-icons-brand .social-icon-linkedin {
  background: #0077b5;
  color: #fff;
}

.social-icons-brand .social-icon-twitter {
  background: #1da1f2;
  color: #fff;
}

.social-icons-brand .social-icon-instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: #fff;
}

.social-icons-brand .social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icons-dark .social-icon {
  background: var(--text-color);
  color: #fff;
}

.social-icons-dark .social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.social-icons-light .social-icon {
  background: #fff;
  color: var(--text-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-icons-light .social-icon:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .social-icons-list {
    gap: 10px;
  }

  .social-icons-large .social-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .social-icons-medium .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
