/* ===== MagicTale Footer ===== */
.mt-footer {
  background: #333;
  color: #a8a8a8;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.mt-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 32px;
}

.mt-footer__col {
  display: flex;
  flex-direction: column;
}

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

.mt-footer__logo {
  height: 56px;
  width: auto;
  display: block;
}

.mt-footer__tagline {
  margin: 0;
  max-width: 320px;
  color: #a8a8a8;
  font-size: 14px;
  line-height: 1.55;
}

.mt-footer__heading {
  margin: 0 0 18px;
  color: #f0f0f0;
  font-size: 16px;
  font-weight: 700;
}

.mt-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mt-footer__link {
  font-size: 14px;
  color: #a8a8a8;
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.mt-footer__link:hover { opacity: 0.7; }

.mt-footer__address {
  margin: 0;
  color: #a8a8a8;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.mt-footer__divider {
  border: none;
  height: 1px;
  background: #4b4b4b;
  max-width: calc(1280px - 64px);
  margin: 0 auto;
}

.mt-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px 28px;
}

.mt-footer__copy {
  margin: 0;
  font-size: 13px;
  color: #a8a8a8;
}

.mt-footer__payments {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .mt-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 24px 24px;
  }
}

@media (max-width: 560px) {
  .mt-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px 24px;
  }

  .mt-footer__tagline { max-width: none; }

  .mt-footer__bottom {
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px 24px;
    text-align: center;
  }
}
