.checkout-details {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid #dce5dc;
}

.checkout-details h3 { margin: 0 0 2px; font-size: 14px; }
.checkout-details label { display: grid; gap: 4px; color: #26362b; font-size: 11px; font-weight: 800; }
.checkout-details input {
  width: 100%;
  min-height: 41px;
  border: 1px solid #d0d9d1;
  border-radius: 9px;
  padding: 8px 10px;
  background: #fff;
  color: #18251c;
}
.checkout-details input:focus { outline: 3px solid rgba(74,145,89,.18); border-color: #5a9867; }

.payment-readiness { display: none; }
.payment-readiness.ok { background: #e8f5ed; color: #14643b; }
.payment-readiness.warning { background: #fff2d7; color: #78520b; }
.required-note { margin: -2px 0 0; color: #66746b; font-size: 10px; }
.checkout-details label b { color: #a1452f; }

.order-status-panel {
  margin: 14px 0 20px;
  border: 1px solid #ead59b;
  border-left: 5px solid #d19b2a;
  border-radius: 14px;
  padding: 15px 17px;
  background: #fffaf0;
}
.order-status-panel.paid { border-color: #bcdcc7; border-left-color: #16884b; background: #effaf3; }
.order-status-panel h2, .order-status-panel p { margin: 3px 0; }
.order-status-panel h2 { font-size: 20px; }
.order-action, .order-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 11px 6px 0 0;
  border: 0;
  border-radius: 9px;
  padding: 8px 12px;
  background: #123d2d;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.order-refresh { background: #fff; color: #196f43; box-shadow: inset 0 0 0 1px #196f43; }
.order-refresh:disabled { opacity: .55; cursor: wait; }

@media (max-width: 640px) {
  .order-status-panel { margin-top: 10px; padding: 13px; }
  .order-action, .order-refresh { width: 100%; margin-right: 0; }
}
