/* ═══════════════════════════════════════════════════════
   ELEVATED SOFTWARE — Design System
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Foundation Tokens ── */
:root {
    --primary: #a09370;
    --primary-deep: #8a7d5c;
    --primary-mild: #b8ad96;
    --primary-subtle: #f8f8f8;
    --primary-text: #000000;
    --primary-icon: #000000;

    --success: #0caf60;
    --success-subtle: #e6f7ef;
    --warning: #e5920a;
    --warning-subtle: #fef3e2;
    --danger: #e03e56;
    --danger-subtle: #fde8ec;
    --purple: #7c5ce0;
    --purple-subtle: #f0ebff;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --sidebar-bg: #000000;
    --sidebar-text: #9ca3af;
    --sidebar-hover: rgba(160, 147, 112, 0.08);
    --sidebar-active: #a09370;
    --sidebar-border: rgba(160, 147, 112, 0.12);

    --surface: #ffffff;
    --surface-warm: #fafafa;
    --surface-raised: #ffffff;

    --card-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 1px 3px rgba(17, 24, 39, 0.06);
    --card-shadow-hover: 0 4px 12px rgba(17, 24, 39, 0.08), 0 2px 4px rgba(17, 24, 39, 0.04);
    --card-shadow-lg: 0 8px 24px rgba(17, 24, 39, 0.1), 0 2px 8px rgba(17, 24, 39, 0.04);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;

    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

    --bg-secondary: var(--gray-50);
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-500);
    --text-muted: var(--gray-400);
    --border: var(--gray-200);
}

/* ── Reset & Base ── */
@keyframes spin { 0% { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

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

body {
    font-family: var(--font-body);
    background: var(--gray-100);
    color: var(--gray-800);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: var(--primary-text);
}

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

/* ── Sidebar ── */
.sidebar {
    width: 264px;
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    transition: all 0.3s var(--ease-out);
    border-right: 1px solid rgba(160, 147, 112, 0.06);
}

.sidebar-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--sidebar-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo { width: 200px; height: auto; flex-shrink: 0; }

.sidebar-brand { display: flex; flex-direction: column; }
.sidebar-brand-name { font-size: 16px; font-weight: 600; color: #fff; }
.sidebar-brand-tagline { font-size: 11px; color: var(--gray-500); }

.sidebar-nav {
    flex: 1;
    padding: 20px 14px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(160, 147, 112, 0.15) transparent;
}

.nav-section { margin-bottom: 2px; }

.nav-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 11px 16px;
    background: none;
    border: 0;
    font-family: inherit;
    border-radius: var(--radius-md);
    color: var(--sidebar-text);
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
}

.nav-menu-toggle:hover {
    background: var(--sidebar-hover);
    color: #e5e7eb;
}

.nav-menu-toggle:hover svg,
.nav-single .nav-item:hover svg { color: var(--primary-mild); }

.nav-menu-left { display: flex; align-items: center; gap: 14px; }
.nav-menu-left svg { width: 20px; height: 20px; flex-shrink: 0; color: #6b7280; transition: color 0.2s; }
.nav-menu-left span { color: inherit; font-size: 14px; font-weight: 400; letter-spacing: 0.01em; }

.nav-menu-arrow {
    width: 16px;
    height: 16px;
    color: rgba(156, 163, 175, 0.4);
    transition: transform 0.25s var(--ease-out), color 0.2s;
}

.nav-section.open .nav-menu-arrow {
    transform: rotate(90deg);
    color: var(--primary-mild);
}

.nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out);
}

.nav-section.open .nav-submenu { max-height: 500px; }

.nav-submenu .nav-item {
    padding: 9px 16px 9px 50px;
    font-size: 13.5px;
    border-radius: var(--radius-sm);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-submenu .nav-item::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(156, 163, 175, 0.25);
    transform: translateY(-50%);
    transition: background 0.2s;
}

.nav-submenu .nav-item:hover::before,
.nav-submenu .nav-item.active::before {
    background: var(--primary);
}

.nav-submenu .nav-item svg { display: none; }

.nav-single { margin-bottom: 2px; }
.nav-single .nav-item {
    padding: 11px 16px;
    border-radius: var(--radius-md);
    gap: 14px;
}
.nav-single .nav-item svg { width: 20px; height: 20px; color: #6b7280; transition: color 0.2s; }

.nav-menu-left span,
.nav-single .nav-item span { font-size: 14px; font-weight: 400; }

.nav-section-title {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(156, 163, 175, 0.4);
    padding: 16px 16px 8px;
    margin-bottom: 2px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    color: var(--sidebar-text);
    text-decoration: none;
    transition: all 0.2s var(--ease-out);
    margin-bottom: 1px;
}

.nav-item:hover {
    background: var(--sidebar-hover);
    color: #e5e7eb;
}

.nav-item.active {
    background: rgba(160, 147, 112, 0.15);
    color: var(--primary);
    font-weight: 500;
    border-radius: var(--radius-md);
}

.nav-item.active svg { color: var(--primary); }

.nav-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.nav-item span, .quick-action span { font-size: 14px; font-weight: 500; }

.nav-badge {
    margin-left: auto;
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: 0.02em;
}

/* ── Main Content ── */
.main-content {
    flex: 1;
    margin-left: 264px;
    display: flex;
    flex-direction: column;
    background: var(--gray-100);
    min-width: 0;
    overflow-x: hidden;
}

/* ── Header ── */
.header, .header-left { display: flex; align-items: center; }
.header {
    background: var(--surface);
    padding: 16px 36px;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.92);
}

.header-left { gap: 24px; }

.header-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-400);
}

