/* ═══════════════════════════════════════════════
   Ushuru — WNA Quote Generator
   ═══════════════════════════════════════════════ */

:root {
  --red:   #b91c1c;
  --red-d: #991b1b;
  --red-l: #fef2f2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; }

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--red-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(185,28,28,.25);
}

.btn-outline {
  background: #fff;
  color: #374151;
  border: 1.5px solid #d1d5db;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ── Form fields ─────────────────────────────── */
.field-label {
  display: block;
  font-weight: 500;
  color: #374151;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.field-input {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.625rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
  color: #111827;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.field-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(185,28,28,.1);
}
select.field-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25em;
  padding-right: 2.5rem;
}

/* ── Service rows ────────────────────────────── */
.service-row.checked { background: #fef2f2; }
.service-category { transition: box-shadow .2s; }
.service-category.has-selected { border-color: #fca5a5 !important; }

/* ── Step buttons ────────────────────────────── */
.step-btn.done { color: #6b7280; background: #f3f4f6; }

/* ── Quote doc print ─────────────────────────── */
@media print {
  nav, .no-print { display: none !important; }
  body { background: #fff; }
  .quote-doc { box-shadow: none !important; border-radius: 0 !important; border: none !important; }
  #printArea { display: block !important; }
}
