  #qr-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  #qr-modal-overlay.active {
    display: flex;
    opacity: 1;
  }

  #qr-modal-box {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    max-width: 360px;
    width: 92%;
    box-sizing: border-box;
  }

  #qr-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    font-weight: 700;
    background: #f44336;
    color: #fff;
    border: 0;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
  }

  .spacer { height: 14px; }

  #qr-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 10px 0;
  }

  #qr-info-waktu {
    font-size: 15px;
    color: #e53935;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  #qr-amount {
    font-size: 20px;
    font-weight: 700;
    color: #000;
  }

  #qr-toko {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1e88e5;
    word-break: break-word;
  }

  #qr-download {
    margin-top: 14px;
    font-size: 16px;
    background: #2196f3;
    color: #fff;
    padding: 8px 12px;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
  }

  #qr-qrcode {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #qr-qrcode img {
    width: 256px;
    height: 256px;
    object-fit: contain;
    display: block;
  }

  .popup-info {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    color: #000;
  }