/* ── Clearance Offer — 清倉折扣 ────────────────────────────────────────────── */

/* Create Dialog */
.cl-create-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 340px;
}

.cl-create-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 8px;
}

.cl-create-row .lab {
  font: 500 13px var(--font-sans);
  color: var(--fg-2);
  padding-top: 0;
}

.cl-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--gray-50);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-sm);
  font: 400 13px var(--font-sans);
  color: var(--fg-2);
}

.cl-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--brand-primary);
  border-radius: 50%;
  animation: cl-spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes cl-spin {
  to { transform: rotate(360deg); }
}

.cl-error-block {
  background: #FFF8E1;
  border: 1px solid #F9A825;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 13px;
  color: #5D4037;
  line-height: 1.5;
}

.cl-error-block strong {
  display: block;
  margin-bottom: 4px;
  color: #E65100;
}

