.social-footer-shell {
  background: #081B2C;
}

.social-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.social-icon {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.social-icon svg {
  display: block;
  width: 21px;
  height: 21px;
  overflow: visible;
  fill: currentColor;
}

.social-icon[href]:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.social-icon:focus-visible {
  outline: 3px solid rgba(108, 217, 200, 0.45);
  outline-offset: 2px;
}

.social-instagram {
  background:
    radial-gradient(circle at 30% 107%, #FDF497 0 5%, #FDF497 5%, #FD5949 45%, #D6249F 60%, #285AEB 90%);
}

.social-facebook { background: #1877F2; }
.social-tiktok { background: #000000; }
.social-linkedin { background: #0A66C2; border-radius: 11px; }

.social-facebook svg { width: 17px; }
.social-tiktok svg { width: 19px; height: 22px; }
.social-linkedin svg { width: 20px; }

.social-tiktok .tiktok-cyan { fill: #25F4EE; }
.social-tiktok .tiktok-pink { fill: #FE2C55; }
.social-tiktok .tiktok-white { fill: #FFFFFF; }

.social-icon-disabled {
  cursor: default;
}

@media (max-width: 480px) {
  .social-footer { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .social-icon { transition: none; }
}
