/* ══════════════════════════════════════════
   VIEW IN ROOM — scale mockup modal
   ══════════════════════════════════════════ */
#pf-room-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5,5,5,0.94);
  padding: 2rem 1rem;
}
#pf-room-modal.open { display: flex; }

.pf-room-modal-inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  padding: 1.5rem 1.5rem 1rem;
  box-sizing: border-box;
}

.pf-room-canvas {
  width: 100%;
  height: auto;
  display: block;
}

.pf-room-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 38px;
  height: 38px;
  background: rgba(8,8,8,0.7);
  border: 1px solid #333;
  color: #ddd;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}
.pf-room-close:hover { color: #c8a96e; border-color: #c8a96e; }

.pf-room-note {
  text-align: center;
  margin: 0.9rem 0 0;
  font-family: 'Josefin Sans', 'Helvetica Neue', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
}

@media (max-width: 600px) {
  .pf-room-modal-inner { padding: 2.5rem 0.75rem 0.75rem; }
}
