/* Original storefront.css is deliberately unchanged. System-only additions live here. */
[hidden] {
  display: none !important;
}
.profile-demo .account-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.account-actions select {
  width: auto;
  min-width: 70px;
}
.account-actions button {
  white-space: nowrap;
}
.profile-demo .account-identity {
  min-width: 0;
  overflow-wrap: anywhere;
}
.profile-demo .account-identity p {
  margin: 5px 0;
}
.stock-notice {
  font-size: 11px;
  color: var(--muted);
}
.checkout-dialog .system-message {
  padding: 12px 15px;
  background: var(--light);
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.65;
}
.secure-payment-next {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin: 17px 0;
  border: 1px solid #dce4d1;
  border-radius: 12px;
  background: #f5f8ef;
}
.secure-payment-next > svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: #526d35;
}
.secure-payment-next strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.secure-payment-next p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.checkout-dialog .field-grid {
  margin-top: 16px;
}
.checkout-dialog .full-button {
  width: 100%;
  margin-top: 20px;
}
.checkout-dialog h3.delivery-title {
  font-size: 16px;
  margin-top: 27px;
}
.payment-options button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.storefront-root .modal-footer {
  flex-wrap: wrap;
  gap: 12px;
}
.storefront-root .history-table button {
  text-align: left;
}
.storefront-root .history-table-wrap {
  overflow: auto;
}
.history-dialog .primary-button {
  width: 100%;
  margin-top: 20px;
}
.zelle-order-status {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid #e4d7f5;
  border-radius: 13px;
  background: #faf7fd;
  text-align: left;
}
.zelle-order-status h3 {
  margin-bottom: 12px;
}
.zelle-order-status p {
  margin: 10px 0;
  font-size: 13px;
  line-height: 1.65;
}
.zelle-proof-form .field {
  margin-top: 14px;
}
.zelle-proof-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d8ddd1;
  border-radius: 9px;
  background: #fff;
}
.zelle-proof-form small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.proof-download {
  width: fit-content;
  text-decoration: none;
}
.order-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-size: 12px;
}
.empty-results .outline-button {
  margin: auto;
}
.storefront-root .source-link {
  overflow-wrap: anywhere;
}
.storefront-root .receipt details {
  overflow-wrap: anywhere;
}
.storefront-root.order-confirmation-view {
  min-height: 100dvh;
  background: #f3f5ef;
  padding: 32px 16px;
}
.order-confirmation-view > :not(.order-confirmation-page) {
  display: none !important;
}
.order-confirmation-page {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px #1c26151a;
}
.order-confirmation-page .receipt {
  max-width: 650px;
  margin: 0 auto;
}
#notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--ink);
  color: white;
  border-radius: 12px;
  max-width: 90vw;
  opacity: 0;
  pointer-events: none;
}
#notice.visible {
  opacity: 1;
}
#notice:not(:empty) {
  padding: 14px 20px;
}
#modal {
  width: min(550px, 94vw);
  padding: 28px;
}
#modal input {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 8px 0 18px;
}
#modal .actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
#modal button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
@media (max-width: 650px) {
  .storefront-root.order-confirmation-view {
    padding: 0;
  }
  .order-confirmation-page {
    min-height: 100dvh;
    padding: 24px 18px;
    border: 0;
    border-radius: 0;
  }
  .profile-demo .account-actions {
    justify-content: flex-start;
    gap: 10px;
  }
  .profile-demo {
    gap: 12px;
  }
}
