/* 全站页尾 — 纯黑底 + 白字 + 居中单列 */
.site-footer { padding-top: 60px; color: var(--color-white); text-align: center; background: var(--color-ink-soft); }
.site-footer__logo img { width: 206px; margin-inline: auto; }
.site-footer__sns { margin: 42px 0 60px; }
.site-footer__sns ul { display: flex; gap: 33px; align-items: center; justify-content: center; }
.site-footer__sns img { width: 34px; }
.site-footer__nav ul { display: flex; flex-wrap: wrap; gap: 15px 35px; justify-content: center; }
.site-footer__nav a { position: relative; display: inline-block; padding: 5px; } /* inline 竖 padding 不占位,线上行高 25px 需要 inline-block */
.site-footer__legal { margin-top: 71px; font-size: var(--text-xs); }
.site-footer__legal ul { display: flex; flex-wrap: wrap; gap: 10px 0; justify-content: center; }
.site-footer__legal li:not(:last-child)::after { content: "|"; margin: 0 .5em; color: var(--color-white); }
.site-footer__payment { margin-top: 40px; }
.site-footer__payment .add-paymentIcons { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.site-footer__payment .add-paymentIcons img,
.site-footer__payment .add-paymentIcons svg { height: 24px; width: auto; }
.site-footer__copyright {
  margin-top: 30px; padding: 30px 0 40px;
  font-size: 17px; font-weight: 700; letter-spacing: .05em;
  border-top: 1px solid var(--color-white);
}
.site-footer a:hover, .site-footer .hoverLink:hover { opacity: .7; }

@media (max-width: 768px) {
  /* 线上移动 footer 实测:logo 160 宽;nav 是 flex-wrap 多列行(li ~88×25,gap 10),不是单列;
     行高统一 1.15;版权条 pad 12/14、无上 margin。 */
  .site-footer { padding-top: 45px; }
  .site-footer__logo img { width: 160px; }
  .site-footer__sns ul { gap: 25px; }
  .site-footer__nav ul { flex-direction: column; gap: 10px; font-size: 13px; line-height: 1.15; } /* 单列,li 25px(5+15+5)×4 + gap = 130 */
  .site-footer__legal { margin-top: 30px; font-size: 10px; line-height: 1.15; letter-spacing: .25em; }
  .site-footer__payment { margin: 30px 0; }
  .site-footer__copyright { margin-top: 0; padding: 12px 0 14px; font-size: 13px; line-height: 1.15; }
}
