/* Design system — passo 1 (shell). Não altera regras de negócio. */

:root {
    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --surface-muted: #F1F5F9;
    --border: #E2E8F0;
    --text: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    --brand: #E8752A;
    --brand-hover: #D4661F;
    --brand-soft: #FFF4EC;
    --primary: #0F172A;
    --accent: #0369A1;
    --success: #15803D;
    --warning: #B45309;
    --danger: #B91C1C;
    --info: #0369A1;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    --sidebar-w: 248px;
    --sidebar-collapsed: 72px;
    --header-h: 56px;
    --font: Inter, "Segoe UI", system-ui, sans-serif;

    /* Aliases para CSS/Blade existentes */
    --primary-color: var(--primary);
    --secondary-color: var(--brand);
    --success-color: var(--success);
    --warning-color: var(--warning);
    --danger-color: var(--danger);
    --light-bg: var(--bg);
    --dark-text: var(--text);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    font-size: 14px;
    line-height: 1.45;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    z-index: 2000;
    background: var(--primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: var(--radius);
}

.skip-link:focus {
    left: 8px;
}

.container-fluid {
    overflow-x: hidden;
}

.container-fluid > .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
}

.navbar-brand {
    font-weight: 600;
    color: var(--primary) !important;
}

/* ——— Sidebar ——— */
.sidebar {
    background: var(--primary);
    min-height: 100vh;
    box-shadow: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: width 0.2s ease, max-width 0.2s ease;
    overflow-x: hidden;
}

.sidebar.collapsed {
    overflow: hidden !important;
    width: var(--sidebar-collapsed) !important;
    min-width: var(--sidebar-collapsed) !important;
    max-width: var(--sidebar-collapsed) !important;
}

.sidebar.collapsed * {
    max-width: var(--sidebar-collapsed) !important;
}

.sidebar.collapsed .position-sticky {
    width: var(--sidebar-collapsed) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.sidebar.collapsed .nav-link {
    width: 56px !important;
    height: 44px !important;
    padding: 0 !important;
    margin: 4px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: var(--radius) !important;
}

.sidebar.collapsed .nav-link i {
    font-size: 1.25rem !important;
    margin: 0 !important;
}

.sidebar.collapsed .logout-link {
    width: 56px !important;
    height: 44px !important;
    padding: 0 !important;
    margin: 4px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.sidebar.collapsed .logout-link i {
    font-size: 1.25rem !important;
    margin: 0 !important;
}

.sidebar.collapsed .user-avatar {
    width: 36px !important;
    height: 36px !important;
    margin: 8px auto !important;
}

.sidebar.collapsed .sidebar-logo {
    font-size: 1.5rem !important;
    margin: 8px auto !important;
}

.sidebar.collapsed span:not(.sidebar-logo),
.sidebar.collapsed .sidebar-title,
.sidebar.collapsed .user-name,
.sidebar.collapsed h6,
.sidebar.collapsed small,
.sidebar.collapsed .sidebar-version {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

@media (min-width: 768px) {
    .sidebar {
        flex: 0 0 auto;
        width: auto;
    }
}

.sidebar .position-sticky {
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
    display: flex;
    flex-direction: column;
}

.sidebar .nav {
    flex: 1;
    padding-bottom: var(--space-4);
}

.sidebar.collapsed .nav {
    padding: 8px 0;
}

.sidebar .position-sticky::-webkit-scrollbar {
    width: 4px;
}

.sidebar .position-sticky::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar .position-sticky::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.82);
    padding: 10px 14px;
    border-radius: var(--radius);
    margin: 2px 10px;
    transition: background-color 0.15s ease, color 0.15s ease;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.sidebar.collapsed .nav-link {
    padding: 0;
    margin: 4px 0;
    justify-content: center;
    border-left: none;
    width: var(--sidebar-collapsed);
    min-width: var(--sidebar-collapsed);
    max-width: var(--sidebar-collapsed);
    display: flex;
    align-items: center;
}

.sidebar .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: var(--brand);
    border-radius: 2px;
    transform: scaleY(0);
    transition: transform 0.15s ease;
}

.sidebar .nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
}

