/* ============================================================
   全站页脚样式（唯一来源，所有页面共用，勿在页面内重复定义）
   背景色沿用 index.html 的棕色 --brand-brown（#5d4037）。
   原先 category.html / store.html 用的是深绿 #22301f，已统一为此色。
   ============================================================ */

footer {
    background: var(--brand-brown, #5d4037);
    color: #f8efe6;
    margin-top: 40px;
}
.footer-top {
    display: flex; gap: 36px; flex-wrap: wrap; justify-content: space-between;
    padding: 58px 0;
}
.footer-col { flex: 1 1 260px; min-width: 220px; }
.footer-title { font-weight: 700; margin-bottom: 14px; }

.links { list-style: none; padding: 0; margin: 0; }
.links li { margin: 8px 0; font-size: 14px; }
.links a { opacity: .85; }
.links a:hover { opacity: 1; text-decoration: underline; }

.copyright {
    text-align: center; padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 13px; opacity: .92; line-height: 1.9;
}
.copyright .beian { margin-top: 4px; opacity: .85; }

@media (max-width: 768px) {
    .footer-top { padding: 40px 0 30px; gap: 24px; }
}
