body,button,input,select,textarea{font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif}





:root {
  --ink: #111111;
  --muted: #5c564c;
  --line: #ddd4c6;
  --bg: #f7f4ef;
  --paper: #ffffff;
  --brand: #3d4a38;
  --yellow: #fff4c2;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 1.55;
}

.page {
  min-height: 100vh;
  padding: 28px 20px 64px;
}
.wrap {
  width: min(40rem, 100%);
  margin: 0 auto;
}

.store {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  text-decoration: none;
  color: var(--iink);
}
.mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--brand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.store-name {
  font-family: "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}


h1 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  font-weight: 650;
}

.meta { color: var(--muted); margin: 0 0 20px; font-size: 18px; }

.timer {
  margin: 0 0 4px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 650;
}
.until { color: var(--muted); margin: 0 0 28px; font-size: 16px; }

h2 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 650;
}

.block { margin-bottom: 28px; }
.items { list-style: none; padding: 0; margin: 0; }
.items li { padding: 2px 0; }

.field { margin: 0 0 14px; }
.field label {
  display: block;
  font-size: 16px;
  font-weight: 550;
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  height: 56px;
  border: 2px solid #111;
  border-radius: 0;
  padding: 0 14px;
  font: 400 18px/1 Inter, sans-serif;
  background: #fff;
  color: var(--ink);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn {
  display: block;
  width: 100%;
  height: 56px;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 0;
  font: 550 18px/1 Inter, sans-serif;
  text-align: center;
  text-decoration: none;
  display: grid;
  place-items: center;
  cursor: default;
}
.link {
  display: block;
  text-align: center;
  color: #111;
  margin-top: 14px;
  font-size: 18px;
}
.note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 10px 0 0;
}

hr.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 8px 0 28px;
}

.cancel {
  padding: 0;
}
.cancel p { margin: 0 0 10px; }

.locked {
  border: 2px solid #111;
  padding: 16px;
  margin: 0 0 28px;
}
.locked p { margin: 0; }

footer {
  margin-top: 40px;
  color: var(--muted);
  font-size: 16px;
}
footer .ord { font-size: 14px; margin-top: 8px; }

@media (max-width: 600px) {
  .grid-2 { grid-template-columns: 1fr; }
  h1 { font-size: 28px; }
  .timer { font-size: 24px; }
}
