/* ============================================================
   DEVIS PETIT BAIN — Feuille de styles principale
   Police : Inter (Google Fonts)
   Palette : inspirée Happhapp (noir #0D0D0D, jaune #F5C400, blanc)
   ============================================================ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --color-black:      #0D0D0D;
  --color-white:      #FFFFFF;
  --color-accent:     #F5C400;
  --color-accent-dark:#D4A800;
  --color-bg:         #F7F7F5;
  --color-surface:    #FFFFFF;
  --color-border:     #E5E5E2;
  --color-text:       #1A1A1A;
  --color-text-muted: #6B6B6B;
  --color-sidebar:    #0D0D0D;
  --color-sidebar-text: #FFFFFF;
  --color-sidebar-muted: rgba(255,255,255,0.5);
  --color-sidebar-hover: rgba(255,255,255,0.08);
  --color-sidebar-active: var(--color-accent);

  --color-blue:   #2563EB;
  --color-green:  #16A34A;
  --color-orange: #EA580C;
  --color-red:    #DC2626;
  --color-grey:   #6B7280;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.12);

  --sidebar-width: 230px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body { font-family: var(--font); background: var(--color-bg); color: var(--color-text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
table { border-collapse: collapse; width: 100%; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ── Layout ─────────────────────────────────────────────── */
.app-layout {
  display: flex;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  min-width: 0;
  margin-left: var(--sidebar-width);
}

.main-inner {
  padding: 2rem 2.5rem;
  max-width: 1200px;
}

/* ── Sidebar ────────────────────────────────────────────── */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--color-sidebar);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
}

