* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(160deg, #98c9a3 0%, #f8f9fa 45%);
  min-height: 100vh;
  color: #2c3e50;
}
.wrap {
  max-width: 420px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}
.brand-logo {
  display: block;
  width: min(200px, 58vw);
  height: auto;
  margin: 0 auto 20px;
}
.logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a7a62;
  margin-bottom: 16px;
}
.panel { text-align: left; }
h1 { font-size: 26px; margin: 0 0 8px; }
.sub { color: #5d6d7e; margin-bottom: 20px; line-height: 1.5; }
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(44, 62, 80, 0.15);
  border-top-color: #2c3e50;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
  margin-bottom: 16px;
}
.business-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 12px;
  background: #fff;
}
.order-label { font-size: 13px; color: #7f8c8d; }
.order-num { font-size: 22px; font-weight: 700; margin-top: 4px; }
.btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.btn-app { background: #2c3e50; color: #fff; }
.btn-wa { background: #25d366; color: #fff; }
.btn-store { background: #fff; color: #2c3e50; border: 1px solid #dce3ea; }
.hint { font-size: 13px; color: #7f8c8d; line-height: 1.5; }
.hint.warn { color: #c0392b; margin-bottom: 12px; }