.header-breadcrumb a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.15s;
}
.header-breadcrumb a:hover { color: var(--primary-deep); }

.header-right { display: flex; align-items: center; gap: 12px; }

.header-icon-btn, .header-search { border-radius: var(--radius-md); display: flex; align-items: center; }

.header-search {
    background: var(--gray-50);
    padding: 9px 16px;
    gap: 10px;
    width: 280px;
    border: 1px solid transparent;
    transition: all 0.2s var(--ease-out);
}

.header-search:focus-within {
    border-color: var(--primary-mild);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(160, 147, 112, 0.1);
}

.header-search input {
    border: 0;
    background: none;
    outline: 0;
    font-size: 13.5px;
    font-family: var(--font-body);
    width: 100%;
    color: var(--gray-700);
    letter-spacing: 0.01em;
}

.header-search svg { width: 17px; height: 17px; color: var(--gray-400); }

.header-icon-btn {
    width: 38px;
    height: 38px;
    border: 0;
    background: none;
    color: var(--gray-400);
    cursor: pointer;
    justify-content: center;
    position: relative;
    transition: all 0.2s var(--ease-out);
    border-radius: var(--radius-md);
}
.header-icon-btn:hover { background: var(--gray-100); color: var(--gray-600); }
.header-icon-btn svg { width: 20px; height: 20px; }

.notification-dot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 7px;
    height: 7px;
    background: var(--danger);
    border-radius: 50%;
    border: 2px solid var(--surface);
}

.header-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.2s var(--ease-out);
    letter-spacing: 0.02em;
}
.header-avatar:hover { transform: scale(1.05); }

/* ── Page Content ── */
.page-content { padding: 32px 36px 48px; flex: 1; }

/* ── Cards ── */
.card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: box-shadow 0.3s var(--ease-out);
}

.card-header, table td { border-bottom: 1px solid var(--gray-100); }

.card-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-stat { text-align: center; }

.header-stat-value {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.header-stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-top: 3px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-900);
    letter-spacing: -0.005em;
}

.card-subtitle {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 2px;
    letter-spacing: 0.01em;
}

.card-body { padding: 24px; }

.card-footer {
    padding: 14px 24px;
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
}