.sidebar.collapsed .nav-link:hover {
    transform: none;
}

.sidebar .nav-link:hover::before {
    transform: scaleY(1);
}

.sidebar .nav-link.active {
    color: #fff;
    background: rgba(232, 117, 42, 0.16);
    border-left: none;
}

.sidebar .nav-link.active::before {
    transform: scaleY(1);
}

.sidebar.collapsed .nav-link.active {
    background: rgba(232, 117, 42, 0.16);
    border-left: none;
}

.sidebar .nav-link i {
    margin-right: 10px;
    width: 20px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar.collapsed .nav-link i {
    margin-right: 0;
    font-size: 1.2rem;
    width: auto;
}

.sidebar .nav-link .badge {
    margin-left: auto;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 999px;
}

.sidebar.collapsed .nav-link .badge {
    display: none;
}

.sidebar .nav-link.active i {
    color: var(--brand);
}

.sidebar.collapsed .nav-link {
    position: relative;
}

.sidebar.collapsed .nav-link::after {
    content: attr(data-title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    margin-left: 8px;
    font-size: 0.8rem;
    z-index: 1200;
}

.sidebar.collapsed .nav-link:hover::after {
    opacity: 1;
}

.sidebar h6 {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin: 16px 0 8px 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    text-transform: uppercase;
}

.sidebar-header {
    padding: 16px 12px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar.collapsed .sidebar-header {
    padding: 12px 0 8px;
    margin-bottom: 8px;
    width: var(--sidebar-collapsed);
    min-width: var(--sidebar-collapsed);
    max-width: var(--sidebar-collapsed);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-logo {
    font-size: 1.5rem;
    color: var(--brand);
    margin-bottom: 6px;
}

.sidebar-title {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    padding: 0 8px;
}

.sidebar.collapsed .sidebar-logo {
    font-size: 1.5rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sidebar-header .user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
}

.sidebar.collapsed .sidebar-header .user-info {
    padding: 6px 0;
    gap: 0;
    margin-top: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.sidebar-header .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.sidebar.collapsed .sidebar-header .user-avatar {
    width: 36px;
    height: 36px;
}

.sidebar-header .user-name {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.sidebar-toggle-btn {
    position: absolute;
    right: 8px;
    top: 10px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1100;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.sidebar-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.sidebar-toggle-btn i {
    color: #fff;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.sidebar.collapsed .sidebar-toggle-btn i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .sidebar-toggle-btn {
        display: none;
    }
}

.sidebar-footer {
    margin-top: auto;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar.collapsed .sidebar-footer {
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-footer .logout-link {
    color: rgba(255, 255, 255, 0.82);
    padding: 10px 12px;
    margin: 0;
    border-radius: var(--radius);
    background: transparent;
    border: 1px solid rgba(185, 28, 28, 0.35);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.sidebar.collapsed .sidebar-footer .logout-link {
    padding: 0;
    justify-content: center;
    width: 56px;
    min-width: 56px;
    max-width: 56px;
    height: 44px;
}

.sidebar-footer .logout-link:hover {
    background: rgba(185, 28, 28, 0.2);
    border-color: rgba(185, 28, 28, 0.5);
    color: #fff;
}

.sidebar-footer .logout-link i {
    margin-right: 8px;
    flex-shrink: 0;
}

.sidebar.collapsed .sidebar-footer .logout-link i {
    margin-right: 0;
}

.sidebar-version {
    text-align: center;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-version small {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.65rem;
    font-weight: 500;
}

/* ——— Conteúdo ——— */
.main-content {
    padding: var(--space-5);
    min-height: 100vh;
    background: var(--bg);
}

@media (min-width: 768px) and (max-width: 991px) {
    .sidebar {
        flex: 0 0 var(--sidebar-w);
        max-width: var(--sidebar-w);
    }
    .main-content {
        flex: 0 0 calc(100% - var(--sidebar-w));
        max-width: calc(100% - var(--sidebar-w));
    }
    .sidebar.collapsed {
        flex: 0 0 var(--sidebar-collapsed);
        max-width: var(--sidebar-collapsed);
    }
    .sidebar.collapsed ~ .main-content {
        flex: 0 0 calc(100% - var(--sidebar-collapsed));
        max-width: calc(100% - var(--sidebar-collapsed));
    }
}

@media (min-width: 992px) {
    .sidebar {
        flex: 0 0 var(--sidebar-w);
        max-width: var(--sidebar-w);
    }
    .main-content {
        flex: 0 0 calc(100% - var(--sidebar-w));
        max-width: calc(100% - var(--sidebar-w));
    }
    .sidebar.collapsed {
        flex: 0 0 var(--sidebar-collapsed);
        max-width: var(--sidebar-collapsed);
    }
    .sidebar.collapsed ~ .main-content {
        flex: 0 0 calc(100% - var(--sidebar-collapsed));
        max-width: calc(100% - var(--sidebar-collapsed));
    }
}

.main-content > .d-flex.border-bottom {
    border-bottom-color: var(--border) !important;
    padding-top: 0 !important;
    margin-bottom: var(--space-5) !important;
}

.main-content h1.h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

.main-content h1.h2 i {
    color: var(--text-muted);
    margin-right: 6px;
}

.main-content .btn-toolbar {
    gap: 8px;
}

/* ——— Cards ——— */
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    background: var(--surface);
    overflow: hidden;
}

.card:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.filter-card:hover,
.card:has(form#filterForm):hover,
.card:has(#catalogPdfForm):hover {
    transform: none;
    box-shadow: var(--shadow);
}

.card-header {
    background: var(--surface-muted);
    color: var(--text);
    border-radius: 0 !important;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    font-weight: 600;
}

.card-header h5,
.card-header .mb-0 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.card-header i {
    color: var(--text-muted);
    margin-right: 6px;
}

/* ——— Botões ——— */
.btn {
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 8px 14px;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #1e293b;
    border-color: #1e293b;
    color: #fff;
}

.btn-success {
    background: var(--success);
    border: 1px solid var(--success);
}

.btn-success:hover {
    background: #166534;
    border-color: #166534;
}

.btn-warning {
    background: var(--warning);
    border: 1px solid var(--warning);
    color: #fff;
}

.btn-danger {
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
}

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

.btn-dark {
    background: var(--brand);
    border: 1px solid var(--brand);
    color: #fff;
}

.btn-dark:hover {
    background: var(--brand-hover);
    border-color: var(--brand-hover);
    color: #fff;
}

.btn-info {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
}

.btn-outline-secondary {
    border-color: var(--border);
    color: var(--text-secondary);
    background: var(--surface);
}

.btn-outline-secondary:hover {
    background: var(--surface-muted);
    border-color: var(--border);
    color: var(--text);
}

.btn-outline-primary {
    border-color: var(--border);
    color: var(--text);
}

.btn-outline-primary:hover {
    background: var(--surface-muted);
    border-color: var(--border);
    color: var(--text);
}

/* ——— Tabelas ——— */
.table {
    border-radius: var(--radius);
    overflow: hidden;
    font-variant-numeric: tabular-nums;
}

.table thead th {
    background-color: var(--surface-muted);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 10px 12px;
}

.table tbody td {
    padding: 10px 12px;
    vertical-align: middle;
    border-color: var(--border);
}

.table-hover tbody tr:hover {
    background-color: var(--surface-muted);
}

.badge {
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.72rem;
}

.status-draft { background-color: #64748B; color: #fff; }
.status-sent { background-color: #0369A1; color: #fff; }
.status-approved { background-color: #15803D; color: #fff; }
.status-rejected { background-color: #B91C1C; color: #fff; }
.status-invoiced { background-color: #6D28D9; color: #fff; }
.status-cancelled { background-color: #C2410C; color: #fff; }

.stats-card,
.kpi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.stats-card::after {
    display: none;
}

.stats-card:hover,
.kpi-card:hover {
    border-left-width: 3px;
    transform: none;
}

.kpi-card--neutral { border-left-color: var(--primary); }
.kpi-card--brand { border-left-color: var(--brand); }
.kpi-card--alert { border-left-color: var(--warning); }
.kpi-card--success { border-left-color: var(--success); }

a.kpi-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.kpi-card:hover {
    border-color: var(--border);
    background: var(--surface-muted);
}

.kpi-card .card-body,
.dashboard-page .stats-card .card-body {
    padding: 16px;
}

.kpi-label,
.stats-card .stats-label {
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    margin-bottom: 6px;
}

.kpi-value,
.stats-card .stats-number {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.kpi-card--brand .kpi-value {
    font-size: 1.55rem;
}

.stats-card .stats-icon {
    display: none;
}

.mobile-menu {
    display: none;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.45);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        z-index: 1050;
        transition: left 0.2s ease;
    }

    .sidebar.show {
        left: 0;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }

    .main-content {
        padding: 72px 16px 16px;
        margin-left: 0 !important;
    }

    .card {
        margin-bottom: 16px;
    }

    .table-responsive {
        font-size: 0.875rem;
    }

    .stats-card .stats-number {
        font-size: 1.4rem;
    }

    .sidebar .nav-link {
        padding: 10px 16px;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding: 68px 12px 12px;
    }

    .card-body {
        padding: 16px;
    }
}

.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.spinner-border {
    color: var(--brand);
}

.alert {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.form-control,
.form-select {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 8px 12px;
    min-height: 40px;
    font-size: 0.875rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.15);
}

.pagination {
    justify-content: center;
}

.page-link {
    border-radius: 6px;
    margin: 0 2px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.avatar-sm { width: 40px; height: 40px; font-size: 1rem; font-weight: 600; }
.avatar-md { width: 60px; height: 60px; font-size: 1.5rem; font-weight: 600; }
.avatar-lg { width: 80px; height: 80px; font-size: 2rem; font-weight: 600; }

.chart-wrap {
    position: relative;
    height: 260px;
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.quick-actions .btn {
    justify-content: flex-start;
}

.dashboard-page .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.dashboard-page .card-header h5 {
    margin: 0;
}

.dashboard-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-scroll {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
}

.rep-perf-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.rep-perf-item:last-child {
    border-bottom: 0;
}

.rep-perf-item h6 {
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.empty-panel {
    text-align: center;
    color: var(--text-muted);
    padding: 12px 8px;
    font-size: 0.85rem;
    margin: 0;
}

.table-dashboard {
    margin-bottom: 0;
}

.table-dashboard td,
.table-dashboard th {
    white-space: nowrap;
}

.table-dashboard .cell-clip {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 1200px) {
    .dashboard-side {
        position: sticky;
        top: 16px;
    }

    .dashboard-page .chart-wrap {
        height: 220px;
    }
}

.filter-card .card-body {
    padding: 16px;
}

.filter-card .row.g-3 > [class*="col-"] {
    margin-bottom: 0;
}

.list-card > .card-body {
    padding: 0;
}

.data-table {
    margin-bottom: 0;
    font-size: 0.8125rem;
}

.data-table th,
.data-table td {
    vertical-align: middle;
    padding: 8px 12px;
}

.cell-name {
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.btn-icon {
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.list-pager {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
}

.empty-state {
    text-align: center;
    padding: 48px 16px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}

.form-card {
    max-width: 760px;
}

.hub-card .card-body {
    text-align: left;
}

.hub-card .hub-icon {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-card:hover {
    transform: none !important;
    box-shadow: var(--shadow) !important;
}
