/* =============================================================================
   LOCAL BOSSMAN — Customer style additions
   =============================================================================
   Loaded after style.css. Holds new styles added in Migration 16+ era so we
   don't risk regressions in the main stylesheet.
   ============================================================================= */

/* Collection code (overrides .order-number-card values when both are present) */
.collection-code-card .collection-code-value {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
  margin: 8px 0 4px;
  line-height: 1;
}

/* Customer self-cancel CTA (visible during 60s window after placing order) */
.cancel-cta {
  background: #fff7e0;
  border: 1px solid #f3d56a;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 12px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.cancel-cta-text strong { font-size: 14px; }
.cancel-cta-text p { margin: 2px 0 0; color: #6b4500; }
.cancel-cta #cancel-remaining {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cancel-cta .btn-sm {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: #0E0E0E;
  color: #fff;
}
.cancel-cta .btn-sm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Customer cancel-confirm modal (no native confirm()) */
.lb-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  z-index: 9999;
}
.lb-modal-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.lb-modal-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lb-modal-card p {
  margin: 0;
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.4;
}
.lb-modal-actions {
  display: flex; gap: 8px;
  margin-top: 18px;
}
.lb-modal-btn {
  flex: 1;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.lb-modal-btn-primary    { background: #0E0E0E; color: #ffffff; }
.lb-modal-btn-secondary  { background: #f4f4f4; color: #0E0E0E; }
.lb-modal-btn-danger     { background: #d33c3c; color: #ffffff; }