/* ── Stat Cards ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s var(--ease-out);
    animation: fadeInUp 0.5s var(--ease-out) both;
}

.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 0.06s; }
.stat-card:nth-child(3) { animation-delay: 0.12s; }
.stat-card:nth-child(4) { animation-delay: 0.18s; }

.stat-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.stat-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.stat-icon, .stat-trend { display: flex; align-items: center; }

.stat-icon {
    position: absolute;
    bottom: -20px;
    right: -18px;
    width: auto;
    height: auto;
    border-radius: 0;
    justify-content: center;
    opacity: 0.08;
}

.stat-icon.blue { background: none; color: var(--primary-icon); }
.stat-icon.green { background: none; color: var(--success); }
.stat-icon.orange { background: none; color: var(--warning); }
.stat-icon.purple { background: none; color: var(--purple); }
.stat-icon.red { background: none; color: var(--danger); }
.stat-icon svg { width: 100px; height: 100px; }

.stat-trend {
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.02em;
}

.stat-trend.up { background: var(--success-subtle); color: var(--success); }
.stat-trend.down { background: var(--danger-subtle); color: var(--danger); }

.stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.stat-label, table th {
    font-size: 12px;
    color: var(--gray-400);
    letter-spacing: 0.02em;
    font-weight: 500;
}

/* ── Grid Layouts ── */
.grid-2, .grid-3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-1-2, .grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.grid-1-2 { grid-template-columns: 1fr 2fr; }

/* ── Tables ── */
.table-container { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; }

table th {
    text-align: left;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-400);
    font-family: var(--font-body);
}

table td {
    padding: 14px 16px;
    color: var(--gray-700);
    font-size: 13.5px;
}

table tr:last-child td { border-bottom: none; }
table tr { transition: background 0.15s; }
table tr:hover { background: rgba(243, 244, 246, 0.4); }

.table-link {
    color: var(--primary-icon);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
    letter-spacing: 0.01em;
}
.table-link:hover { color: var(--primary-deep); text-decoration: underline; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    border: 0;
    transition: all 0.2s var(--ease-out);
    font-family: var(--font-body);
    letter-spacing: 0.01em;
    text-decoration: none;
}

.btn svg { width: 17px; height: 17px; }

.btn-primary {
    background: var(--primary-text);
    color: var(--primary);
    font-weight: 600;
}
.btn-primary:hover {
    background: #111111;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary { background: var(--gray-100); color: var(--gray-600); }
.btn-secondary:hover { background: var(--gray-200); color: var(--gray-700); }

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #0a9d56; }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #c93549; }

.btn-danger-outline, .btn-outline { background: none; }
.btn-danger-outline { border: 1px solid var(--danger); color: var(--danger); }
.btn-danger-outline:hover { background: #fef2f2; }
.btn-outline { border: 1px solid var(--gray-200); color: var(--gray-600); }
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-300); }

.btn-sm { padding: 6px 12px; font-size: 12.5px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ── Badges ── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge-blue { background: rgba(0, 0, 0, 0.08); color: var(--primary-icon); }
.badge-green { background: var(--success-subtle); color: var(--success); }
.badge-orange { background: var(--warning-subtle); color: var(--warning); }
.badge-red { background: var(--danger-subtle); color: var(--danger); }
.badge-purple { background: var(--purple-subtle); color: var(--purple); }
.badge-gray { background: var(--gray-100); color: var(--gray-500); }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--gray-800);
    transition: all 0.2s var(--ease-out);
    background: var(--surface);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(160, 147, 112, 0.12);
}

.form-input::placeholder { color: var(--gray-400); }

.form-select, .form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--gray-800);
}

.form-select {
    background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E") no-repeat right 12px center;
    appearance: none;
    cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }

.form-row, .form-row-3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-row-3 { grid-template-columns: repeat(3, 1fr); }

.form-checkbox { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.form-checkbox input { width: 18px; height: 18px; accent-color: var(--primary-icon); }

/* ── Progress ── */
.progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.4s var(--ease-out);
}

.progress-fill.blue { background: var(--primary-icon); }
.progress-fill.green { background: var(--success); }
.progress-fill.orange { background: var(--warning); }
.progress-fill.red { background: var(--danger); }

.progress-steps { display: flex; align-items: center; gap: 6px; }
.progress-step { flex: 1; height: 4px; background: var(--gray-200); border-radius: 2px; }
.progress-step.completed { background: var(--success); }
.progress-step.current { background: var(--primary-icon); }

