/* cancel.html overrides */
body { min-height: 100vh; }

/* ─── PAGE LAYOUT ─── */
.page-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--red);
}

/* ─── HEADING ─── */
.cancel-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,53,53,.08);
  border: 1.5px solid rgba(201,53,53,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.cancel-icon svg {
  width: 28px;
  height: 28px;
  color: var(--red);
}
.cancel-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.cancel-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-70);
  max-width: 460px;
  margin: 0 auto 40px;
}

/* ─── CANCEL BUTTON ─── */
.cancel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  background: var(--red);
  color: #fff;
  font-family: 'Geist', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  border: none;
  transition: background .25s, transform .25s var(--ease), box-shadow .25s;
  box-shadow: 0 4px 20px rgba(201,53,53,.25);
}
.cancel-btn:hover {
  background: #a82828;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,53,53,.35);
}
.cancel-btn:active {
  transform: translateY(0);
}
.cancel-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ─── STEPS BLOCK ─── */
.steps-wrap {
  width: 100%;
  margin-top: 48px;
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: stepsIn .5s var(--ease) both;
}
.steps-wrap.visible {
  display: flex;
}
@keyframes stepsIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.steps-header {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: 4px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  box-shadow: 0 2px 12px var(--ink-08);
  animation: stepsIn .5s var(--ease) both;
}
.step-card:nth-child(2) { animation-delay: .08s; }
.step-card:nth-child(3) { animation-delay: .16s; }
.step-card:nth-child(4) { animation-delay: .24s; }

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,53,53,.08);
  border: 1.5px solid rgba(201,53,53,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Geist', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -.02em;
}
.step-body { flex: 1; }
.step-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1.3;
}
.step-desc {
  font-size: .84rem;
  line-height: 1.65;
  color: var(--ink-70);
}
.step-desc a {
  color: var(--red);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.step-desc a:hover {
  color: #a82828;
}

/* ─── CONFIRMATION NOTE ─── */
.confirm-note {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(26,122,74,.06);
  border: 1px solid rgba(26,122,74,.18);
  border-radius: var(--r);
  font-size: .82rem;
  line-height: 1.6;
  color: #1A7A4A;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  animation: stepsIn .5s .32s var(--ease) both;
}
.confirm-note svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ─── STORE BUTTONS ─── */
.store-section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: center;
}
.store-section-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: 16px;
}
.store-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: nowrap;
}
.store-btns a {
  display: inline-block;
  transition: transform .25s var(--ease), opacity .2s;
}
.store-btns a img {
  display: block;
  height: 46px;
  width: auto;
}
.store-btns a:hover {
  transform: translateY(-2px);
  opacity: .85;
}

/* ─── MOBILE ─── */
@media (max-width: 600px) {
  .page-wrap { padding: 96px 20px 60px; }
  .step-card { padding: 18px 20px; }
  .store-btns img { height: 38px; }
}
