/* ── Confirm Modal ─────────────────────────────────────────────────────────── */
.cm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(27, 38, 36, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.cm-backdrop.cm-visible {
  opacity: 1;
}
.cm-box {
  background: #fcfaf5;
  border: 1px solid #ddd3c2;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(27, 38, 36, 0.18);
  padding: 28px 28px 22px;
  max-width: 380px;
  width: calc(100% - 40px);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0;
}
.cm-backdrop.cm-visible .cm-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.cm-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #1b2624;
  margin-bottom: 8px;
}
.cm-message {
  font-size: 14px;
  color: #6f6857;
  line-height: 1.5;
  margin-bottom: 22px;
}
.cm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cm-btn-cancel {
  padding: 8px 18px;
  border: 1.5px solid #ddd3c2;
  background: transparent;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #6f6857;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.cm-btn-cancel:hover {
  border-color: #9a8f7e;
  color: #1b2624;
}
.cm-btn-confirm {
  padding: 8px 18px;
  border: none;
  background: #c0392b;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.15s;
}
.cm-btn-confirm:hover {
  background: #a93226;
}