/* =========================
   FOOTER
========================= */
.footer {
  padding: 24px 0;
  background: #fafaf9;
  border-top: 1px solid #eee;
  overflow: hidden;
}

.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
}

.footer-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.footer-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  margin: 0 0 0 auto;
  text-align: right;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #78716c;
  flex: 0 1 auto;
  padding-left: 24px;
}

.footer-qr {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.footer-qr img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.3s;
}

.footer-qr:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* =========================
   FOOTER RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer {
    padding: 28px 0;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    text-align: center;
  }

  .footer-qr {
    position: static;
    transform: none;
    order: 2;
  }

  .footer-qr img {
    height: 72px;
  }

  .footer-brand {
    order: 1;
  }

  .footer-copy {
    order: 3;
    margin: 0;
    padding-left: 0;
    text-align: center;
    font-size: 10px;
    line-height: 1.5;
  }
}