/* ============================================================
   B&B Pressure Clean — Brand-Matched Design System
   Primary:  #0072BC  (cobalt blue — B&B wordmark)
   Accent:   #29ABE2  (sky blue  — "Pressure Clean" text)
   Fonts:    Nunito · DM Sans · IBM Plex Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=IBM+Plex+Mono:wght@400;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
    --blue:          #0277bd;
    --blue-dark:     #015fa0;
    --blue-deeper:   #013f6b;
    --sky:           #4fc3f7;
    --sky-dark:      #0ea5d4;
    --sky-light:     #e1f5fe;
    --sky-faint:     #f0faff;

    --bg-page:       #f4f8fb;
    --bg-card:       #ffffff;
    --bg-card-alt:   #fafcfe;
    --bg-inset:      #eef5fa;
    --bg-nav:        #ffffff;

    --ink:           #0d1f2d;
    --ink-mid:       #2d4558;
    --ink-muted:     #5a7a93;
    --ink-faint:     #8eaabb;

    --border:        #d6e8f2;
    --border-strong: #aacde0;

    --success:       #0a7a4a;
    --success-bg:    #d1fae5;
    --warning:       #92400e;
    --warning-bg:    #fef3c7;
    --danger:        #b91c1c;
    --danger-bg:     #fee2e2;
    --info:          var(--blue);
    --info-bg:       var(--sky-light);

    --radius-sm:     5px;
    --radius:        10px;
    --radius-lg:     14px;

    --shadow-sm:     0 1px 4px rgba(0,114,188,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow:        0 4px 18px rgba(0,114,188,0.12), 0 2px 6px rgba(0,0,0,0.06);
    --shadow-lg:     0 12px 40px rgba(0,114,188,0.18), 0 4px 12px rgba(0,0,0,0.08);

    --font-display:  'Nunito', system-ui, sans-serif;
    --font-body:     'DM Sans', system-ui, sans-serif;
    --font-mono:     'IBM Plex Mono', 'Courier New', monospace;
}

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

/* ── Base ── */
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--bg-page);
    color: var(--ink);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Navigation ── */
.navbar {
    background: var(--bg-nav);
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-brand a:hover { opacity: 0.85; }

.nav-logo {
    height: 44px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.2rem;
}

.nav-links a {
    color: var(--ink-muted);
    text-decoration: none;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.18s, background 0.18s;
}

.nav-links a:hover {
    color: var(--blue);
    background: var(--sky-light);
}

.nav-links a.active {
    color: var(--blue);
    background: var(--sky-light);
    font-weight: 600;
}

.nav-logout {
    color: var(--ink-muted);
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1.5px solid var(--border-strong);
    transition: color 0.18s, background 0.18s, border-color 0.18s;
    white-space: nowrap;
}

.nav-logout:hover {
    color: var(--danger);
    border-color: var(--danger);
    background: var(--danger-bg);
}

/* ── Login Page ── */
.login-body {
    background: var(--bg-page);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.login-wrap {
    width: 100%;
    max-width: 420px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.login-card {
    width: 100%;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem 2.25rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-logo {
    display: flex;
    justify-content: center;
}

.login-logo img {
    height: 52px;
    width: auto;
}

.login-heading {
    text-align: center;
}

.login-heading h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.login-heading p {
    font-size: 0.9rem;
    color: var(--ink-muted);
}

.login-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid #fca5a5;
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.9rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.login-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-mid);
}

.login-field input {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--bg-card);
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.85rem;
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
    width: 100%;
}

.login-field input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(2, 119, 189, 0.12);
}

.login-field input::placeholder {
    color: var(--ink-faint);
}

.login-btn {
    margin-top: 0.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--blue);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.18s, transform 0.1s;
    width: 100%;
}

.login-btn:hover {
    background: var(--blue-dark);
}

.login-btn:active {
    transform: scale(0.99);
}

.login-footer {
    font-size: 0.78rem;
    color: var(--ink-faint);
    text-align: center;
}

/* ── Container ── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
    flex: 1;
}

/* ── Page Header ── */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--border);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.02em;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.575rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    box-shadow: 0 4px 14px rgba(0,114,188,0.35);
    transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    background: white;
    color: var(--blue);
    border-color: var(--border-strong);
}

