/* public-order-screens.css
   Screen-only behavior/styles for web/public_orders show + show_locked.
   Shared public-order primitives live in public-order-summary/profile/selection files. */

.hello-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hello-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.public-order-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.public-order-back-link:hover,
.public-order-back-link:focus-visible {
  color: rgba(0, 0, 0, 0.88);
  text-decoration: none;
}

.public-order-back-link:focus-visible {
  outline: 2px solid rgba(13, 110, 253, 0.24);
  outline-offset: 4px;
  border-radius: 999px;
}

.public-order-viewer-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.edit-mode-warning {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 12px 20px;
  background-color: #ffc107;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.edit-mode-warning__link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}
