/* ============================================================
   零售电商页脚 · 北京明汉科技
   ============================================================ */

/* 承诺条容器 */
.guarantee-wrap {
  padding: 50px 20px !important;
  background: var(--mh-bg-page);
}

/* 主 footer 深色区 */
.mh-footer {
  background: var(--mh-bg-dark);
  color: rgba(255, 255, 255, 0.65);
}
.footer-inner {
  padding: 64px 20px 30px !important;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 品牌列 */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo .footer-logo-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 8px;
  display: block;
}
.footer-brand .footer-logo .footer-logo-text {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--mh-font-display);
  color: #fff;
  letter-spacing: 1px;
}
.footer-brand .footer-slogan {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
}
.footer-contact .fc-line,
.footer-contact .fc-tel,
.footer-contact .fc-mail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.footer-contact .fc-tel {
  color: var(--mh-accent);
  font-size: 15px;
  font-weight: 500;
}

/* 导航列 */
.footer-col-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55) !important;
  transition: color var(--mh-dur) var(--mh-ease);
}
.footer-link:hover {
  color: var(--mh-accent) !important;
}

/* 二维码列 */
.footer-qr {
  text-align: center;
}
.footer-qr .qr-img {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: var(--mh-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  overflow: hidden;
  padding: 8px;
}
.footer-qr .qr-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.footer-qr .qr-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* 友情链接 */
.footer-link-line {
  padding: 24px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
}
.footer-link-line a {
  color: rgba(255, 255, 255, 0.4) !important;
}
.footer-link-line a:hover {
  color: var(--mh-accent) !important;
}

/* 版权备案条 */
.footer-record {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.record-inner {
  padding: 22px 20px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.record-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.record-left a,
.record-left span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4) !important;
}
.record-left a:hover {
  color: var(--mh-accent) !important;
}
.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4) !important;
}

/* 响应式 */
@media (max-width: 992px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand, .footer-qr {
    grid-column: 1 / -1;
  }
  .footer-qr { text-align: left; }
  .footer-qr .qr-img { margin: 0 0 12px; }
}
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr; }
  .record-inner { flex-direction: column; align-items: flex-start; }
}