.btn-secondary:hover {
    background: var(--sky-faint);
    border-color: var(--sky);
    color: var(--blue-dark);
}

.btn-danger {
    background: var(--danger);
    color: white;
    border-color: var(--danger);
}

.btn-danger:hover {
    background: #991b1b;
    border-color: #991b1b;
    box-shadow: 0 4px 14px rgba(185,28,28,0.3);
}

.btn-small {
    padding: 0.35rem 0.8rem;
    font-size: 0.8rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--sky-dark);
    padding: 0.4rem 0.6rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-transform: none;
    letter-spacing: 0;
}

.btn-link:hover { color: var(--blue); }

/* ── Cards / Form Sections ── */
.form-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-top: 3px solid var(--sky);
}

.form-section h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border);
    color: var(--blue);
}

/* ── Form Layout ── */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.625rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    background: var(--bg-card);
    color: var(--ink);
    transition: border-color 0.18s, box-shadow 0.18s;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--border-strong);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(41,171,226,0.18);
}

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

.form-help {
    font-size: 0.8125rem;
    color: var(--ink-faint);
    margin: 0 0 0.75rem 0;
}

.radio-group { display: flex; gap: 1.5rem; }

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

/* ── Services Section ── */
.services-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.services-section .section-header h2 {
    margin: 0;
    padding: 0;
    border: none;
}

.service-row {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--sky);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 0.875rem;
    transition: box-shadow 0.2s, border-left-color 0.2s;
}

.service-row:hover {
    box-shadow: var(--shadow);
    border-left-color: var(--blue);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--blue);
    margin: 0;
}

.service-actions { display: flex; gap: 0.5rem; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

/* ── Price Adjustment ── */
.price-adjustment {
    background: var(--bg-inset);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 1rem;
    margin-bottom: 1rem;
}

.price-range-info {
    font-size: 0.875rem;
    color: var(--ink-muted);
    margin-bottom: 0.75rem;
}

.price-slider-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-slider-group label { min-width: 120px; font-weight: 500; }

.price-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    background: var(--border);
    border-radius: 3px;
    outline: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--blue);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,114,188,0.3);
}

.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--blue);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,114,188,0.3);
}

.price-manual-entry {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border);
}

.price-manual-entry label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
}

.price-input {
    width: 130px;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: right;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
}

.current-price {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--blue);
}

/* ── Difficulty ── */
.difficulty-section { margin-bottom: 1rem; }

.difficulty-section > label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--ink-muted);
}

.difficulty-options { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--blue);
    cursor: pointer;
}

/* ── Add-ons ── */
.addons-section { margin-bottom: 1rem; }

.addons-section > label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--ink-muted);
}

.addons-list { display: flex; flex-direction: column; gap: 0.5rem; }

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: var(--bg-inset);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.addon-price-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--ink-muted);
}

.addon-price {
    width: 80px;
    padding: 0.35rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: right;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

/* ── Line Total ── */
.line-total-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.line-total-label {
    font-weight: 500;
    color: var(--ink-muted);
    font-size: 0.875rem;
}

.line-total-value {
    font-family: var(--font-mono);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--blue);
}

.unit-label {
    font-weight: 400;
    color: var(--ink-muted);
    font-family: var(--font-body);
    font-size: 0.875rem;
}

