:root {
  --bg: #faf7f2;
  --fg: #2a1a0a;
  --accent: #9c6f3a;
  --border: rgba(90, 60, 30, 0.15);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
}

.wholesale-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  background: white;
  border-bottom: 1px solid var(--border);
}

.wholesale-header .logo {
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
}

.wholesale-main {
  max-width: 720px;
  margin: 48px auto;
  padding: 0 24px;
}

.wholesale-footer {
  text-align: center;
  padding: 32px;
  color: rgba(42, 26, 10, 0.5);
  font-size: 13px;
}

.flash {
  padding: 12px 16px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.flash-success { background: #e8f5e9; color: #2e7d32; }
.flash-error { background: #ffebee; color: #c62828; }
.flash-info { background: #e3f2fd; color: #1565c0; }

form label {
  display: block;
  margin-top: 16px;
  font-weight: 500;
  font-size: 14px;
}

form input, form select, form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}

form textarea { min-height: 80px; resize: vertical; }

form button {
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

form button:hover:not(:disabled) { background: #3d2010; }
form button:disabled { opacity: 0.5; cursor: not-allowed; }

.checklist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  background: white;
}

.checklist-item .status {
  font-size: 24px;
  flex-shrink: 0;
}

.checklist-item .body {
  flex: 1;
}

.checklist-item .body h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.checklist-item .body p {
  margin: 0;
  color: rgba(42, 26, 10, 0.6);
  font-size: 13px;
}
