
/* PRINT SHOP */

.lb-buy-print-hint {
  display: block;
  margin: 0.75rem auto 0;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.lb-buy-print-hint:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-1px);
}

.print-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 8, 0.86);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.print-modal.open {
  display: flex;
}
.print-modal-inner {
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}
.print-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.print-modal-close:hover {
  color: var(--white);
}
.print-modal-title {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: var(--white);
}

.print-crop-stage {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  min-height: 40px;
}
.print-crop-hint {
  color: var(--muted);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}
.print-crop-block {
  text-align: center;
}
.print-crop-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.print-crop-canvas {
  border-radius: 6px;
  border: 1px solid var(--border);
  touch-action: none;
  user-select: none;
}
.print-crop-orientation {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.print-orientation-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.print-orientation-btn:hover {
  border-color: var(--accent-dim);
  color: var(--white);
}
.print-orientation-btn.active {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--white);
}

.print-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.print-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.print-option small {
  color: var(--muted);
  font-size: 0.78rem;
}
.print-option:hover {
  border-color: var(--accent-dim);
}
.print-option.active {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.print-option-price {
  font-family: var(--font-mono);
  white-space: nowrap;
}

.print-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.print-modal-price {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--white);
}
.print-modal-status {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  min-height: 1.2em;
}
.print-modal-status.is-error {
  color: var(--accent);
}

@media (max-width: 480px) {
  .print-modal-inner {
    padding: 1.5rem 1.25rem;
  }
}

/* GALLERY REWORK POLL */
.rework-poll {
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
}
.rework-poll-question {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--white);
  margin: 0 0 0.9rem;
}
.rework-poll-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.rework-poll-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.rework-poll-btn:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.rework-poll-btn:disabled {
  opacity: 0.5;
  cursor: default;
}
.rework-poll-result {
  margin: 0.85rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  min-height: 1.1em;
}