/* ── Modals ── */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s var(--ease-out);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
    background: var(--surface);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow: hidden;
    transform: scale(0.96) translateY(8px);
    transition: transform 0.3s var(--ease-out);
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.modal-overlay.active .modal { transform: scale(1) translateY(0); }

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
}

.modal-close {
    width: 32px; height: 32px;
    border: 0;
    background: none;
    cursor: pointer;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.15s;
}
.modal-close:hover { background: var(--gray-100); color: var(--gray-600); }

.modal-body { padding: 24px; overflow-y: auto; flex: 1; min-height: 0; }

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

/* ── Email ── */
.email-inbox-list { max-height: 300px; overflow-y: auto; }
.email-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px; border-bottom: 1px solid var(--gray-200);
    cursor: pointer; transition: background 0.15s;
}
.email-item:hover { background: var(--gray-50); }
.email-item.unread { background: #f0f7ff; }
.email-item.unread:hover { background: #e5f1ff; }
.email-item.unread .email-subject { font-weight: 600; }
.email-checkbox { flex-shrink: 0; }
.email-avatar, .email-sender { display: flex; align-items: center; }
.email-sender { gap: 10px; min-width: 200px; }
.email-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    justify-content: center; color: #fff; font-size: 12px; font-weight: 600; flex-shrink: 0;
}
.email-from { font-weight: 500; font-size: 14px; color: var(--gray-800); }
.email-address { font-size: 12px; color: var(--gray-500); }
.email-content { flex: 1; min-width: 0; }
.email-preview, .email-subject { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.email-subject { font-size: 14px; color: var(--gray-800); margin-bottom: 2px; }
.email-preview { font-size: 13px; color: var(--gray-500); }
.email-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; min-width: 80px; }
.email-time { font-size: 12px; color: var(--gray-500); }
.email-actions { flex-shrink: 0; }

/* ── Customer Modal ── */
.customer-input-field, .customer-modal-nav-item { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.customer-modal-nav-item {
    padding: 12px 24px; color: var(--gray-500); text-decoration: none;
    transition: all 0.15s; border-left: 3px solid transparent;
}
.customer-modal-nav-item.active, .customer-modal-nav-item:hover { background: rgba(160, 147, 112, 0.08); color: var(--primary-icon); }
.customer-modal-nav-item.active { border-left-color: var(--primary-icon); }
.customer-input-field { padding: 12px 16px; background: var(--surface); border: 1px solid var(--gray-200); border-radius: var(--radius-md); }
.customer-list-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }

/* ── Tabs ── */
.btn-icon { background: none; border: 0; padding: 8px; }
.btn-icon:hover, .tabs { background: var(--gray-100); }
.btn-icon:hover svg { stroke: var(--gray-600); }

.tabs {
    display: flex;
    gap: 3px;
    padding: 3px;
    border-radius: var(--radius-md);
    width: fit-content;
}

.tab {
    padding: 7px 18px;
    border-radius: calc(var(--radius-md) - 2px);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    border: 0;
    background: none;
    transition: all 0.2s var(--ease-out);
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}
.tab:hover { color: var(--gray-700); }
.tab.active {
    background: var(--surface);
    color: var(--gray-900);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    font-weight: 600;
}

/* ── Timeline ── */
.timeline { position: relative; padding-left: 24px; }
.timeline::before {
    content: ''; position: absolute; left: 7px; top: 0; bottom: 0;
    width: 1px; background: var(--gray-200);
}
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute; left: -24px; top: 4px; width: 14px; height: 14px;
    border-radius: 50%; background: var(--surface); border: 2px solid var(--gray-300);
}
.timeline-dot.completed { background: var(--success); border-color: var(--success); }
.timeline-dot.current { background: var(--primary-icon); border-color: var(--primary-icon); }
.timeline-content { padding-left: 8px; }
.timeline-title { font-weight: 500; color: var(--gray-800); margin-bottom: 4px; }
.timeline-date { font-size: 12px; color: var(--gray-400); }

