/* Mighty BioLabs CSS consolidation — Phase 1 (lossless split)
 * Crypto QR and payment presentation.
 * Source: styles.css; rule order preserved by HTML link order.
 */

/* Crypto payment QR card */
.crypto-qr-card{
  display:grid;
  grid-template-columns:132px minmax(0,1fr);
  gap:16px;
  align-items:center;
  margin:14px 0 12px;
  padding:14px;
  border:1px solid rgba(11,31,58,.10);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 24px rgba(11,31,58,.06);
}
.crypto-qr-image-wrap{
  width:132px;
  height:132px;
  display:grid;
  place-items:center;
  border-radius:16px;
  border:1px solid rgba(11,31,58,.08);
  background:#f7f9fc;
  overflow:hidden;
}
.crypto-qr-image-wrap img{
  width:112px;
  height:112px;
  object-fit:contain;
  display:block;
}
.crypto-qr-copy strong{
  display:block;
  color:#0b1f3a;
  font-weight:900;
  margin-bottom:4px;
}
.crypto-qr-copy p{
  margin:0 0 6px;
  color:#506176;
  overflow-wrap:anywhere;
  line-height:1.45;
}
.crypto-qr-copy small{
  color:#667085;
  font-weight:700;
}
@media(max-width:640px){
  .crypto-qr-card{grid-template-columns:1fr;text-align:center;justify-items:center;}
  .crypto-qr-copy p{text-align:center;}
}

/* Crypto QR lightbox and configured wallet polish */
.crypto-qr-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(7,18,36,.76);
  backdrop-filter:blur(6px);
}
.crypto-qr-lightbox img{
  width:min(420px,88vw);
  max-height:88vh;
  object-fit:contain;
  background:#fff;
  border-radius:26px;
  padding:20px;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
}
.crypto-qr-lightbox-close{
  position:absolute;
  top:22px;
  right:24px;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.32);
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
}
.crypto-qr-card.is-placeholder .crypto-qr-image-wrap{
  background:linear-gradient(135deg,#eef3fa,#f8fbff);
  border-style:dashed;
}

