/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* ══════════════════════════════════════════════════
   VisForge — Global Styles (from Brand Book v1.0)
   ══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=DM+Sans:wght@300;400;500&family=Noto+Sans+SC:wght@200;300;400;500&display=swap');

:root {
  /* Ink - 墨色层级 */
  --ink: #1a1714;
  --ink-soft: #4a453e;
  --ink-mute: #8a847c;
  --ink-ghost: #beb8b0;

  /* Sand - 表面色 */
  --cream: #faf8f5;
  --sand: #f6f3ee;
  --sand-deep: #ece7df;
  --white: #ffffff;

  /* Gold - 品牌金 */
  --gold: #b8986a;
  --gold-light: #d4bc94;
  --gold-dark: #96784e;

  /* Semantic */
  --error: #c45c5c;
  --success: #6a9a6a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Noto Sans SC', 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--sand-deep); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-ghost); }

/* ── Page Enter Animation ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out both;
}

/* Stagger children */
.stagger-children > * {
  animation: fadeIn 0.4s ease-out both;
}
.stagger-children > *:nth-child(1) { animation-delay: 0s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.05s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.15s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.25s; }
.stagger-children > *:nth-child(7) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(8) { animation-delay: 0.35s; }

/*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/components/ui/ConfirmDialog.module.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************/
.ConfirmDialog_backdrop__3jorQ {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.32);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ConfirmDialog_fadeIn__3CJFb .15s ease;
  font-family: 'Noto Sans SC', sans-serif;
}

.ConfirmDialog_card__4HrSV {
  width: min(440px, 92vw);
  background: var(--cream);
  border: 1px solid var(--sand-deep);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(26, 23, 20, 0.14);
  padding: 24px 28px 20px;
  animation: ConfirmDialog_cardIn__6cHdb .2s ease;
}

.ConfirmDialog_icon__I2Cmx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 14px;
}

.ConfirmDialog_iconDefault__vyAn9 {
  background: rgba(184, 152, 106, 0.15);
  color: var(--gold-dark);
}

.ConfirmDialog_iconDanger__v3dj2 {
  background: rgba(196, 92, 92, 0.12);
  color: var(--error);
}

.ConfirmDialog_title__cAKek {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.ConfirmDialog_message__gbDAA {
  margin: 0 0 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  white-space: pre-wrap;
}

.ConfirmDialog_message__gbDAA strong {
  color: var(--ink);
  font-weight: 600;
}

.ConfirmDialog_actions__UANTw {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.ConfirmDialog_btn__S89Ij {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 500;
  transition: background .15s, border-color .15s;
  letter-spacing: 0.5px;
}

.ConfirmDialog_btnCancel__uK_Af {
  background: var(--white);
  border: 1px solid var(--sand-deep);
  color: var(--ink-mute);
}

.ConfirmDialog_btnCancel__uK_Af:hover {
  border-color: var(--ink-ghost);
  color: var(--ink-soft);
}

.ConfirmDialog_btnConfirm__cb8mM {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--white);
  font-weight: 600;
}

.ConfirmDialog_btnConfirm__cb8mM:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.ConfirmDialog_btnDanger__pEg53 {
  background: var(--error);
  border: 1px solid var(--error);
  color: var(--white);
  font-weight: 600;
}

.ConfirmDialog_btnDanger__pEg53:hover {
  background: #a64949;
  border-color: #a64949;
}

@keyframes ConfirmDialog_fadeIn__3CJFb {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ConfirmDialog_cardIn__6cHdb {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