/* ── Avatars ── */
.avatar, .avatar-group { display: flex; }
.avatar {
    width: 30px; height: 30px; border-radius: 50%; background: var(--primary);
    color: var(--primary-text); align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600; border: 2px solid var(--surface); margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.avatar.green { background: var(--success); color: #fff; }
.avatar.orange { background: var(--warning); color: #fff; }
.avatar.purple { background: var(--purple); color: #fff; }

/* ── Alerts ── */
.alert {
    padding: 14px 18px; border-radius: var(--radius-md);
    display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px;
}
.alert-info { background: var(--primary-subtle); color: var(--primary-deep); }
.alert-success { background: var(--success-subtle); color: var(--success); }
.alert-warning { background: var(--warning-subtle); color: #9a6f00; }
.alert-danger { background: var(--danger-subtle); color: var(--danger); }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ── Dropdowns ── */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; right: 0; background: var(--surface);
    border-radius: var(--radius-lg); box-shadow: var(--card-shadow-lg);
    min-width: 180px; padding: 6px; z-index: 100;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: all 0.2s var(--ease-out);
    border: 1px solid var(--gray-200);
}
.dropdown-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: var(--radius-sm);
    color: var(--gray-600); text-decoration: none; font-size: 13.5px; cursor: pointer;
    transition: background 0.15s;
}
.dropdown-item:hover { background: var(--gray-50); }
.dropdown-item svg { width: 17px; height: 17px; color: var(--gray-400); }
.dropdown-divider { height: 1px; background: var(--gray-200); margin: 4px 0; }

/* ── Empty State ── */
.empty-state { text-align: center; padding: 60px 40px; }
.empty-state svg { width: 64px; height: 64px; color: var(--gray-300); margin-bottom: 20px; }
.empty-state-title { font-family: var(--font-display); font-size: 20px; color: var(--gray-800); margin-bottom: 8px; }
.empty-state-text { color: var(--gray-500); margin-bottom: 24px; }

/* ── Kanban Board ── */
/* ── Kanban Board ── */
.kanban-board {
    display: flex;
    gap: 16px;
    height: calc(100vh - 220px);
    align-items: stretch;
    overflow-x: auto;
}

.kanban-column {
    display: flex;
    flex-direction: column;
    min-width: 280px;
    min-height: 0;
    flex: 1;
    background: var(--gray-50);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.kanban-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 20px 14px;
}

.kanban-title {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--gray-800);
    gap: 8px;
    font-size: 14px;
}

.kanban-subtitle {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 2px;
    font-weight: 400;
}

.kanban-count {
    background: var(--gray-200);
    color: var(--gray-500);
    font-size: 11px;
    font-weight: 600;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kanban-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    overflow-y: auto;
    padding: 0 16px 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

/* ── Kanban Card ── */
.kanban-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-200);
    padding: 16px 18px 16px 34px;
    cursor: pointer;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
    position: relative;
}

.kanban-card:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-color: var(--gray-300);
}

.kanban-card.dragging {
    opacity: 0.5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.kanban-drag-handle {
    position: absolute;
    top: 18px;
    left: 12px;
    cursor: grab;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    transition: color 0.15s;
}
.kanban-drag-handle:hover { color: var(--gray-500); }
.kanban-drag-handle:active { cursor: grabbing; }

.kanban-card-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
    line-height: 1.3;
    margin-bottom: 6px;
}

.kanban-card-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0 0 10px;
}

.kanban-card-detail {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 0;
}

.kanban-card-ref {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
}

.kanban-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

.kanban-card-date {
    font-size: 12px;
    color: var(--gray-400);
}
.kanban-card.dragging { opacity: 0.5; transform: scale(0.98); }
.kanban-column.drag-over { background: rgba(160, 147, 112, 0.08); border-color: var(--primary-mild); }
.kanban-cards.drag-over-cards { min-height: 80px; }
.kanban-card.drag-placeholder {
    border: 2px dashed var(--gray-300);
    background: var(--gray-50);
    min-height: 60px;
    border-radius: var(--radius-md);
}

