:root {
  color-scheme: light;
  --ink: #173f35;
  --ink-deep: #0e2d27;
  --gold: #c9a45d;
  --gold-soft: #ead9ad;
  --paper: #f8f4ea;
  --panel: #fffdf7;
  --text: #24332f;
  --muted: #68736f;
  --line: rgba(23, 63, 53, 0.14);
  --shadow: 0 18px 48px rgba(15, 45, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #f9f5eb 0%, #f3ecdb 100%);
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
}

.confirm-panel {
  position: relative;
  width: min(100%, 430px);
  min-height: min(620px, calc(100vh - 44px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 24px 28px;
  border: 1px solid rgba(201, 164, 93, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 253, 247, 0.96)),
    var(--panel);
  box-shadow: var(--shadow);
}

.confirm-panel::before,
.confirm-panel::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.confirm-panel::before {
  top: 18px;
}

.confirm-panel::after {
  bottom: 18px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border: 1px solid rgba(201, 164, 93, 0.72);
  border-radius: 50%;
  color: var(--gold);
  background: var(--ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.brand-name {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

h1 {
  margin: 0;
  color: var(--ink-deep);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
}

.page-description {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

.option-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 244, 234, 0.76);
}

.option-price {
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.option-label {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.3;
  text-align: right;
}

.confirm-button {
  width: 100%;
  min-height: 52px;
  margin: 26px 0 0;
  border: 0;
  border-radius: 8px;
  color: #fffdf7;
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(23, 63, 53, 0.22);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.confirm-button:active {
  transform: translateY(1px);
  background: var(--ink-deep);
}

.page-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 360px) {
  .page-shell {
    padding: 14px 12px;
  }

  .confirm-panel {
    min-height: calc(100vh - 28px);
    padding: 28px 18px 24px;
  }

  h1 {
    font-size: 25px;
  }

  .option-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .option-label {
    text-align: left;
  }
}
