/* ===== PROFESSIONAL FOOTER ===== */

.ok-footer {
  background: #0f172a;
  padding: 14px 16px;
  border-top: 1px solid #1e293b;
}

/* layout */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT */
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* QR / Logo */
.footer-logo-box {
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 6px;
  padding: 4px;
  flex-shrink: 0;
}

.footer-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* TEXT */
.footer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-title {
  font-size: 13px;
  font-weight: 600;
  color: #f1f5f9;
}

.footer-sub {
  font-size: 11px;
  color: #38bdf8;
  text-decoration: none;
}

.footer-sub:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 10px;
  color: #64748b;
}

/* RIGHT LINKS */
.footer-right {
  display: flex;
  gap: 8px;
 
}

.footer-link {
  font-size: 11px;
  color: #94a3b8;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: 0.2s;
}

.footer-link:hover {
  background: #1e293b;
  color: #f1f5f9;
}



@media (max-width: 480px) {
  .footer-content {
    flex-direction: row;          /* keep in one line */
    justify-content: space-between;
    align-items: center;
  }

  .footer-left {
    max-width: 75%;               /* prevent text from pushing logo */
  }

  .footer-right {
    justify-content: flex-end;
  }

  .footer-right img {
    width: 60;                  /* smaller logo for mobile */
    height:60;
  }
}