/* ── Schedule ── */
.schedule-week { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.schedule-day { background: var(--gray-50); border-radius: var(--radius-lg); overflow: hidden; }
.schedule-day-header {
    background: var(--gray-200); padding: 10px 16px;
    font-weight: 600; text-align: center; font-size: 13px;
}
.schedule-day-content { padding: 12px; min-height: 200px; }
.schedule-item {
    background: var(--surface); border-radius: var(--radius-md); padding: 10px 12px;
    margin-bottom: 8px; font-size: 13px; box-shadow: var(--card-shadow);
}
.schedule-item.green { background: var(--success-subtle); }
.schedule-item.orange { background: var(--warning-subtle); }
.schedule-item.purple { background: var(--purple-subtle); }

/* ── Quick Actions ── */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.activity-feed, .quick-action { display: flex; flex-direction: column; }

.quick-action {
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--gray-300);
    text-decoration: none;
    color: var(--gray-500);
    transition: all 0.25s var(--ease-out);
    cursor: pointer;
    font-family: var(--font-body);
}

.quick-action:hover {
    border-color: var(--primary);
    border-style: solid;
    color: var(--primary-icon);
    background: var(--primary-subtle);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.quick-action svg { width: 28px; height: 28px; margin-bottom: 10px; }
.quick-action span { font-size: 13px; }

/* ── Activity Feed ── */
.activity-feed { gap: 0; }

.activity-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    animation: slideInRight 0.3s var(--ease-out) both;
}

.activity-item:last-child { border-bottom: none; }
.activity-item:nth-child(1) { animation-delay: 0s; }
.activity-item:nth-child(2) { animation-delay: 0.05s; }
.activity-item:nth-child(3) { animation-delay: 0.1s; }
.activity-item:nth-child(4) { animation-delay: 0.15s; }
.activity-item:nth-child(5) { animation-delay: 0.2s; }

.activity-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.activity-avatar svg { width: 16px; height: 16px; }

.activity-content { flex: 1; }
.activity-text { font-size: 13.5px; color: var(--gray-600); line-height: 1.5; }
.activity-text strong { color: var(--gray-800); font-weight: 600; }
.activity-time { font-size: 12px; color: var(--gray-400); margin-top: 2px; display: block; }

/* ── Pipeline Methodology ── */
.methodology-pipeline {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
}

.methodology-pipeline::-webkit-scrollbar { display: none; }

.pipeline-stage {
    flex: 1;
    min-width: 130px;
    padding: 18px 16px 14px;
    position: relative;
    text-align: center;
    cursor: default;
    transition: all 0.2s var(--ease-out);
}

.pipeline-stage::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--gray-200);
}

.pipeline-stage:last-child::after { display: none; }

.pipeline-stage-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.pipeline-stage-count {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 4px;
}

.pipeline-stage-label {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.pipeline-stage:hover .pipeline-stage-count { color: var(--primary-icon); }

/* ── Process Pipeline (legacy) ── */
.process-pipeline { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.process-stage { flex: 1; min-width: 180px; background: var(--gray-50); border-radius: var(--radius-md); padding: 12px; }
.process-stage-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-200);
}
.process-stage-title { font-weight: 600; font-size: 13px; color: var(--gray-700); }
.process-stage-count { background: var(--gray-200); color: var(--gray-600); padding: 2px 8px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.process-stage-jobs { display: flex; flex-direction: column; gap: 8px; }
.process-job-card {
    background: var(--surface); border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
    padding: 10px 12px; cursor: pointer; transition: all 0.2s;
}
.process-job-card:hover { border-color: var(--primary-deep); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
.process-job-card.active { border-color: var(--success); border-left: 3px solid var(--success); }
.process-job-card.completed { border-color: var(--primary-deep); background: var(--primary-subtle); }
.process-job-id { display: block; font-weight: 600; font-size: 13px; color: var(--gray-800); }
.process-job-name { display: block; font-size: 12px; color: var(--gray-500); margin-top: 2px; }

/* ── Button Icon ── */
.btn-icon, .qr-scanner-placeholder { display: flex; align-items: center; justify-content: center; }

.qr-scanner-placeholder {
    flex-direction: column; background: var(--gray-100); border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg); padding: 40px; text-align: center;
}
.qr-scanner-placeholder svg { color: var(--gray-400); margin-bottom: 16px; }
.qr-scanner-placeholder p { font-weight: 500; color: var(--gray-700); margin-bottom: 4px; }

.btn-icon {
    width: 32px; height: 32px; border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm); background: var(--surface); color: var(--gray-400);
    cursor: pointer; transition: all 0.2s;
}
.btn-icon:hover { background: var(--gray-50); color: var(--gray-600); border-color: var(--gray-300); }
.btn-icon svg { width: 16px; height: 16px; }

