/* Wholesale page — shared design tokens from dashboard.css */

:root {
  --ink:    #1a1218;
  --cream:  #fdf8f4;
  --blush:  #f5e6d8;
  --coral:  #e8845c;
  --plum:   #6b3a5d;
  --sage:   #8fa68a;
  --gold:   #d4a853;
  --white:  #ffffff;
  --muted:  #9a8a9a;
  --border: #f0e4da;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; }

/* Nav */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--plum);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--coral); }
.nav-links { display: flex; gap: 8px; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-link:hover { background: var(--blush); }

/* Page */
.page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 48px 96px;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 56px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--blush);
  color: var(--plum);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}
.badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.badge-icon.coral { background: #fde8d8; }
.badge-icon.sage  { background: #d9e6d2; }
.badge-icon.gold  { background: #f5e7c0; }
.badge-icon.plum  { background: #e8d4e2; }

/* Two-column layout */
.layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

/* Audience card */
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.audience-card h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--ink);
}
.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audience-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--ink);
}
.audience-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.audience-item span { font-weight: 500; }
.audience-item small {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-left: 4px;
}
.why-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.why-section h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.why-item {
  background: var(--cream);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.8125rem;
  color: var(--ink);
}
.why-item strong { font-weight: 600; }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.form-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.form-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Form elements */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.field label .req { color: var(--coral); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 132, 92, 0.12);
}
.field textarea { resize: vertical; min-height: 96px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Submit */
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--coral);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 6px;
}
.btn-submit:hover  { background: #d96e45; }
.btn-submit:active { transform: scale(0.99); }

/* Error */
.form-error {
  background: #fde8e8;
  border: 1px solid #f5c0c0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #b33a3a;
  margin-bottom: 20px;
}

/* Success state */
.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 36px;
  text-align: center;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: #d9e6d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
}
.success-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 12px;
}
.success-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}
.back-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--coral);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.875rem;
}
.back-link:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 800px) {
  .page { padding: 36px 24px 64px; }
  .layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
}