.site-main {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: var(--site-header-sticky-height, 75px);
  flex: 1 0 auto;
}

.draw-sticky-wrapper + .site-main {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  padding-top: calc(var(--site-header-sticky-height, 75px) + var(--draw-result-sticky-height, 104px));
}

.review-panel {
  background: var(--color-paper);
  border: 2px solid var(--color-line);
  border-radius: var(--radius-small);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--color-gold-700);
  font-weight: 800;
}

.review-panel h1 {
  margin: 0 0 10px;
  color: var(--color-red-800);
  font-size: 30px;
  line-height: 1.2;
}

.review-panel__lead {
  margin: 0 0 18px;
  color: var(--color-muted);
  line-height: 1.8;
}

.status-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-small);
  padding: 18px;
}

.status-card h2 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--color-red-800);
}

.status-list,
.notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.status-list li,
.notice-list li {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #f0d095;
  background: #fff8ea;
  border-radius: var(--radius-small);
}

.status-list strong {
  color: #13823b;
}

.status-list em {
  color: var(--color-red-800);
  font-style: normal;
  font-weight: 700;
}

.notice-list {
  grid-template-columns: 1fr;
}

.notice-list li {
  justify-content: flex-start;
  border-left: 5px solid var(--color-red-800);
}

.customer-note {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-weight: 700;
}

.site-footer {
  margin: 0;
  padding: 18px 0 20px;
  background: #3a180e;
  color: #fff1c1;
  flex-shrink: 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.site-footer__mobile {
  display: none;
}

.site-footer h2 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #ffe59c;
}

.site-footer p {
  margin: 4px 0;
  line-height: 1.55;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 14px;
  background: #3a180e;
  color: #fff5d6;
  border: 2px solid var(--color-gold-500);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}

.toast[hidden] {
  display: none;
}

.toast button {
  border: 0;
  border-radius: var(--radius-small);
  padding: 6px 10px;
  background: var(--color-gold-500);
  color: #2a1710;
  font-weight: 800;
}

@media (max-width: 900px) {
  .draw-sticky-wrapper + .site-main {
    padding-top: calc(var(--site-header-sticky-height, 56px) + var(--draw-result-sticky-height, 96px));
  }
}