/* ── Timers ── */
.timer-display {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.timer-display.running { color: var(--success); background: var(--success-subtle); }
.timer-display.paused { color: var(--warning); background: var(--warning-subtle); }
.timer-controls { display: flex; gap: 12px; justify-content: center; }
.timer-controls .btn { min-width: 120px; }
.timer-list { display: flex; flex-direction: column; gap: 12px; }
.timer-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px; background: var(--surface); border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}
.timer-item.active { border-color: var(--success); background: var(--success-subtle); }
.timer-item.active .timer-item-time { color: var(--success); }
.timer-item-info { display: flex; flex-direction: column; gap: 4px; }
.timer-item-title { font-weight: 600; color: var(--gray-800); }
.timer-item-subtitle { font-size: 13px; color: var(--gray-500); }
.timer-item-time {
    font-family: var(--font-body); font-size: 24px; font-weight: 600;
    color: var(--gray-700); font-variant-numeric: tabular-nums;
}

/* ── Stock Levels ── */
.stock-level-bar { display: flex; align-items: center; gap: 8px; }
.stock-bar { flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.stock-bar-fill { height: 100%; border-radius: 3px; transition: width 0.3s; }
.stock-bar-fill.low { background: var(--danger); }
.stock-bar-fill.medium { background: var(--warning); }
.stock-bar-fill.good { background: var(--success); }
.stock-qty { font-weight: 600; min-width: 50px; text-align: right; }

/* ── BOM Tree ── */
.bom-tree { padding-left: 0; }
.bom-item { display: flex; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--gray-100); }
.bom-item:last-child { border-bottom: none; }
.bom-item-level-1 { padding-left: 16px; }
.bom-item-level-2 { padding-left: 40px; }
.bom-item-level-3 { padding-left: 64px; }
.bom-item-icon {
    width: 32px; height: 32px; display: flex; align-items: center;
    justify-content: center; background: none; border-radius: var(--radius-sm); margin-right: 12px;
}
.bom-item-icon svg { width: 16px; height: 16px; color: var(--gray-500); }
.bom-item-details { flex: 1; }
.bom-item-name { font-weight: 500; color: var(--gray-800); }
.bom-item-code { font-size: 12px; color: var(--gray-500); }
.bom-item-qty { font-weight: 600; color: var(--gray-700); min-width: 60px; text-align: right; }

/* ── Job Cards ── */
.job-card-print {
    background: var(--surface); border: 2px solid var(--gray-300);
    border-radius: var(--radius-md); padding: 24px; max-width: 400px;
}
.job-card-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 16px; padding-bottom: 16px; border-bottom: 2px solid var(--gray-200);
}
.job-card-qr {
    width: 80px; height: 80px; background: var(--gray-100); border: 1px solid var(--gray-200);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
}
.job-card-qr svg { width: 60px; height: 60px; color: var(--gray-400); }
.job-card-title { font-family: var(--font-display); font-size: 24px; color: var(--gray-800); }
.job-card-subtitle { font-size: 14px; color: var(--gray-500); }
.job-card-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.job-card-detail { display: flex; flex-direction: column; }
.job-card-detail-label {
    font-size: 10px; font-weight: 600; color: var(--gray-400);
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px;
}
.job-card-detail-value { font-size: 14px; font-weight: 500; color: var(--gray-800); }

