:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #32343e;
  background: #fff7f1;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at top, #ffe8d6, #fff7f1 46%, #ffffff);
}

.card {
  width: min(100%, 460px);
  padding: 36px 28px;
  border: 1px solid #f3ded0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(74, 42, 20, 0.12);
  text-align: center;
}

.logo { width: 76px; height: 76px; border-radius: 20px; object-fit: cover; }
.eyebrow { margin: 18px 0 6px; color: #ff7622; font-size: 12px; font-weight: 800; letter-spacing: 1.2px; }
h1 { margin: 0; color: #181c2e; font-size: 30px; }
.description { margin: 10px auto 24px; line-height: 1.5; color: #60646f; }

.referral {
  margin: 0 0 22px;
  padding: 20px;
  border-radius: 18px;
  background: #fff4ec;
  border: 1px solid #ffd9be;
}

.label { display: block; margin-bottom: 8px; color: #7a6454; font-size: 11px; font-weight: 800; letter-spacing: 1px; }
.code { display: block; margin-bottom: 14px; color: #181c2e; font-size: 28px; letter-spacing: 2px; overflow-wrap: anywhere; }
.status { margin: 12px 0 0; font-size: 13px; color: #60646f; }
.status.error { color: #b42318; }
.status.success { color: #287a21; }

button, .primary {
  min-height: 48px;
  border-radius: 12px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.primary {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 12px 18px;
  color: #fff;
  background: #ff7622;
  text-decoration: none;
}

.secondary { width: 100%; border: 1px solid #ff7622; color: #d95c0f; background: #fff; }
.secondary:disabled { cursor: not-allowed; opacity: 0.45; }
.hint { margin: 14px 0 0; color: #7a7e87; font-size: 12px; line-height: 1.45; }

@media (max-width: 420px) {
  body { padding: 14px; }
  .card { padding: 30px 20px; border-radius: 22px; }
}

.meal-card { width: min(100%, 540px); }
.meal-photo {
  width: 100%;
  height: 220px;
  margin: 22px 0 0;
  border-radius: 18px;
  object-fit: cover;
  background: #f4f4f4;
}
.meal-facts {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  text-align: left;
}
.meal-facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 12px;
  background: #fff7f1;
}
.meal-facts dt { color: #7a6454; font-size: 12px; font-weight: 800; }
.meal-facts dd { margin: 0; color: #181c2e; font-size: 14px; font-weight: 650; }
.link-button {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  padding: 12px 18px;
  text-decoration: none;
}