.wall-3d-buttons{
  margin-bottom:20px;
  display:flex;
  flex-wrap:wrap;
}
.wall-3d-container{
  display:flex;
  flex-direction:column;
  gap:10px;
  width:100%;
}
.wall-3d-container .button{
  width:100%;
}
.wall-3d-message{
  font-size:0.9em;
  opacity:0.8;
  margin:0;
}

/* QR card — clean, theme-neutral */
.wall-3d-qr{
  border:1px solid rgba(0,0,0,0.08);
  border-radius:8px;
  padding:12px;
  background:#fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.wall-3d-qr-title{
  font-weight:600;
  font-size:0.95em;
}
.wall-3d-qr-image img{
  display:block;
  width:100px;
  height:100px;
  max-width:28vw;
  max-height:28vw;
}
.wall-3d-qr-note{
  font-size:0.8em;
  opacity:0.8;
  text-align:center;
  /* Beperk de hoogte van langere teksten */
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* Nog compacter: tekst naast de QR op bredere schermen */
@media (min-width: 480px) {
  .wall-3d-qr{
    display:grid;
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "img title"
      "img note";
    align-items:center;
    column-gap:12px;
    row-gap:6px;
    padding:10px;
  }
  .wall-3d-qr-image{ grid-area: img; }
  .wall-3d-qr-image img{
    width:80px;
    height:80px;
    max-width:none;
    max-height:none;
  }
  .wall-3d-qr-title{ grid-area: title; font-size:0.92em; margin:0; text-align:left; }
  .wall-3d-qr-note{ grid-area: note; text-align:left; -webkit-line-clamp:2; }
}
