:root {
  --brand: #e84d3d;
  --ink: #151922;
  --muted: #667085;
  --page: #f7f8fa;
  --line: #e5e7eb;
}

* { box-sizing: border-box; }

body {
  align-items: center;
  background: var(--page);
  color: var(--ink);
  display: flex;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  padding: 18px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(21, 25, 34, 0.08);
  max-width: 430px;
  padding: 24px;
  text-align: center;
  width: 100%;
}

.logo {
  align-items: center;
  background: color-mix(in srgb, var(--brand) 14%, white);
  border-radius: 8px;
  color: var(--brand);
  display: flex;
  font-size: 28px;
  font-weight: 950;
  height: 72px;
  justify-content: center;
  margin: 0 auto 14px;
  width: 72px;
}

.vendor {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
}

h1 {
  color: var(--brand);
  font-size: 54px;
  margin: 10px 0;
}

.status {
  background: color-mix(in srgb, var(--brand) 12%, white);
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-weight: 900;
  padding: 9px 14px;
}

.message {
  color: var(--muted);
  line-height: 1.45;
}

dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

dl div {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 12px;
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  font-weight: 900;
  margin: 0;
}

.rating {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.rating button {
  background: none;
  border: 0;
  color: #c28a18;
  cursor: pointer;
  font-size: 30px;
}

.rating small {
  color: var(--muted);
  display: block;
  font-weight: 800;
  margin-top: 8px;
}

.hidden { display: none; }
