/* Lily Neige — footer socials (does not affect cookie banner) */
.ln-footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
  padding: 18px 0 4px;
  border-top: 1px solid #e6e1d6;
  text-align: center;
}
.ln-footer-social__label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.85rem;
  color: #141414;
}
.ln-footer-social__list {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0 !important;
  padding: 0;
}
.ln-footer-social__list li {
  margin: 0 !important;
}
.ln-footer-social__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #98C018;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.ln-footer-social__list a:hover,
.ln-footer-social__list a:focus-visible {
  background: #a8d42a;
  color: #1a1a1a;
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}
.ln-footer-social__list svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}
@media (prefers-reduced-motion: reduce) {
  .ln-footer-social__list a { transition: none; }
}
