:root {
  color-scheme: light;
  font-family: Georgia, "Times New Roman", serif;
  background: #f5f0e6;
  color: #19312c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-block-size: 100vh;
  display: grid;
  place-items: center;
  background-image: radial-gradient(#d7b66b 1px, transparent 1px);
  background-size: 18px 18px;
}

.checkout-shell {
  inline-size: min(92vw, 32rem);
  padding: 2.5rem;
  border: 1px solid #19312c;
  border-radius: 8px;
  background: #fffcf6;
  box-shadow: 8px 8px 0 #19312c;
}

.brand {
  margin: 0 0 1.5rem;
  color: #aa3c20;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
}

.status {
  margin: 1rem 0 0;
  color: #46625b;
  font-family: "Trebuchet MS", sans-serif;
  line-height: 1.5;
}

.status[data-state="error"] {
  color: #a82618;
}