/* ===== MagicTale Footer ===== */
.mt-footer {
  background-color: #333333;
  color: #999999;
  font-family: inherit;
  height: 150px;
  font-family: "Inter", sans-serif;
}

.mt-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 35px 16px 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  background-color: #333333;
}

.mt-footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mt-footer__logo {
  height: 36px;
  width: auto;
  display: block;
  filter: saturate(1);
}

/* Center nav */
.mt-footer__nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.mt-footer__link {
  font-size: 14px;
  line-height: 1.4;
  color: #727272;
  text-decoration: none;
  position: relative;
  transition: opacity .2s ease;
}

.mt-footer__link:hover { opacity: 0.8; }
.mt-footer__link:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Payments */
.mt-footer__payments {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.mt-footer__payicon {
  height: 24px;
  width: auto;
  display: block;
  opacity: 0.95;
}

.mt-footer__divider {
  border: none;
  height: 1px;
  background: #4b4b4b;
  max-width: 600px;
  margin: 0 auto;
}

/* Bottom line */
.mt-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333333;
}

.mt-footer__copy {
  font-size: 13px;
  color: #727272;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 1111px) {
  .mt-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 25px 16px 12px;
  }
  .mt-footer__payments { justify-content: center; }
  .mt-footer__logo {
    display: none;
  }
  .mt-footer__nav {
    margin-bottom: 25px;
  }
}
