/* === FOOTER === */

.mh-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding-top: 44px;
}

.mh-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 26px;
}

.mh-footer__logo {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.mh-footer__text {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.mh-footer__contact {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.mh-footer__contact a {
  color: rgba(255, 255, 255, 0.95) !important;
  text-decoration: none;
  font-weight: 600;
}

.mh-footer__contact i {
  margin-right: 6px;
}

.mh-footer__title {
  font-weight: 900;
  margin-bottom: 12px;
}

.mh-footer__link {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
  text-decoration: none;
}

.mh-footer__link:hover {
  color: var(--white);
}

.mh-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.mh-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.mh-social a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.mh-store {
  display: grid;
  gap: 10px;
}

.mh-store__btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 14px;
  font-weight: 800;
  color: var(--white) !important;
}

.mh-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
}

.mh-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.mh-footer__policies {
  display: inline-flex;
  gap: 14px;
}

.mh-footer__policies a {
  color: rgba(255, 255, 255, 0.85) !important;
}

.mh-footer__policies a:hover {
  color: var(--white) !important;
}

