/* Mnory 2026 footer — modeled on Trophy's site-footer grid, mnory blue palette */

.mn-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px 48px;
  padding-block: 12px 40px;
}

/* Brand column */
.mn-footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.mn-footer-desc {
  max-width: 300px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.8;
  margin-bottom: 18px;
}

.footer .social-icons { gap: 10px !important; }
.footer .social-icons a {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, .08) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  color: rgba(255, 255, 255, .8) !important;
  font-size: .82rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.footer .social-icons a:hover {
  background: #4f8bff !important;
  border-color: #4f8bff !important;
  color: #fff !important;
}

/* Column titles */
.mn-footer-title {
  font-size: .82rem;
  font-weight: 750;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 9px;
  border-bottom: 2px solid #4f8bff;
  display: inline-block;
}

/* Link lists */
.mn-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mn-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  font-size: .82rem;
  transition: color .15s ease;
}
.mn-footer-links a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #8fb5ff;
  opacity: 0;
  flex-shrink: 0;
  transition: opacity .15s ease;
}
.mn-footer-links a:hover { color: #fff; }
.mn-footer-links a:hover::before { opacity: 1; }

/* Contact list */
.mn-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.mn-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .68);
}
.mn-footer-contact-list a { color: rgba(255, 255, 255, .68); text-decoration: none; transition: color .15s ease; }
.mn-footer-contact-list a:hover { color: #8fb5ff; }
.mn-footer-contact-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  font-size: .72rem;
  color: #8fb5ff;
  margin-top: 1px;
}

/* Divider + bottom bar */
.mn-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin-inline: 4px;
}
.mn-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 18px;
}
.mn-footer-copy { font-size: .78rem; color: rgba(255, 255, 255, .55); margin: 0; }
.mn-footer-copy strong { color: rgba(255, 255, 255, .82); }
.mn-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
}
.mn-footer-bottom-links a { color: rgba(255, 255, 255, .55); text-decoration: none; transition: color .15s ease; }
.mn-footer-bottom-links a:hover { color: #8fb5ff; }

@media (max-width: 1100px) {
  .mn-footer-grid { grid-template-columns: 1fr 1fr; }
  .mn-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 576px) {
  .mn-footer-grid { grid-template-columns: 1fr; gap: 26px; padding-block: 8px 28px; }
  .mn-footer-brand { grid-column: auto; text-align: center; }
  .mn-footer-brand .logo, .mn-footer-desc { margin-inline: auto; }
  .mn-footer-desc { text-align: center; }
  .footer .social-icons { justify-content: center; }
  .mn-footer-title { display: block; text-align: center; }
  .mn-footer-links, .mn-footer-contact-list { align-items: center; text-align: center; }
  .mn-footer-contact-list li { flex-direction: column; align-items: center; }
  .payment-icons { justify-content: center; display: flex; }
  .mn-footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
}
