.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}
.social-link:hover { color: #F97316; }
.social-icons-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}
.social-icon-btn svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  min-height: 1.125rem;
  flex-shrink: 0;
  fill: currentColor;
}
.social-icon-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}
.social-icon-btn--tiktok:hover {
  background: #010101;
  border-color: #25f4ee;
  color: #25f4ee;
}
.social-icon-btn--instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}
.social-icons-row--light .social-icon-btn {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #64748b;
}
.social-icons-row--light .social-icon-btn:hover { color: #fff; }