.sidebar__brand {
  padding: 1.75rem 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar__brand-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.sidebar__brand-accent { color: var(--color-accent); }

.sidebar__venue {
  display: block;
  font-size: 0.72rem;
  color: var(--color-sidebar-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.sidebar__nav {
  flex: 1;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar__nav-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  color: var(--color-sidebar-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.sidebar__nav-item:hover {
  background: var(--color-sidebar-hover);
  color: var(--color-white);
}

.sidebar__nav-item.is-active {
  background: var(--color-accent);
  color: var(--color-black);
}

.sidebar__nav-item.is-active svg { stroke: var(--color-black); }

.sidebar__footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar__user {
  font-size: 0.8rem;
  color: var(--color-sidebar-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar__logout {
  color: var(--color-sidebar-muted);
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
  flex-shrink: 0;
}

.sidebar__logout:hover { color: var(--color-accent); }

/* ── Page header ────────────────────────────────────────── */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
}

.page-header__sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--color-black);
  color: var(--color-white);
}
.btn--primary:hover { background: #2a2a2a; }

.btn--accent {
  background: var(--color-accent);
  color: var(--color-black);
}
.btn--accent:hover { background: var(--color-accent-dark); }

.btn--secondary {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { background: var(--color-bg); }

.btn--danger {
  background: #FEE2E2;
  color: var(--color-red);
  border: 1px solid #FECACA;
}
.btn--danger:hover { background: #FECACA; }

.btn--sm { padding: 0.35rem 0.75rem; font-size: 0.8rem; }
.btn--lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn:disabled, .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.card--flat { box-shadow: none; }

.card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-black);
}

/* ── KPI Stats ──────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.stat-card__label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.stat-card__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1;
}

.stat-card__sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
}

.stat-card--accent { border-top: 3px solid var(--color-accent); }
.stat-card--green  { border-top: 3px solid var(--color-green); }
.stat-card--blue   { border-top: 3px solid var(--color-blue); }
.stat-card--orange { border-top: 3px solid var(--color-orange); }

/* ── Tables ─────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.table {
  width: 100%;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.table th {
  background: #FAFAF8;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
  vertical-align: middle;
}

.table tr:last-child td { border-bottom: none; }

.table tr:hover td { background: #FAFAF8; }

.table .actions {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
}

/* ── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.badge--grey   { background: #F3F4F6; color: var(--color-grey); }
.badge--blue   { background: #DBEAFE; color: var(--color-blue); }
.badge--green  { background: #DCFCE7; color: var(--color-green); }
.badge--orange { background: #FFEDD5; color: var(--color-orange); }
.badge--red    { background: #FEE2E2; color: var(--color-red); }
.badge--yellow { background: #FEF9C3; color: #854D0E; }

/* ── Forms ──────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row--4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.label-muted {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 0.3rem;
}

.input, select.input, textarea.input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.input:focus {
  outline: none;
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(13,13,13,0.08);
}

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

.input--sm { padding: 0.4rem 0.65rem; font-size: 0.8rem; }

.form-hint {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
}

.form-section {
  margin-bottom: 2rem;
}

.form-section__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.25rem;
}

/* ── Alerts ─────────────────────────────────────────────── */
.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  border-left: 3px solid transparent;
}

.alert--success {
  background: #F0FDF4;
  border-color: var(--color-green);
  color: #166534;
}

.alert--error {
  background: #FFF1F2;
  border-color: var(--color-red);
  color: #991B1B;
}

.alert--info {
  background: #EFF6FF;
  border-color: var(--color-blue);
  color: #1E40AF;
}

.alert--warning {
  background: #FFFBEB;
  border-color: var(--color-accent);
  color: #78350F;
}

/* ── Coefficient sliders ────────────────────────────────── */
.coeff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.coeff-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.coeff-item__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.coeff-item__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 0.5rem;
}

.coeff-item input[type=range] {
  width: 100%;
  accent-color: var(--color-black);
}

.remise-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.remise-item .input { width: 80px; text-align: right; }
.remise-item span { font-size: 0.875rem; color: var(--color-text-muted); }

/* ── Product selector ───────────────────────────────────── */
.product-section {
  margin-bottom: 1.5rem;
}

.product-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.product-section__body {
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
}

.product-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
  gap: 0.75rem;
}

.product-line:last-child { border-bottom: none; }

.product-line.is-selected { background: #FEFCE8; }

.product-line__left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.product-line__checkbox {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-black);
  cursor: pointer;
}

.product-line__name {
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-line__price {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.product-line__inputs {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-line__inputs .input {
  width: 70px;
  text-align: center;
}

.product-line__inputs label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin: 0;
  white-space: nowrap;
}

/* ── Totaux devis ───────────────────────────────────────── */
.totaux-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.totaux-table th {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  padding: 0.5rem 0.75rem;
  text-align: right;
  border-bottom: 2px solid var(--color-border);
  background: #FAFAF8;
}

.totaux-table th:first-child { text-align: left; }

.totaux-table td {
  padding: 0.55rem 0.75rem;
  text-align: right;
  border-bottom: 1px solid var(--color-border);
}

.totaux-table td:first-child { text-align: left; font-weight: 500; }

.totaux-table tr:last-child td { border-bottom: none; }

.totaux-table .total-row td {
  font-weight: 700;
  font-size: 1rem;
  background: #FAFAF8;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.totaux-table .zero { color: var(--color-text-muted); }

/* ── Quote document view ────────────────────────────────── */
.quote-doc {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.quote-doc__header {
  background: var(--color-black);
  color: var(--color-white);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.quote-doc__brand { font-size: 1.5rem; font-weight: 800; letter-spacing: 0.04em; }
.quote-doc__brand span { color: var(--color-accent); }
.quote-doc__venue { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.1em; }

.quote-doc__meta { text-align: right; }
.quote-doc__numero { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-family: monospace; }
.quote-doc__date { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 0.3rem; }

.quote-doc__body { padding: 2rem 2.5rem; }

.quote-doc__parties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.quote-doc__party-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.quote-doc__party-name { font-weight: 700; font-size: 1rem; }
.quote-doc__party-addr { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.7; margin-top: 0.3rem; }

.quote-doc__event {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.quote-doc__event-item label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  margin: 0 0 0.2rem;
}

.quote-doc__event-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

.quote-doc__section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-border);
}

.quote-doc__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
}

.quote-doc__grand-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--color-black);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ── Signature zone ─────────────────────────────────────── */
.signature-zone {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  background: #FAFAF8;
}

.signature-zone__title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.signature-zone__confirm {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.signature-zone__confirm input[type=checkbox] {
  width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--color-black);
}

.signature-zone--signed {
  background: #F0FDF4;
  border-color: var(--color-green);
}

/* ── Wizard steps ───────────────────────────────────────── */
.wizard-steps {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.wizard-step {
  flex: 1;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--color-white);
  color: var(--color-text-muted);
  border-right: 1px solid var(--color-border);
  position: relative;
}

.wizard-step:last-child { border-right: none; }

.wizard-step.is-active {
  background: var(--color-black);
  color: var(--color-white);
}

.wizard-step.is-done {
  background: #F0FDF4;
  color: var(--color-green);
}

.wizard-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: currentColor;
  color: var(--color-white);
  font-size: 0.7rem;
  margin-right: 0.4rem;
  font-weight: 700;
}

.wizard-step.is-active .wizard-step__num { background: var(--color-accent); color: var(--color-black); }
.wizard-step.is-done .wizard-step__num { background: var(--color-green); }

/* ── Empty state ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--color-text-muted);
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.empty-state__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

/* ── Login page ─────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
}

.login-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}

.login-card__brand {
  text-align: center;
  margin-bottom: 2rem;
}

.login-card__brand-name {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: block;
}

.login-card__brand-name span { color: var(--color-accent); }

.login-card__venue {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
  display: block;
}

/* ── Utilities ──────────────────────────────────────────── */
.text-right  { text-align: right; }
.text-center { text-align: center; }
.text-muted  { color: var(--color-text-muted); font-size: 0.85rem; }
.text-sm     { font-size: 0.8rem; }
.text-mono   { font-family: monospace; font-size: 0.85rem; }
.text-bold   { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex         { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-gap-1   { display: flex; gap: 0.5rem; align-items: center; }
.flex-gap-2   { display: flex; gap: 1rem; align-items: center; }
.flex-wrap    { flex-wrap: wrap; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .sidebar { display: none; }
  .main-content { margin-left: 0; }
  .main-inner { padding: 1.25rem; }
  .form-row--2, .form-row--3, .form-row--4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .quote-doc__parties { grid-template-columns: 1fr; }
  .wizard-steps { flex-direction: column; }
}

/* ── Print ──────────────────────────────────────────────── */
@media print {
  .sidebar, .btn, .page-header__actions { display: none !important; }
  .main-content { margin-left: 0; }
  .quote-doc { box-shadow: none; border: none; }
}
