.produits-toolbar {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem; flex-wrap: wrap;
}
.produits-toolbar input,
.produits-toolbar select {
    padding: .5rem .875rem; border: 1.5px solid #e2e8f0;
    border-radius: 8px; font-size: .875rem;
    font-family: 'Inter', sans-serif; background: white;
}
.produits-toolbar input { min-width: 240px; }
.produits-toolbar input:focus,
.produits-toolbar select:focus { outline: none; border-color: #2563eb; }
.produits-toolbar .spacer { flex: 1; }

.stock-indicator {
    display: flex; align-items: center; gap: .5rem;
    font-size: .875rem; font-weight: 600;
}
.stock-num { font-size: 1rem; font-weight: 700; }

/* Modal */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5);
    z-index: 200; display: flex; align-items: center; justify-content: center;
    padding: 1rem;
}
.modal {
    background: white; border-radius: 16px;
    width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.2);
    max-height: 90vh; overflow-y: auto;
    display: flex; flex-direction: column;
}
.modal-sm { max-width: 480px; }
.modal-md { max-width: 680px; }
.modal-lg { max-width: 860px; }
.modal-header {
    padding: 1.25rem 1.5rem; border-bottom: 1px solid #e2e8f0;
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; background: white; z-index: 1;
}
.modal-title { font-size: 1rem; font-weight: 700; color: #0f172a; }
.modal-close {
    background: none; border: none; font-size: 1.25rem;
    cursor: pointer; color: #94a3b8; padding: .25rem;
}
.modal-close:hover { color: #0f172a; }
.modal-body { padding: 1.5rem; flex: 1; }
.modal-footer {
    padding: 1rem 1.5rem; border-top: 1px solid #e2e8f0;
    display: flex; justify-content: flex-end; gap: .75rem;
    position: sticky; bottom: 0; background: white;
}

.actions-menu { display: flex; gap: .5rem; }
.btn-icon {
    background: none; border: 1.5px solid #e2e8f0; border-radius: 8px;
    padding: .375rem .625rem; cursor: pointer; font-size: .875rem;
    transition: all .15s; color: #64748b;
}
.btn-icon:hover { border-color: #2563eb; color: #2563eb; background: #eff6ff; }
.btn-icon.danger:hover { border-color: #ef4444; color: #ef4444; background: #fef2f2; }

.empty-state {
    text-align: center; padding: 4rem 2rem; color: #64748b;
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { font-size: 1rem; font-weight: 600; color: #374151; margin-bottom: .5rem; }

.tabs { display: flex; gap: 0; border-bottom: 2px solid #e2e8f0; margin-bottom: 1.5rem; }
.tab {
    padding: .625rem 1.25rem; font-size: .875rem; font-weight: 500;
    color: #64748b; cursor: pointer; border-bottom: 2px solid transparent;
    margin-bottom: -2px; background: none; border-top: none;
    border-left: none; border-right: none; font-family: 'Inter', sans-serif;
}
.tab.active { color: #2563eb; border-bottom-color: #2563eb; }