/* ── Warehouse / Bins & Racks ── */
.warehouse-layout { display: flex; flex-direction: column; gap: 20px; }
.warehouse-zone { background: var(--gray-50); border-radius: var(--radius-md); padding: 12px; }
.zone-header { font-size: 11px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.rack-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.rack-cell {
    aspect-ratio: 1; background: var(--surface); border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm); display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end; cursor: pointer;
    position: relative; overflow: hidden; transition: all 0.2s;
}
.rack-cell:hover { border-color: var(--primary-deep); transform: translateY(-2px); box-shadow: var(--card-shadow); }
.rack-cell.selected { border-color: var(--primary-deep); border-width: 3px; }
.rack-label { position: absolute; top: 4px; left: 4px; font-size: 10px; font-weight: 700; color: var(--gray-600); z-index: 1; }
.rack-fill { position: absolute; bottom: 0; left: 0; right: 0; background: var(--success); opacity: 0.2; transition: height 0.3s; }
.rack-cell.occupied .rack-fill { background: var(--danger); opacity: 0.2; }
.rack-cell.partial .rack-fill { background: var(--warning); opacity: 0.2; }
.rack-cell.empty { background: var(--gray-50); }

.warehouse-legend { display: flex; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-200); }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-500); }
.legend-color { width: 14px; height: 14px; border-radius: 3px; }
.legend-color.occupied { background: var(--danger); opacity: 0.4; }
.legend-color.partial { background: var(--warning); opacity: 0.4; }
.legend-color.empty { background: var(--gray-200); }

.rack-detail-view, .rack-visual { display: flex; flex-direction: column; gap: 20px; }
.rack-visual { gap: 8px; }
.rack-shelf { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.bin-slot {
    background: var(--gray-50); border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm); padding: 12px 8px;
    display: flex; flex-direction: column; align-items: center;
    gap: 4px; cursor: pointer; transition: all 0.2s; min-height: 80px;
}
.bin-slot:hover { border-color: var(--primary-deep); background: var(--surface); }
.bin-slot.occupied { background: var(--surface); border-color: var(--success); }
.bin-slot.empty { background: var(--gray-50); border-style: dashed; }
.bin-label { font-size: 11px; font-weight: 700; color: var(--gray-500); background: var(--gray-100); padding: 2px 6px; border-radius: 4px; }
.bin-item { font-size: 11px; color: var(--gray-600); text-align: center; word-break: break-word; }
.bin-slot.occupied .bin-item { font-weight: 500; color: var(--gray-800); }
.bin-slot.empty .bin-item { color: var(--gray-400); font-style: italic; }

.rack-info { background: var(--gray-50); border-radius: var(--radius-md); padding: 16px; }
.info-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--gray-200); }
.info-row:last-child { border-bottom: none; }
.info-label, .info-value { font-size: 13px; }
.info-label { color: var(--gray-500); }
.info-value { font-weight: 600; color: var(--gray-800); }

.capacity-bar { width: 100%; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.capacity-fill { height: 100%; border-radius: 3px; transition: width 0.3s; }
.capacity-fill.full { background: var(--danger); }
.capacity-fill.partial { background: var(--warning); }
.capacity-fill.empty { background: var(--gray-300); }

.grid-2-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ── Responsive ── */
@media (max-width: 1200px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-1-2, .grid-2, .grid-2-1 { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .grid-2-col { grid-template-columns: 1fr; }
    .rack-grid { grid-template-columns: repeat(3, 1fr); }
    .process-pipeline { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .process-stage { min-width: 160px; }
    .timer-display { font-size: 36px; }
    .quick-actions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .header, .page-content { padding: 16px; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .quick-actions { grid-template-columns: repeat(2, 1fr); }
    .timer-controls { flex-direction: column; }
    .timer-controls .btn { width: 100%; }
    .job-card-details { grid-template-columns: 1fr; }
    .methodology-pipeline { gap: 0; }
    .pipeline-stage { min-width: 100px; padding: 14px 8px 10px; }
    .pipeline-stage-count { font-size: 22px; }
}

@media print {
    .header, .sidebar { display: none; }
    .main-content { margin-left: 0; }
    .card { box-shadow: none; border: 1px solid var(--gray-200); }
}

/* ── Utility Classes ── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary-icon); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--gray-400); font-size: 13px; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
