/* Shared footer SNS row. Preserve the surrounding footer layout and typography. */
.footer .footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: none;
}
.footer .footer-social-link img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: none;
}
.footer .footer-social-link--instagram { background: transparent; }
.footer .footer-social-link--instagram img { width: 44px; height: 44px; }
.footer .footer-social-link--tiktok { background: #000; overflow: hidden; }
.footer .footer-social-link--tiktok img { width: 64px; height: auto; max-width: none; flex-shrink: 0; }
.footer .footer-social-link:hover { opacity: 1; outline: 1px solid rgba(255,255,255,.6); outline-offset: 3px; }
.footer .footer-social-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  opacity: 1;
}