/* ── Quote Summary Panel ── */
.quote-summary {
    background: linear-gradient(145deg, var(--blue-deeper) 0%, var(--blue) 60%, var(--blue-dark) 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.quote-summary::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(41,171,226,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.quote-summary::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.quote-summary h2 {
    color: white;
    border-color: rgba(255,255,255,0.2);
    font-family: var(--font-display);
    font-weight: 900;
}

.summary-grid {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.summary-label {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
}

.summary-value {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.9375rem;
}

.total-row {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.total-row .summary-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.total-row .summary-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
}

.summary-value.discount { color: #6ee7b7; }

/* ── Data Tables ── */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.data-table th {
    background: var(--blue);
    color: rgba(255,255,255,0.9);
    padding: 0.875rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

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

.data-table td a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

.data-table td a:hover {
    color: var(--sky-dark);
    text-decoration: underline;
}

.data-table td strong { color: var(--ink); }

.data-table tbody tr { transition: background 0.15s; }

.data-table tbody tr:hover { background: var(--sky-faint); }

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

.text-right { text-align: right; }

.actions-cell { display: flex; gap: 0.4rem; flex-wrap: wrap; }

/* ── Status Badges ── */
.status-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.status-draft     { background: #e5e7eb; color: #374151; }
.status-sent      { background: var(--sky-light); color: var(--blue-dark); }
.status-accepted  { background: #d1fae5; color: #065f46; }
.status-scheduled { background: var(--warning-bg); color: var(--warning); }
.status-declined  { background: #fee2e2; color: #7f1d1d; }
.status-completed { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }

/* ── Inline Status Dropdown ── */
.status-inline-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 0.3rem 1.75rem 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='currentColor' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.status-inline-select:focus { outline: 2px solid var(--sky); outline-offset: 1px; }

.status-inline-select.status-draft     { background-color: #e5e7eb; color: #374151; }
.status-inline-select.status-sent      { background-color: var(--sky-light); color: var(--blue-dark); }
.status-inline-select.status-accepted  { background-color: #d1fae5; color: #065f46; }
.status-inline-select.status-scheduled { background-color: var(--warning-bg); color: var(--warning); }
.status-inline-select.status-declined  { background-color: #fee2e2; color: #7f1d1d; }
.status-inline-select.status-completed { background-color: #d1fae5; color: #065f46; }

/* ── Completed Revenue Stat ── */
.stat-completed .stat-value { color: var(--success); }

/* ── Generic Badges ── */
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.badge-warning { background: var(--warning-bg); color: var(--warning); }

/* ── Internal Notes ── */
.internal-notes-section {
    background: #fffbeb;
    border: 1px dashed #f59e0b;
    border-radius: var(--radius);
    padding: 1rem;
}

.internal-notes-section h3 { color: var(--warning); }

/* ── Filters Bar ── */
.filters-bar {
    background: var(--bg-card);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.filter-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group input,
.filter-group select {
    padding: 0.5rem 0.75rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    min-width: 200px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--ink);
    background: var(--bg-card);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(41,171,226,0.18);
}

/* ── Stats Bar ── */
.stats-bar {
    display: flex;
    gap: 0;
    margin-top: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem;
    flex: 1;
    border-right: 1px solid var(--border);
    position: relative;
}

.stat:last-child { border-right: none; }

.stat::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--sky);
    transition: width 0.3s ease;
}

.stat:hover::after { width: 100%; }

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--blue);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-faint);
    margin-top: 0.25rem;
}

/* ── Empty State ── */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    border-top: 4px solid var(--sky);
}

.empty-state h2 {
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--blue);
}

.empty-state p {
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

/* ── Quote View ── */
.quote-view {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.quote-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.75rem;
    border-bottom: 3px solid var(--blue);
    margin-bottom: 2rem;
}

.company-info h2 {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.company-info p {
    color: var(--ink-muted);
    font-size: 0.875rem;
    line-height: 1.8;
}

.quote-meta { text-align: right; }

.quote-meta p {
    font-size: 0.875rem;
    line-height: 1.9;
    color: var(--ink-mid);
}

.quote-meta strong {
    font-weight: 600;
    color: var(--ink-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.section { margin-bottom: 2rem; }

.section h3 {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sky-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-grid > div {
    font-size: 0.9375rem;
    line-height: 2;
    color: var(--ink-mid);
}

.info-grid strong { color: var(--ink); }

/* ── Quote Totals ── */
.quote-totals {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--sky-faint);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--ink-mid);
}

.total-row span:last-child {
    font-family: var(--font-mono);
    font-weight: 500;
}

.total-final {
    font-size: 1.125rem;
    font-weight: 700;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--blue);
    color: var(--ink);
}

.total-final span:last-child {
    font-family: var(--font-mono);
    font-size: 1.625rem;
    color: var(--blue);
}

.notes-text {
    background: var(--bg-inset);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    white-space: pre-wrap;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.status-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.status-section h3 {
    font-size: 0.72rem;
    color: var(--sky-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.status-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.status-form select {
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    background: var(--bg-card);
    color: var(--ink);
}

.status-form select:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(41,171,226,0.18);
}

.quote-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ── Service Detail ── */
.service-detail { font-size: 0.8125rem; color: var(--ink-muted); }

.addon-list { margin-top: 0.25rem; padding-left: 1rem; }

.addon-list li { font-size: 0.8125rem; color: var(--ink-muted); }

/* ── Discount Section ── */
.discount-section { margin-top: 1rem; }

.discount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.discount-options .radio-label {
    padding: 0.45rem 0.9rem;
    background: var(--bg-inset);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    font-size: 0.875rem;
    transition: all 0.18s;
}

.discount-options .radio-label:hover {
    border-color: var(--sky);
    background: var(--sky-light);
    color: var(--blue-dark);
}

.custom-discount-group {
    padding: 1rem;
    background: var(--bg-inset);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-top: 0.5rem;
}

.custom-discount-group .form-row { display: flex; gap: 1rem; }
.custom-discount-group .form-group { flex: 1; }

.custom-discount-group select,
.custom-discount-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
}

/* ── Price Adjustment in Quote Summary ── */
.price-adjustment-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.price-adjustment-section h3 {
    color: var(--sky);
    font-size: 0.875rem;
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-adjustment-section .form-help {
    color: rgba(255,255,255,0.5);
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
}

.price-adjustment-section .form-group label { color: rgba(255,255,255,0.6); }

.price-adjustment-section input {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 1rem;
    width: 150px;
}

.price-adjustment-section input:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(41,171,226,0.25);
}

.price-adjustment-section input::placeholder { color: rgba(255,255,255,0.3); }

/* ── Bundle Info ── */
.bundle-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    border-radius: var(--radius-sm);
    color: white;
    margin-top: 1rem;
}

.bundle-badge { font-size: 1rem; }
.bundle-badge strong { font-size: 1.25rem; font-family: var(--font-mono); }
.bundle-hint { font-size: 0.875rem; opacity: 0.9; }

/* ── Travel Info ── */
.travel-info {
    background: var(--bg-inset);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-top: 1rem;
}

.travel-info p { margin: 0.25rem 0; font-size: 0.9rem; color: var(--ink-mid); }

/* ── Service Pricing Editor ── */
.services-edit-container { display: flex; flex-direction: column; gap: 0.625rem; }

.service-edit-card {
    background: var(--bg-inset);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.service-edit-card[open] {
    background: var(--bg-card);
    border-color: var(--sky);
}

.service-edit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.service-edit-header::-webkit-details-marker { display: none; }

.service-edit-header::before {
    content: '▶';
    font-size: 0.65rem;
    margin-right: 0.75rem;
    transition: transform 0.2s;
    color: var(--ink-faint);
}

.service-edit-card[open] .service-edit-header::before {
    transform: rotate(90deg);
    color: var(--sky);
}

.service-edit-header:hover { background: rgba(41,171,226,0.05); }

.service-name { font-weight: 600; color: var(--blue); }

.service-min-preview {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--ink-muted);
}

.service-edit-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
}

.service-minimum-group { margin: 1rem 0; max-width: 200px; }

.tier-story-group {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
}

.tier-story-group:first-of-type { border-top: none; padding-top: 0; }

.story-header {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sky-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tier-edit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.tier-label { flex: 1; min-width: 180px; font-size: 0.875rem; color: var(--ink-mid); }

.tier-inputs { display: flex; gap: 0.75rem; }

.tier-input-group { display: flex; flex-direction: column; gap: 0.25rem; }

.tier-input-group label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tier-price-input {
    width: 80px;
    padding: 0.5rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: right;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    background: var(--bg-card);
}

.tier-price-input:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 2px rgba(41,171,226,0.18);
}

.tier-price-input.validation-error { border-color: var(--danger); background: #fef2f2; }

.addons-edit-group {
    background: var(--bg-inset);
    margin: 1rem -1.25rem -1.25rem -1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 0 0 var(--radius) var(--radius);
}

.addons-edit-group .story-header { color: var(--ink-muted); }

/* ── Other / Custom Service ── */
.other-service-section {
    background: var(--bg-inset);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 1rem;
    margin-bottom: 1rem;
}

.other-service-section .form-row { display: flex; gap: 1rem; align-items: end; }

.other-service-section input[type="text"],
.other-service-section input[type="number"] {
    padding: 0.625rem 0.75rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    width: 100%;
}

.other-service-section input[type="number"] { font-family: var(--font-mono); font-weight: 600; }

/* ── Customer Autocomplete ── */
.autocomplete-wrapper { position: relative; }
.autocomplete-wrapper input { width: 100%; }

.autocomplete-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1.5px solid var(--sky);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    max-height: 280px;
    overflow-y: auto;
}

.autocomplete-item {
    padding: 0.75rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background 0.12s;
}

.autocomplete-item:last-child { border-bottom: none; }

.autocomplete-item:hover,
.autocomplete-item.selected { background: var(--sky-light); }

.autocomplete-item-name { font-weight: 600; color: var(--blue); font-size: 0.9rem; }

.autocomplete-item-detail { font-size: 0.8rem; color: var(--ink-muted); margin-top: 0.125rem; }

/* ── Input Prefix ── */
.input-prefix { display: flex; align-items: center; }

.input-prefix span {
    padding: 0.625rem 0.75rem;
    background: var(--bg-inset);
    border: 1.5px solid var(--border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--ink-muted);
    font-family: var(--font-mono);
}

.input-prefix input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; flex: 1; }

/* ── Alerts ── */
.alert {
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    border-left: 4px solid;
}

.alert-success { background: var(--success-bg); color: #065f46; border-color: var(--success); }
.alert-error   { background: var(--danger-bg);  color: #7f1d1d; border-color: var(--danger); }
.alert-info    { background: var(--sky-light);   color: var(--blue-dark); border-color: var(--sky); }

/* ── Pricing Admin ── */
.pricing-form .form-section { margin-bottom: 2rem; }

.service-pricing-card {
    background: var(--bg-inset);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.service-pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--blue);
}

.multipliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.multiplier-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-muted);
    margin-bottom: 0.5rem;
}

.multiplier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.multiplier-row span { font-size: 0.875rem; color: var(--ink-mid); }

.multiplier-row input {
    width: 80px;
    padding: 0.375rem 0.5rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: right;
    font-family: var(--font-mono);
}

/* ── Stories Group ── */
.stories-group { min-width: 100px; }

/* ── Footer ── */
.footer {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    color: var(--ink-faint);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-top: 2px solid var(--border);
}

/* ── Scheduling Styles ── */
.scheduling-section {
    background: var(--sky-faint);
    border: 1px solid var(--border);
    border-left: 4px solid var(--sky);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.scheduling-section h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    padding: 0;
}

.scheduling-form .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.scheduling-form .form-group { flex: 1; min-width: 150px; }

.duration-inputs { display: flex; align-items: center; gap: 0.5rem; }

.scheduled-details {
    background: #f0fdf4;
    border-color: #86efac;
    border-left-color: var(--success);
}

.scheduled-details h3 { color: #166534; }

.scheduled-info { margin-bottom: 1rem; }

.scheduled-row {
    display: flex;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.scheduled-row .label {
    width: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
}

.scheduled-row .value { flex: 1; color: var(--ink-mid); }

.scheduled-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.schedule-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    border-left: 3px solid;
}

.schedule-message.success { background: var(--success-bg); color: #065f46; border-color: var(--success); }
.schedule-message.error   { background: var(--danger-bg);  color: #7f1d1d; border-color: var(--danger); }
.schedule-message.loading { background: var(--bg-inset);   color: var(--ink-muted); border-color: var(--border-strong); }

/* ── Modals ── */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,30,60,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    border-top: 4px solid var(--blue);
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--blue);
}

.modal-content .form-group { margin-bottom: 1rem; }

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.empty-message { color: var(--ink-muted); font-style: italic; }
.empty-message a { color: var(--blue); }

/* ══════════════════════════════════════════════════════
   Hamburger Toggle (hidden on desktop)
   ══════════════════════════════════════════════════════ */
.nav-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.4rem 0.5rem;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink-mid);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.nav-logout-mobile { display: none; }

/* ══════════════════════════════════════════════════════
   Responsive — Tablet (≤ 900px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .nav-links a { padding: 0.45rem 0.6rem; font-size: 0.82rem; }
}

/* ══════════════════════════════════════════════════════
   Responsive — Mobile (≤ 768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Navigation ── */
    .navbar {
        flex-wrap: wrap;
        height: auto;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .nav-toggle { display: flex; }

    .nav-logout { display: none; }

    .nav-logout-mobile { display: list-item; }

    .nav-logout-mobile a {
        color: var(--danger);
        font-weight: 600;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.15rem;
        padding: 0.5rem 0;
        border-top: 1px solid var(--border);
        order: 10;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
        border-radius: var(--radius-sm);
    }

    /* ── Container ── */
    .container { padding: 1.25rem 1rem 2rem; }

    /* ── Page Header ── */
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .page-header h1 { font-size: 1.4rem; }

    .header-actions { width: 100%; flex-wrap: wrap; }

    /* ── Form Grid ── */
    .form-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; gap: 1rem; }

    /* ── Form Section ── */
    .form-section { padding: 1.25rem 1rem; }

    /* ── Form Actions ── */
    .form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .form-actions .btn { justify-content: center; }

    /* ── Data Tables — horizontally scrollable ── */
    .data-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 0.84rem;
    }

    .data-table th,
    .data-table td { padding: 0.7rem 0.75rem; white-space: nowrap; }

    .actions-cell { flex-wrap: nowrap; gap: 0.3rem; }

    /* ── Filters ── */
    .filter-form { flex-direction: column; align-items: stretch; }

    .filter-group input,
    .filter-group select { min-width: 0; width: 100%; }

    /* ── Stats Bar ── */
    .stats-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 1rem 1.25rem;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .stat:nth-child(2n) { border-right: none; }
    .stat:nth-last-child(-n+2) { border-bottom: none; }
    .stat-value { font-size: 1.375rem; }

    /* ── Quote View ── */
    .quote-view { padding: 1.25rem 1rem; }

    .quote-header {
        flex-direction: column;
        gap: 1rem;
    }

    .quote-meta { text-align: left; }

    /* ── Service Header ── */
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* ── Price Slider ── */
    .price-slider-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .price-slider-group label { min-width: auto; }

    /* ── Bundle Info ── */
    .bundle-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    /* ── Status Form ── */
    .status-form {
        flex-direction: column;
        align-items: stretch;
    }

    .status-form select { width: 100%; }

    /* ── Scheduling ── */
    .scheduled-actions { flex-direction: column; }
    .scheduled-actions .btn { justify-content: center; }

    /* ── Tier Edit ── */
    .tier-edit-row { flex-direction: column; align-items: flex-start; }
    .tier-inputs { width: 100%; flex-wrap: wrap; }

    /* ── Modal ── */
    .modal-content { padding: 1.5rem 1rem; }
    .modal-actions { flex-direction: column-reverse; align-items: stretch; }
    .modal-actions .btn { justify-content: center; }

    /* ── Empty State ── */
    .empty-state { padding: 3rem 1.25rem; }
}

/* ══════════════════════════════════════════════════════
   Responsive — Small Phone (≤ 480px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .navbar { padding: 0.6rem 0.75rem; }
    .nav-logo { height: 36px; }

    .container { padding: 1rem 0.75rem 1.5rem; }

    .page-header h1 { font-size: 1.2rem; }

    .form-section { padding: 1rem 0.875rem; }

    /* ── Stats: single column ── */
    .stats-bar { grid-template-columns: 1fr; }
    .stat { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
    .stat:last-child { border-bottom: none !important; }
    .stat-value { font-size: 1.25rem; }

    /* ── Buttons ── */
    .btn { font-size: 0.82rem; padding: 0.5rem 1rem; }
    .btn-small { padding: 0.3rem 0.6rem; font-size: 0.75rem; }

    /* ── Quote Summary Total ── */
    .total-row .summary-value { font-size: 1.375rem; }

    /* ── Price Adjustment Input ── */
    .price-adjustment-section input { width: 100%; }

    /* ── Login Card ── */
    .login-card { padding: 2rem 1.25rem 1.75rem; }
}

/* ── Print ── */
@media print {
    .navbar, .footer, .form-actions, .header-actions,
    .status-section, .quote-actions, .filters-bar { display: none !important; }

    body { background: white; }

    .container { max-width: 100%; padding: 0; }

    .quote-view { box-shadow: none; padding: 0; border: none; }

    .quote-header { border-bottom-color: #000; }

    .form-section { box-shadow: none; }
}
